Rolling 20210910

This commit is contained in:
jomjol
2021-09-10 09:26:52 +02:00
parent af99de3535
commit dd995ec28a
27 changed files with 820 additions and 1097 deletions

View File

@@ -116,6 +116,7 @@ function SaveToConfig(){
WriteConfigININew();
UpdateConfigReference(basepath)
SaveConfigToServer(basepath);
alert("Config.ini is updated!");
}
function EnhanceContrast(){

View File

@@ -243,7 +243,8 @@ function SaveToConfig(){
_zwcat = getConfigCategory();
_zwcat["Analog"]["enabled"] = document.getElementById("Category_Analog_enabled").checked;
WriteConfigININew();
SaveConfigToServer(basepath);
SaveConfigToServer(basepath);
alert("Config.ini is updated!");
}

View File

@@ -60,6 +60,7 @@ function saveTextAsFile()
FileDeleteOnServer("/config/config.ini", basepath);
var textToSave = document.getElementById("inputTextToSave").value;
FileSendContent(textToSave, "/config/config.ini", basepath);
alert("Config.ini is updated!")
}
}

View File

@@ -1804,7 +1804,8 @@ function saveTextAsFile()
if (confirm("Are you sure you want to update \"config.ini\"?")) {
ReadParameterAll();
WriteConfigININew();
SaveConfigToServer(basepath);
SaveConfigToServer(basepath);
alert("Config.ini is updated!")
}
}

View File

@@ -236,7 +236,8 @@ function SaveToConfig(){
_zwcat = getConfigCategory();
_zwcat["Digits"]["enabled"] = document.getElementById("Category_Digits_enabled").checked;
WriteConfigININew();
SaveConfigToServer(basepath);
SaveConfigToServer(basepath);
alert("Config.ini is updated!");
}

View File

@@ -1 +1 @@
9.7.0
9.7.1