Skip to content

Commit 5ad6d67

Browse files
committed
Merge branch 'androidrouting'
2 parents 52294cd + 06e95f6 commit 5ad6d67

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

backend/update.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const updateFileURL = "https://shiftcrypto.ch/updates/desktop.json"
2727

2828
var (
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.

frontends/android/BitBoxApp/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 {

frontends/qt/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ linux:
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/

frontends/qt/resources/MacOS/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
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>

frontends/qt/setup.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

frontends/web/src/app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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))) {

0 commit comments

Comments
 (0)