Skip to content

Commit

Permalink
update filenames
Browse files Browse the repository at this point in the history
  • Loading branch information
jayson committed Jun 7, 2020
1 parent 45cc71d commit c6aebb3
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 19 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/electron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,22 +62,22 @@ jobs:
if: contains(matrix.os, 'ubuntu')
with:
name: ${{ matrix.os }}
path: release/Quiver_Fullnode-${{ env.VERSION }}.AppImage
path: release/Quiver Fullnode-${{ env.VERSION }}.AppImage
- name: Upload artifacts-dmg
uses: actions/upload-artifact@v2
if: contains(matrix.os, 'macos')
with:
name: ${{ matrix.os }}
path: release/Quiver_Fullnode-${{ env.VERSION }}.dmg
path: release/Quiver Fullnode-${{ env.VERSION }}.dmg
- name: Upload artifacts-zip
uses: actions/upload-artifact@v2
if: contains(matrix.os, 'windows')
with:
name: ${{ matrix.os }}
path: release/Quiver_Fullnode-${{ env.VERSION }}-win.zip
path: release/Quiver Fullnode-${{ env.VERSION }}-win.zip
- name: Upload artifacts-msi
uses: actions/upload-artifact@v2
if: contains(matrix.os, 'windows')
with:
name: ${{ matrix.os }}
path: release/Quiver_Fullnode ${{ env.VERSION }}.msi
path: release/Quiver Fullnode ${{ env.VERSION }}.msi
2 changes: 1 addition & 1 deletion app/companion.js
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ export default class CompanionAppListener {
maxzspendable,
tokenName,
zecprice,
serverversion: '0.9.11'
serverversion: '1.0.1'
};

return JSON.stringify(resp);
Expand Down
2 changes: 1 addition & 1 deletion app/components/Sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ class Sidebar extends PureComponent<Props, State> {
openErrorModal(
'Quiver Fullnode',
<div className={cstyles.verticalflex}>
<div className={cstyles.margintoplarge}>Quiver Fullnode v0.9.11</div>
<div className={cstyles.margintoplarge}>Quiver Fullnode v1.0.1</div>
<div className={cstyles.margintoplarge}>Built with Electron.</div>
<div className={cstyles.margintoplarge}>Copyright (c) 2018-2020, Aditya Kulkarni.</div>
<div className={cstyles.margintoplarge}>Copyright (c) 2020, Arrow.</div>
Expand Down
4 changes: 2 additions & 2 deletions app/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "quiver",
"productName": "Quiver Fullnode",
"version": "0.9.11",
"version": "1.0.1",
"description": "Quiver Fullnode",
"main": "./main.prod.js",
"author": {
"name": "Aditya Kulkarni",
"email": "[email protected]",
"url": "https://github.com/adityapk00/zecwallet-electron"
"url": "https://github.com/arrowchain/quiver"
},
"scripts": {
"electron-rebuild": "node -r ../internals/scripts/BabelRegister.js ../internals/scripts/ElectronRebuild.js",
Expand Down
2 changes: 1 addition & 1 deletion bin/printversion.ps1
Original file line number Diff line number Diff line change
@@ -1 +1 @@
echo "::set-env name=VERSION::0.9.11"
echo "::set-env name=VERSION::1.0.1"
2 changes: 1 addition & 1 deletion bin/printversion.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
VERSION="0.9.11"
VERSION="1.0.1"
echo "::set-env name=VERSION::$VERSION"
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@
]
},
"build": {
"productName": "Zecwallet Fullnode",
"appId": "co.zecwallet.fullnode",
"productName": "Quiver Fullnode",
"appId": "co.quiver.fullnode",
"afterAllArtifactBuild": "./afterSignHook.js",
"files": [
"dist/",
Expand Down Expand Up @@ -121,7 +121,7 @@
"libxtst6",
"libnss3"
],
"artifactName": "Zecwallet_Fullnode_${version}_${arch}.deb"
"artifactName": "Quiver_Fullnode_${version}_${arch}.deb"
},
"linux": {
"category": "Development",
Expand All @@ -140,15 +140,15 @@
"AppImage"
],
"desktop": {
"Name": "ZecWallet",
"Comment": "Full node and wallet for Zcash",
"Name": "Quiver",
"Comment": "Full node and wallet for Arrow",
"GenericName": "Wallet",
"Type": "Application",
"StartupNotify": true,
"StartupWMClass": "zecwallet",
"StartupWMClass": "quiver",
"Categories": "Utility;",
"MimeType": "x-scheme-handler/zcash;",
"Keywords": "zecwallet;"
"MimeType": "x-scheme-handler/arrow;",
"Keywords": "arrow;"
}
},
"directories": {
Expand All @@ -158,7 +158,7 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/adityapk00/zecwallet-electron.git"
"url": "git+https://github.com/arrowchain/quiver.git"
},
"author": {
"name": "Aditya Kulkarni",
Expand Down

0 comments on commit c6aebb3

Please sign in to comment.