diff --git a/README.md b/README.md index d1e52c2..4501ffe 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,9 @@ ____________________________________________________ ____________________________________________________ ## Timeline (Versions): -- 2024.06.21 Tx packets coming from APRS-IS are (now) formatted into 3rd Party (as they should have been since the beginning). +- 2024.06.26 Personal Note for specific info on station. Thanks Tilen S54B. +- 2024.06.24 Callsign Validation fix. Thanks Helge SA7SKY. +- 2024.06.21 Tx packets coming from APRS-IS are (now) formatted into 3rd Party (as they should have been since the beginning). Thanks Lynn KJ4ERJ and Geoffrey F4FXL. - 2024.06.18 All boards with 433 / 868 / 915 MHz versions. - 2024.06.10 ESP32C3 + 1W LoRa Module (E22 400M30S) support added. - 2024.06.09 Si7021 module added (with autodetected I2C Address) diff --git a/data_embed/index.html b/data_embed/index.html index 7643856..ae275b4 100644 --- a/data_embed/index.html +++ b/data_embed/index.html @@ -249,7 +249,7 @@ name="personalNote" id="personalNote" class="form-control" - placeholder="A Couple of words." + placeholder="iGate/Digirepeater description" /> diff --git a/src/LoRa_APRS_iGate.cpp b/src/LoRa_APRS_iGate.cpp index 505fd50..869915d 100644 --- a/src/LoRa_APRS_iGate.cpp +++ b/src/LoRa_APRS_iGate.cpp @@ -37,7 +37,7 @@ ________________________________________________________________________________ #include "A7670_utils.h" #endif -String versionDate = "2024.06.25"; +String versionDate = "2024.06.26"; Configuration Config; WiFiClient espClient; diff --git a/src/configuration.cpp b/src/configuration.cpp index f35cfad..e2b3131 100644 --- a/src/configuration.cpp +++ b/src/configuration.cpp @@ -97,7 +97,9 @@ void Configuration::writeFile() { data["other"]["backupDigiMode"] = backupDigiMode; data["other"]["lowPowerMode"] = lowPowerMode; - data["other"]["lowVoltageCutOff"] = lowVoltageCutOff; + data["other"]["lowVoltageCutOff"] = lowVoltageCutOff; + + data["personalNote"] = personalNote; serializeJson(data, configFile);