Skip to content

Commit 0a252b2

Browse files
committed
update for v1 release
1 parent c2e9c7e commit 0a252b2

9 files changed

+191
-46
lines changed

src/assets/images/bw-logo.png

10.9 KB
Loading

src/assets/images/decrediton-logo.png

1.42 KB
Loading

src/assets/images/get-started2.png

-32.9 KB
Binary file not shown.

src/assets/images/get-started3.png

22.9 KB
Loading

src/assets/scss/downloads.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
display: flex;
1919
flex-direction: row;
2020
flex-wrap: wrap;
21-
align-items: center;
21+
align-items: flex-start;
2222
justify-content: center;
2323

2424
.download {
@@ -51,7 +51,7 @@
5151
}
5252
a.btn {
5353
text-decoration: none;
54-
margin: 30px 60px 18px;
54+
margin: 1rem 2rem;
5555
display: flex;
5656
align-items: center;
5757
justify-content: center;

src/assets/scss/main.scss

+16
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,20 @@ html {
3333
.btn-primary:hover {
3434
background-color: $light-blue !important;
3535
border-color: $light-blue !important;
36+
}
37+
38+
hr {
39+
margin: 2rem 0;
40+
border-top: 2px solid #0003;
41+
}
42+
43+
#decreditonLogo {
44+
border-radius: 8px;
45+
}
46+
47+
#decreditonLogoText {
48+
font-size: 65px;
49+
margin-left: 1rem;
50+
line-height: 0.8;
51+
// font-weight: bold;
3652
}

src/config.toml

+11-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,17 @@ baseurl = "https://dex.decred.org/"
77
images = ["/og-card.png"]
88
description = "DCRDEX is an open source, peer-to-peer cryptocurrency exchange built by the Decred Project."
99

10-
# Download URLs
10+
# Bison Wallet URLs
11+
win_bisonw_installer_url = "https://github.com/decred/dcrdex/releases/download/v1.0.0/bisonw-windows-amd64-v1.0.0.msi"
12+
win_bisonw_binary_url = "https://github.com/decred/dcrdex/releases/download/v1.0.0/bisonw-tray-windows-amd64-v1.0.0.zip"
13+
mac_bisonw_installer_url = "https://github.com/decred/dcrdex/releases/download/v1.0.0/bisonw-darwin-amd64-v1.0.0.dmg"
14+
mac_bisonw_binary_url = "https://github.com/decred/dcrdex/releases/download/v1.0.0/bisonw-darwin-amd64-v1.0.0.tar.gz"
15+
mac_bisonw_binary_arm_url = "https://github.com/decred/dcrdex/releases/download/v1.0.0/bisonw-darwin-arm64-v1.0.0.tar.gz"
16+
lin_bisonw_binary_url = "https://github.com/decred/dcrdex/releases/download/v1.0.0/bisonw-linux-amd64-v1.0.0.tar.gz"
17+
lin_bisonw_deb_url = "https://github.com/decred/dcrdex/releases/download/v1.0.0/bisonw-debian-amd64-v1.0.0.deb"
18+
lin_bisonw_arm_url = "https://github.com/decred/dcrdex/releases/download/v1.0.0/bisonw-linux-arm64-v1.0.0.tar.gz"
19+
20+
# Decrediton URLs
1121
win_decrediton_url = "https://github.com/decred/decred-binaries/releases/download/v1.8.1/decrediton-v1.8.1.exe"
1222
mac_decrediton_url = "https://github.com/decred/decred-binaries/releases/download/v1.8.1/decrediton-amd64-v1.8.1.dmg"
1323
m1_decrediton_url = "https://github.com/decred/decred-binaries/releases/download/v1.8.1/decrediton-arm64-v1.8.1.dmg"

src/layouts/partials/downloads.html

+108-11
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,108 @@
11
<section class="download-section" id="downloads">
2-
<div class="container">
2+
<div class="my-5">
33

4-
<h1>DCRDEX is available in Decrediton or as a standalone application</h1>
5-
<h2>v0.6 is now released!</h2>
4+
{{ $bwlogo := resources.Get "/images/bw-logo.png" }}
5+
<img src="{{ $bwlogo.Permalink }}" class="mt-4">
6+
<h4 class="mt-4">Bison Wallet is the official DCRDEX-compatible multi-wallet</h4>
7+
8+
<div class="downloads-container">
9+
10+
<div class="download">
11+
{{ $winblue := resources.Get "/images/win-blue.svg" }}
12+
<div>
13+
<img src="{{ $winblue.Permalink }}"/>
14+
<span>Windows&nbsp;x64</span>
15+
</div>
16+
17+
<div class="btn-bg">
18+
<a class="btn btn-primary" href="{{ $.Site.Params.win_bisonw_installer_url }}" rel="noopener noreferrer">
19+
Installer
20+
</a>
21+
<a class="btn btn-primary" href="{{ $.Site.Params.win_bisonw_binary_url }}" rel="noopener noreferrer">
22+
Binary (EXE)
23+
</a>
24+
<span>Sorry - no 32-bit</span>
25+
</div>
26+
</div>
27+
28+
<div class="download">
29+
30+
{{ $macblue := resources.Get "/images/mac-blue.svg" }}
31+
<div>
32+
<img src="{{ $macblue.Permalink }}"/>
33+
<span>macOS</span>
34+
</div>
35+
36+
<div class="btn-bg">
37+
<a class="btn btn-primary" href="{{ $.Site.Params.mac_bisonw_installer_url }}" rel="noopener noreferrer">
38+
Installer
39+
</a>
40+
<a class="btn btn-primary" href="{{ $.Site.Params.mac_bisonw_binary_url }}" rel="noopener noreferrer">
41+
Binary
42+
</a>
43+
<a href="{{ $.Site.Params.mac_bisonw_binary_arm_url }}" rel="noopener noreferrer">
44+
Need ARM?
45+
</a>
46+
</div>
47+
</div>
48+
49+
<div class="download">
50+
51+
{{ $linuxblue := resources.Get "/images/linux-blue.svg" }}
52+
<div>
53+
<img src="{{ $linuxblue.Permalink }}"/>
54+
<span>Linux&nbsp;x64</span>
55+
</div>
56+
57+
<div class="btn-bg">
58+
<a class="btn btn-primary" href="{{ $.Site.Params.lin_bisonw_binary_url }}" rel="noopener noreferrer">
59+
Binary
60+
</a>
61+
<a class="btn btn-primary" href="{{ $.Site.Params.lin_bisonw_deb_url }}" rel="noopener noreferrer">
62+
Debian Installer
63+
</a>
64+
<a href="{{ $.Site.Params.lin_bisonw_arm_url }}" rel="noopener noreferrer">
65+
Need ARM?
66+
</a>
67+
</div>
68+
</div>
69+
70+
<!-- Hide Umbrel until updated -->
71+
<div class="download d-none">
72+
73+
{{ $umbrelblue := resources.Get "/images/umbrel-blue.svg" }}
74+
<div>
75+
<img src="{{ $umbrelblue.Permalink }}"/>
76+
<span>Umbrel</span>
77+
</div>
78+
79+
<div class="btn-bg">
80+
<a class="btn btn-primary" href="{{ $.Site.Params.umbrel_community_app_store_url }}" rel="noopener noreferrer">
81+
App Store
82+
</a>
83+
<a href="{{ $.Site.Params.umbrel_community_app_store_url }}" rel="noopener noreferrer">
84+
Decred Community App Store
85+
</a>
86+
</div>
87+
</div>
88+
89+
</div>
90+
</div>
91+
92+
<!-- Hide Decrediton until updated -->
93+
<div class="d-none"> <!-- Not indenting, because I will delete this container once we have links -->
94+
95+
<hr>
96+
97+
<div class="my-5">
98+
99+
{{ $bwlogo := resources.Get "/images/decrediton-logo.png" }}
100+
<div class="d-inline-flex align-items-end mx-auto">
101+
<img id="decreditonLogo" src="{{ $bwlogo.Permalink }}" class="mt-4">
102+
<span id="decreditonLogoText"> Decrediton</span>
103+
</div>
104+
105+
<h4 class="mt-4">Use DCRDEX in Decrediton, Decred's official desktop wallet.</h4>
6106

7107
<div class="downloads-container">
8108

@@ -20,7 +120,7 @@ <h2>v0.6 is now released!</h2>
20120
<span>Sorry - no 32-bit</span>
21121
</div>
22122
</div>
23-
123+
24124
<div class="download">
25125

26126
{{ $macblue := resources.Get "/images/mac-blue.svg" }}
@@ -76,16 +176,13 @@ <h2>v0.6 is now released!</h2>
76176
</div>
77177

78178
</div>
179+
</div>
180+
</div>
181+
182+
<hr>
79183

80-
<div class="altdl">
81-
<a href="{{ $.Site.Params.dexreleases_url }}" rel="noopener noreferrer">
82-
Click here to download the standalone DCRDEX application instead&nbsp;&nbsp;↓
83-
</a>
84-
</div>
85-
86184
<p class="verify">
87185
Follow <a href="https://docs.decred.org/advanced/verifying-binaries/" rel="noopener noreferrer">these steps</a>
88186
to verify that the files you download are legitimate and have not been modified.
89187
</p>
90-
91188
</section>

src/layouts/partials/get-started.html

+54-32
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<div class="container">
44
<div class="row">
55
<div class="col-12 col-lg-6 text-center">
6-
{{ $getstarted := resources.Get "/images/get-started2.png" }}
6+
{{ $getstarted := resources.Get "/images/get-started3.png" }}
77
<img class="getstartedimg" src="{{ $getstarted.Permalink }}" />
88
</div>
99
<div class="col-12 col-lg-6 d-flex flex-column justify-content-center align-items-center">
@@ -24,13 +24,17 @@ <h1>How to Get Started</h1>
2424
</label>
2525
<div class="accordion-body">
2626
<p>
27-
For the standalone DCRDEX application, <code>dexc</code>, the
28-
latest release can always be found on
27+
Use one of the options above to download Bison Wallet.
28+
The latest release can always be found on
2929
<a href="https://github.com/decred/dcrdex/releases/latest" target="_blank" rel="noopener noreferrer">
3030
GitHub</a>.
31-
Download and extract the archive for your system, and
32-
<span class="bold">from a command prompt</span> in the extracted folder,
33-
run <code>dexc</code>. Open the displayed URL in the web browser
31+
</p>
32+
<p>
33+
<span class="bold">For the installed version</span>,
34+
open Bison Wallet using your system's application menu.
35+
</p>
36+
<p>
37+
<span class="bold">If you're running a binary from a terminal</span>, open the displayed URL in the web browser
3438
of your choice.
3539
</p>
3640
<p>
@@ -54,12 +58,19 @@ <h1>How to Get Started</h1>
5458
</div>
5559
</label>
5660
<div class="accordion-body">
57-
With DCRDEX opened in a browser or Decrediton, set a new "application
58-
password." Do not forget it!<br><br>
59-
<span class="bold">Tip:</span> Before moving on, retrieve the application
60-
"seed" from the settings page and store it in a safe place. This is used
61-
to restore wallets and accounts created by the DEX application. Click on
62-
the DCRDEX logo to resume setup.
61+
<p>
62+
Start Bison Wallet or Decrediton.
63+
If using Decrediton, navigate to the DCRDEX interface.
64+
</p>
65+
<p>
66+
Set a new "application password."
67+
Do not forget it!
68+
</p>
69+
<p>
70+
If you already have a seed and are restoring your
71+
wallet, enter that seed now. Otherwise, a new seed
72+
will be generated for you.
73+
</p>
6374
</div>
6475

6576
<input type="radio" name="get-started-accordion" id="get-started-accordion-3">
@@ -68,18 +79,19 @@ <h1>How to Get Started</h1>
6879
<div class="plus-minus">
6980
<div class="hznt"></div><div class="vrt"></div>
7081
</div>
71-
<div>3. Configure Wallets</div>
82+
<div>3. Configure Assets and Backup Seed</div>
7283
</div>
7384
</label>
7485
<div class="accordion-body">
75-
<p>Choose a server and you will be guided through setup of your
76-
wallets.</p>
77-
<p>There are native (built-in to dexc) wallets for both Decred
78-
and Bitcoin. You may also use your own Electrum wallet for Bitcoin
79-
and Litecoin. For DOGE, ZEC, and BCH, use their full node wallets
80-
(e.g. dogecoind, zcashd, etc.).</p>
81-
<p>For the native wallets, just click "Create!".</p>
82-
<p>You can access the Wallets page at any time.</p>
86+
The quick configuration dialog will offer you the
87+
option to intitialize built-in wallets and connect
88+
to known servers.
89+
90+
If you aren't restoring from seed, you will be prompted
91+
to back up your newly generated application seed.
92+
Make sure to copy the seed carefully and put it somewhere safe.
93+
This seed is used to restore native wallets.
94+
Anyone with this seed has access to your funds.
8395
</div>
8496

8597
<input type="radio" name="get-started-accordion" id="get-started-accordion-4">
@@ -92,14 +104,15 @@ <h1>How to Get Started</h1>
92104
</div>
93105
</label>
94106
<div class="accordion-body">
95-
Once your wallets are synchronized, you will be prompted
96-
to submit a one-time fee before placing orders. This is a small amount
97-
just to discourage disruptive behavior.<br><br>
98-
The application will inform you how much is required in your new wallet
99-
to register. But deposit as much as you like to your wallet
100-
since only the required amount will be spent, and the remaining will be
101-
ready for trading. Deposits must confirm before proceeding. Then click
102-
"Register!" to proceed.
107+
Navigate to the settings view to connect to a DCRDEX access access trading markets.
108+
You can connect to a server and view market activity without cost, but if
109+
you want to trade, you'll need to post a bond
110+
<p>
111+
</p>
112+
A bond is some amount of funds that will remain locked up
113+
on-chain for a while before you can retrieve them.
114+
This is an anti-spam measure to keep trades completing
115+
with fewer refunds.
103116
</div>
104117

105118
<input type="radio" name="get-started-accordion" id="get-started-accordion-5">
@@ -108,12 +121,21 @@ <h1>How to Get Started</h1>
108121
<div class="plus-minus">
109122
<div class="hznt"></div><div class="vrt"></div>
110123
</div>
111-
<div>5. Placing Orders</div>
124+
<div>5. Trade</div>
112125
</div>
113126
</label>
114127
<div class="accordion-body">
115-
To place an order, fill out the price, the lot quantity, and submit it.
116-
Stay online and keep everything running until the trade settles.
128+
Once you are bonded and you have the necessary
129+
wallet configured, you'll see an order form in the
130+
markets view.
131+
132+
Set your price, quantity, and whether you are buying
133+
or selling, and then place an order. Orders will take
134+
between 0 and 15 seconds to start matching.
135+
Once you get matches, a settlement phase will begin
136+
which, depending on the assets and network conditions,
137+
may last only a few minutes, or last an hour or more in the
138+
worst case. The price you matched will never change.
117139
</div>
118140

119141
<div style="flex: 1;"></div>

0 commit comments

Comments
 (0)