Skip to content

Commit

Permalink
fix 1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
hr-ru committed Oct 2, 2022
1 parent 5b863f7 commit 3d44b7f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ mkrelease:
.ONESHELL:
sign:
cd platforms/android/app/build/outputs/apk/release/ && \
rm -f app-release-unsigned-aligned.apk && \
/Users/hansr/Library/Android//sdk/build-tools/30.0.3/zipalign -v -p 4 app-release-unsigned.apk app-release-unsigned-aligned.apk && \
/Users/hansr/Library/Android//sdk/build-tools/30.0.3/apksigner sign --ks ~/src/rdzwx-go/my-release-key.jks --out app-release.apk app-release-unsigned-aligned.apk

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"cordova-electron": "^3.0.0",
"cordova-plugin-androidx-adapter": "^1.1.3",
"cordova-plugin-inappbrowser": "^5.0.0",
"rdzwx-plugin": "file:../rdzwx-plugin"
"rdzwx-plugin": "github:dl9rdz/rdzwx-lugin"
},
"cordova": {
"plugins": {
Expand Down
2 changes: 1 addition & 1 deletion www/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function onDeviceReady() {
.then(response => response.json())
.then(data => {
console.log('Success:', data);
if(data.version > "1.0.6") {
if(data.version > "1.0.7") {
if(window.confirm("New version "+ data.version + " available! Download?")) {
console.log("opening "+data.url);
cordova.InAppBrowser.open(data.url, "_system");
Expand Down

0 comments on commit 3d44b7f

Please sign in to comment.