Skip to content

Commit 17d679b

Browse files
committed
more travis testing
1 parent 201c4f4 commit 17d679b

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ before_script:
9898
script:
9999
- if [ "$TRAVIS_OS_NAME" == "windows" ]; then
100100
echo "Windows";
101-
cordova build electron --release;
101+
cordova build electron --debug;
102102
find platforms;
103103
mv platforms/electron/build/*.exe rdzSonde-setup-${TRAVIS_TAG}.exe;
104104
ls *.exe;

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
"version": "1.0.6",
33
"url": "https://github.com/dl9rdz/rdzwx-go/releases/tag/v1.0.6",
44
"apkurl": "https://github.com/dl9rdz/rdzwx-go/releases/download/v1.0.6/rdzSonde-v1.0.6.apk"
5-
}
5+
}

www/js/leaflet.contextmenu.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,13 @@
1111
if (typeof define === 'function' && define.amd) {
1212
// AMD
1313
define(['leaflet'], factory);
14+
/*
15+
// not working well with Cordova/electron
1416
} else if (typeof module === 'object' && typeof module.exports === 'object') {
1517
// Node/CommonJS
1618
L = require('leaflet');
1719
module.exports = factory(L);
20+
*/
1821
} else {
1922
// Browser globals
2023
if (typeof window.L === 'undefined') {

0 commit comments

Comments
 (0)