version boost, travis test

upa
Hansi, dl9rdz 2021-05-29 18:07:48 +02:00
rodzic 7531b4be0a
commit 17a4e44203
5 zmienionych plików z 34 dodań i 12 usunięć

Wyświetl plik

@ -1,7 +1,7 @@
<?xml version='1.0' encoding='utf-8'?>
<widget id="de.dl9rdz" version="1.0.5" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"
<widget id="de.dl9rdz" version="1.0.6" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"
xmlns:android="schemas.android.com/apk/res/android">
<name>rdzSondyGO</name>
<name>rdzSonde</name>
<description>
A sample Apache Cordova application that uses rdzwx-plugin.
</description>
@ -29,7 +29,10 @@
<application android:usesCleartextTraffic="true" />
</edit-config>
</platform>
<icon src="res/icon.png"/>
<icon src="res/icon512.png"/>
<platform name="electron">
<preference name="ElectronSettingsFilePath" value="res/electron/settings.json" />
</platform>
<preference name="GradlePluginKotlinEnabled" value="true" />
<preference name="GradlePluginKotlinCodeStyle" value="official" />

Wyświetl plik

@ -1,7 +1,7 @@
{
"name": "de.dl9rdz",
"displayName": "rdzwx-go",
"version": "1.0.5",
"version": "1.0.6",
"description": "A sample Apache Cordova application that uses rdzwx-plugin.",
"main": "index.js",
"scripts": {
@ -15,12 +15,13 @@
"devDependencies": {
"cordova-android": "^9.0.0",
"cordova-browser": "^6.0.0",
"cordova-electron": "^2.0.0",
"cordova-plugin-badge": "^0.8.8",
"cordova-plugin-device": "^2.0.3",
"cordova-plugin-inappbrowser": "^4.1.0",
"cordova-plugin-local-notification": "^0.9.0-beta.2",
"cordova-plugin-whitelist": "^1.3.4",
"de-dl9rdz-rdzwx": "https://github.com/dl9rdz/rdzwx-plugin.git"
"rdzwx-plugin": "file:../../AndroidStudioProjects/rdzwx-plugin"
},
"cordova": {
"plugins": {
@ -31,7 +32,12 @@
},
"platforms": [
"android",
"browser"
"browser",
"electron"
]
},
"dependencies": {
"net": "^1.0.2",
"xmlhttprequest": "^1.8.0"
}
}
}

Wyświetl plik

@ -1,5 +1,5 @@
{
"version": "1.0.5",
"url": "https://github.com/dl9rdz/rdzwx-go/releases/tag/v1.0.4",
"apkurl": "https://github.com/dl9rdz/rdzwx-go/releases/download/v1.0.4/rdzSondyGO-v1.0.4.apk"
"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

@ -48,13 +48,13 @@
<script src="js/easy-button.js"></script>
<script src="js/L.Control.MousePosition.js"></script>
<title>rdzSondyGO V1.0.5</title>
<title>rdzSonde v1.0.6</title>
</head>
<body>
<div id="all">
<div id="toolbar">
<a id="toolbarclose" class="leaflet-popup-close-button" style="cursor: pointer; float: right;">X</a>
<h2>rdzSondyGO v1.0.5</h2>
<h2>rdzSonde v1.0.6</h2>
<p>Copyright &copy; 2021 Hansi Reiser, dl9rdz</p>
<p>see <a href="https://github.com/dl9rdz/rdzwx-go">https://github.com/dl9rdz/rdzwx-go</a> for details</p>
<p>Apache License Version 2.0</p>

Wyświetl plik

@ -831,3 +831,16 @@ function createButton(label, container) {
btn.innerHTML = label;
return btn;
}
// radiosondy.info
function reqauth() {
var xhr = new XMLHttpRequest();
xhr.open("POST", "https://radiosondy.info/user/login.php?", true);
xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
xhr.onreadystatechange = function() {
if(http.readyState == 4 && http.satus == 200) {
alert(http.resonseText);
}
}
xhr.send('submitted=1&username=DL9RDZ&password=ct1jzmhr&Submit=Login');
}