Update to v0.9.0

This commit is contained in:
jomjol
2020-09-04 18:59:00 +02:00
parent 78e3256493
commit d51eaa1428
48 changed files with 10625 additions and 633 deletions

15
sd-card/html/gethost.js Normal file
View File

@@ -0,0 +1,15 @@
function getbasepath(){
var host = window.location.hostname;
if (host == "127.0.0.1")
{
host = "http://192.168.178.26"; // jomjol interner test
// host = "http://192.168.178.22"; // jomjol interner Real
// host = "."; // jomjol interner localhost
}
else
{
host = "http://" + host;
}
return host;
}