Skip to content

Commit

Permalink
Increment version to 0.9.1 to test auto-update
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrossy committed Mar 4, 2021
1 parent 217d135 commit 8c4a9f7
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ See the [FAQ](FAQ.md) for more details about common questions.

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

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

Advanced users can verify the source integrity by comparing the hashes in their page source to these values.
Expand Down
2 changes: 1 addition & 1 deletion package-electron.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "celo-web-wallet",
"version": "0.9.0",
"version": "0.9.1",
"description": "A lightweight web and desktop wallet for the Celo network",
"main": "main.js",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "celo-web-wallet",
"version": "0.9.0",
"version": "0.9.1",
"description": "A lightweight web and desktop wallet for the Celo network",
"keywords": [
"Celo",
Expand Down
21 changes: 11 additions & 10 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,15 @@ interface Config {
defaultAccount?: string // strictly for dev use
}

const desktopUrls = {
windows:
'https://github.com/celo-tools/celo-web-wallet/releases/download/v0.9.0/Celo-Wallet-0.9.0-win.exe',
mac:
'https://github.com/celo-tools/celo-web-wallet/releases/download/v0.9.0/Celo-Wallet-0.9.0-mac.dmg',
linux:
'https://github.com/celo-tools/celo-web-wallet/releases/download/v0.9.0/Celo-Wallet-0.9.0-linux-x86_64.AppImage',
}

// TODO find a nice way to switch btwn configs at build/run time
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const configMainnet: Config = {
Expand All @@ -51,11 +60,7 @@ const configMainnet: Config = {
gatewayFeeRecipient: '0x97a5fF70483F9320aFA72e04AbA148Aa1c26946C',
blockscoutUrl: 'https://explorer.celo.org',
discordUrl: 'https://discord.com/channels/600834479145353243/812471799585439794',
desktopUrls: {
windows: 'TODO',
mac: 'https://www.dropbox.com/s/wl563lcl24mop3u/Celo%20Wallet-0.9.0-mac.dmg?dl=1',
linux: 'TODO',
},
desktopUrls,
chainId: 42220,
contractAddresses: {
[CeloContract.Accounts]: '0x7d21685C17607338b313a7174bAb6620baD0aaB7',
Expand Down Expand Up @@ -84,11 +89,7 @@ const configAlfajores: Config = {
jsonRpcUrlPrimary: 'https://alfajores-forno.celo-testnet.org',
blockscoutUrl: 'https://alfajores-blockscout.celo-testnet.org',
discordUrl: 'https://discord.com/channels/600834479145353243/812471799585439794',
desktopUrls: {
windows: 'TODO',
mac: 'TODO',
linux: 'TODO',
},
desktopUrls,
chainId: 44787,
contractAddresses: {
[CeloContract.Accounts]: '0xed7f51A34B4e71fbE69B3091FcF879cD14bD73A9',
Expand Down

0 comments on commit 8c4a9f7

Please sign in to comment.