more travis testing

upa v1.0.6
Hansi, dl9rdz 2021-06-16 22:52:12 +02:00
rodzic 201c4f412a
commit 17d679bbd8
3 zmienionych plików z 5 dodań i 2 usunięć

Wyświetl plik

@ -98,7 +98,7 @@ before_script:
script:
- if [ "$TRAVIS_OS_NAME" == "windows" ]; then
echo "Windows";
cordova build electron --release;
cordova build electron --debug;
find platforms;
mv platforms/electron/build/*.exe rdzSonde-setup-${TRAVIS_TAG}.exe;
ls *.exe;

Wyświetl plik

@ -2,4 +2,4 @@
"version": "1.0.6",
"url": "https://github.com/dl9rdz/rdzwx-go/releases/tag/v1.0.6",
"apkurl": "https://github.com/dl9rdz/rdzwx-go/releases/download/v1.0.6/rdzSonde-v1.0.6.apk"
}
}

Wyświetl plik

@ -11,10 +11,13 @@
if (typeof define === 'function' && define.amd) {
// AMD
define(['leaflet'], factory);
/*
// not working well with Cordova/electron
} else if (typeof module === 'object' && typeof module.exports === 'object') {
// Node/CommonJS
L = require('leaflet');
module.exports = factory(L);
*/
} else {
// Browser globals
if (typeof window.L === 'undefined') {