Skip to content

Commit 8c4a9f7

Browse files
committed
Increment version to 0.9.1 to test auto-update
1 parent 217d135 commit 8c4a9f7

4 files changed

Lines changed: 14 additions & 13 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ See the [FAQ](FAQ.md) for more details about common questions.
1414

1515
This wallet uses [Subresource Integrity](https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity). Current bundle hashes:
1616

17-
* Main bundle: `bundle.js -> sha256-I4698ivrNQ6zcsW4WgC3fqUvNmAGEGIo9sUWSVzw4pw=`
17+
* Main bundle: `bundle.js -> sha256-5RvnuFpT0ZEmdZ/ycnyat3En2noHppAkd/abSfy96QQ=`
1818
* Optional Ledger bundle: `bundle-ledger.js -> sha256-Ue4vU1iTjNOEPSX51d7ofexxwCEBiiJmQUEX6Ewd4AQ=`
1919

2020
Advanced users can verify the source integrity by comparing the hashes in their page source to these values.

package-electron.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "celo-web-wallet",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"description": "A lightweight web and desktop wallet for the Celo network",
55
"main": "main.js",
66
"keywords": [

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "celo-web-wallet",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"description": "A lightweight web and desktop wallet for the Celo network",
55
"keywords": [
66
"Celo",

src/config.ts

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,15 @@ interface Config {
4040
defaultAccount?: string // strictly for dev use
4141
}
4242

43+
const desktopUrls = {
44+
windows:
45+
'https://github.com/celo-tools/celo-web-wallet/releases/download/v0.9.0/Celo-Wallet-0.9.0-win.exe',
46+
mac:
47+
'https://github.com/celo-tools/celo-web-wallet/releases/download/v0.9.0/Celo-Wallet-0.9.0-mac.dmg',
48+
linux:
49+
'https://github.com/celo-tools/celo-web-wallet/releases/download/v0.9.0/Celo-Wallet-0.9.0-linux-x86_64.AppImage',
50+
}
51+
4352
// TODO find a nice way to switch btwn configs at build/run time
4453
// eslint-disable-next-line @typescript-eslint/no-unused-vars
4554
const configMainnet: Config = {
@@ -51,11 +60,7 @@ const configMainnet: Config = {
5160
gatewayFeeRecipient: '0x97a5fF70483F9320aFA72e04AbA148Aa1c26946C',
5261
blockscoutUrl: 'https://explorer.celo.org',
5362
discordUrl: 'https://discord.com/channels/600834479145353243/812471799585439794',
54-
desktopUrls: {
55-
windows: 'TODO',
56-
mac: 'https://www.dropbox.com/s/wl563lcl24mop3u/Celo%20Wallet-0.9.0-mac.dmg?dl=1',
57-
linux: 'TODO',
58-
},
63+
desktopUrls,
5964
chainId: 42220,
6065
contractAddresses: {
6166
[CeloContract.Accounts]: '0x7d21685C17607338b313a7174bAb6620baD0aaB7',
@@ -84,11 +89,7 @@ const configAlfajores: Config = {
8489
jsonRpcUrlPrimary: 'https://alfajores-forno.celo-testnet.org',
8590
blockscoutUrl: 'https://alfajores-blockscout.celo-testnet.org',
8691
discordUrl: 'https://discord.com/channels/600834479145353243/812471799585439794',
87-
desktopUrls: {
88-
windows: 'TODO',
89-
mac: 'TODO',
90-
linux: 'TODO',
91-
},
92+
desktopUrls,
9293
chainId: 44787,
9394
contractAddresses: {
9495
[CeloContract.Accounts]: '0xed7f51A34B4e71fbE69B3091FcF879cD14bD73A9',

0 commit comments

Comments
 (0)