File tree Expand file tree Collapse file tree 6 files changed +9
-9
lines changed Expand file tree Collapse file tree 6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ const updateFileURL = "https://shiftcrypto.ch/updates/desktop.json"
2727
2828var (
2929 // Version of the backend as displayed to the user.
30- Version = semver .NewSemVer (4 , 17 , 0 )
30+ Version = semver .NewSemVer (4 , 17 , 1 )
3131)
3232
3333// UpdateFile is retrieved from the server.
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ android {
77 applicationId " ch.shiftcrypto.bitboxapp"
88 minSdkVersion 21
99 targetSdkVersion 29
10- versionCode 6
11- versionName " android-4.17.0 "
10+ versionCode 7
11+ versionName " android-4.17.1 "
1212 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
1313 }
1414 buildTypes {
Original file line number Diff line number Diff line change 3535 cp resources/linux/usr/share/icons/hicolor/128x128/apps/bitbox.png build/linux-tmp
3636 mkdir build/tmp-deb/opt/
3737 cp -aR build/linux-tmp build/tmp-deb/opt/bitbox
38- cd build/linux && fpm --after-install ../../resources/deb-afterinstall.sh -s dir -t deb -n bitbox -v 4.17.0 -C ../tmp-deb/
39- cd build/linux && fpm --after-install ../../resources/deb-afterinstall.sh -s dir -t rpm -n bitbox -v 4.17.0 -C ../tmp-deb/
38+ cd build/linux && fpm --after-install ../../resources/deb-afterinstall.sh -s dir -t deb -n bitbox -v 4.17.1 -C ../tmp-deb/
39+ cd build/linux && fpm --after-install ../../resources/deb-afterinstall.sh -s dir -t rpm -n bitbox -v 4.17.1 -C ../tmp-deb/
4040 # create AppImage
4141 cd build/linux-tmp && /opt/linuxdeployqt-6-x86_64.AppImage BitBox -appimage
4242 mv build/linux-tmp/BitBoxApp-* -x86_64.AppImage build/linux/
Original file line number Diff line number Diff line change 2121 <string >APPL </string >
2222
2323 <key >CFBundleVersion </key >
24- <string >4.17.0 </string >
24+ <string >4.17.1 </string >
2525
2626 <key >CFBundleShortVersionString </key >
27- <string >4.17.0 </string >
27+ <string >4.17.1 </string >
2828
2929 <key >CFBundleSignature </key >
3030 <string >???? </string >
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ SetCompressor /SOLID lzma
55
66# General Symbol Definitions
77!define REGKEY " SOFTWARE\$(^Name)"
8- !define VERSION 4.17 .0 .0
8+ !define VERSION 4.17 .1 .0
99!define COMPANY " Shift Cryptosecurity AG"
1010!define URL https://github.com/digitalbitbox/bitbox-wallet-app/releases/
1111!define BINDIR " build\windows"
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ class App extends Component<Props, State> {
136136
137137 private maybeRoute = ( ) => {
138138 const currentURL = getCurrentUrl ( ) ;
139- const isIndex = currentURL === '/' || currentURL === '/index.html' ;
139+ const isIndex = currentURL === '/' || currentURL === '/index.html' || currentURL === '/android_asset/web/index.html' ;
140140 const inAccounts = currentURL . startsWith ( '/account/' ) ;
141141 const accounts = this . props . accounts ;
142142 if ( inAccounts && ! accounts . some ( account => currentURL . startsWith ( '/account/' + account . code ) ) ) {
You can’t perform that action at this time.
0 commit comments