Bug-fixing

This commit is contained in:
jomjol
2021-01-01 14:59:07 +01:00
parent 8a06825871
commit 0e36010937
12 changed files with 18 additions and 16 deletions

View File

@@ -42,6 +42,8 @@ If you would like to support the developer with a cup of coffee you can do that
##### Rolling - (2021-01-01)
* Increased stability (internal image handling)
* Disabled `CheckDigitIncreaseConsistency` in default configuration - must now be explicit enabled if needed
* Bug fixing: `message`-directory was missing on SD card, html: minor bug in edit digital/analog
2020-12-31

View File

@@ -1,4 +1,4 @@
const char* GIT_REV="ce2f1bc";
const char* GIT_REV="8a06825";
const char* GIT_TAG="";
const char* GIT_BRANCH="rolling";
const char* BUILD_TIME="2021-01-01 10:44";
const char* BUILD_TIME="2021-01-01 13:40";

View File

@@ -1,4 +1,4 @@
const char* GIT_REV="ce2f1bc";
const char* GIT_REV="8a06825";
const char* GIT_TAG="";
const char* GIT_BRANCH="rolling";
const char* BUILD_TIME="2021-01-01 10:44";
const char* BUILD_TIME="2021-01-01 13:40";

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -39,13 +39,13 @@ PreValueAgeStartup = 720
AllowNegativeRates = false
MaxRateValue = 0.1
ErrorMessage = true
CheckDigitIncreaseConsistency = true
CheckDigitIncreaseConsistency = false
[MQTT]
Uri = mqtt://IP-ADRESS:1883
Topic = wasserzaehler/zaehlerstand
TopicError = wasserzaehler/error
ClientID = wasser
;Uri = mqtt://IP-ADRESS:1883
;Topic = wasserzaehler/zaehlerstand
;TopicError = wasserzaehler/error
;ClientID = wasser
;user = USERNAME
;password = PASSWORD

View File

@@ -7,7 +7,7 @@ function getbasepath(){
var host = window.location.hostname;
if ((host == "127.0.0.1") || (host == "localhost"))
{
host = "http://192.168.2.124"; // jomjol interner test
host = "http://192.168.2.118"; // jomjol interner test
// host = "http://192.168.178.26"; // jomjol interner test
// host = "http://192.168.178.22"; // jomjol interner Real
// host = "."; // jomjol interner localhost

View File

@@ -350,7 +350,7 @@ function GetReferenceSize(name){
function ZerlegeZeile(input)
{
var Output = Array(0);
delimiter = " =,";
delimiter = " =,\r";
input = trim(input, delimiter);
var pos = findDelimiterPos(input, delimiter);

View File

@@ -1 +1 @@
4.0.0
4.0.1

View File

View File

@@ -4,9 +4,9 @@ hostname = "watermeter"
;hostname is optional
;if you want to use a fixed IP you need to specify the following 3 parameters (ip, gateway, netmask) with IP4-Addresses "123.456.789.012"
ip = "IP4-ADDRESS"
gateway = "IP4-ADDRESS"
netmask = "255.255.255.0"
;ip = "IP4-ADDRESS"
;gateway = "IP4-ADDRESS"
;netmask = "255.255.255.0"
;in some cases you want to specify the DNS server as well (especially, if it is not identical to the gateway - this is optional for a fixed IP
dns = "IP4-ADDRESS"
;dns = "IP4-ADDRESS"