From c8ab89ef3751266f3fdef4725951443666dd30c5 Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Sat, 13 Dec 2025 10:52:58 +0100 Subject: [PATCH 1/3] fix pl translation --- interface/src/i18n/pl/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/src/i18n/pl/index.ts b/interface/src/i18n/pl/index.ts index 6dd874a32..a594e0fe4 100644 --- a/interface/src/i18n/pl/index.ts +++ b/interface/src/i18n/pl/index.ts @@ -331,7 +331,7 @@ const pl: BaseTranslation = { SERVICES: 'Usługi', ALLVALUES: 'Wszystkie wartości', SPECIAL_FUNCTIONS: 'Specjalne funkcje', - WAIT_FIRMWARE: 'Firma jest wysyłana i instaluje się', + WAIT_FIRMWARE: 'Firmware się ściąga i instaluje', INSTALL_VERSION: 'To zainstaluje wersję {1} {0}. Jesteś pewny?', UPDATE_AVAILABLE: 'aktualizacja dostępna', LATEST_VERSION: 'Jesteś używając najnowszej wersji firmware {0}', From 068744b6816559185415e68a28fd2399ab52f433 Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Sat, 13 Dec 2025 15:01:14 +0100 Subject: [PATCH 2/3] config check --- src/core/system.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/system.h b/src/core/system.h index a265c65c5..635d8a59f 100644 --- a/src/core/system.h +++ b/src/core/system.h @@ -37,7 +37,7 @@ #include #include -#if defined(CONFIG_IDF_TARGET_ESP32) +#if CONFIG_IDF_TARGET_ESP32 // there is no official API available on the original ESP32 extern "C" { uint8_t temprature_sens_read(); From 99f44aece574e16f0861a850dd092f194bfe8598 Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Sun, 14 Dec 2025 09:23:22 +0100 Subject: [PATCH 3/3] remove unused parameter --- src/core/temperaturesensor.cpp | 2 +- src/core/temperaturesensor.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/temperaturesensor.cpp b/src/core/temperaturesensor.cpp index cca9b289f..e16d9103e 100644 --- a/src/core/temperaturesensor.cpp +++ b/src/core/temperaturesensor.cpp @@ -319,7 +319,7 @@ int16_t TemperatureSensor::get_temperature_c(const uint8_t addr[]) { } // update temperature sensor information name and offset -bool TemperatureSensor::update(const char * id, const char * name, int16_t offset, bool hide, bool is_system) { +bool TemperatureSensor::update(const char * id, const char * name, int16_t offset, bool is_system) { // find the sensor for (auto & sensor : sensors_) { if (!strcmp(id, sensor.id())) { diff --git a/src/core/temperaturesensor.h b/src/core/temperaturesensor.h index f02a638ba..e44e3bc6d 100644 --- a/src/core/temperaturesensor.h +++ b/src/core/temperaturesensor.h @@ -124,7 +124,7 @@ class TemperatureSensor { return sensors_.size(); } - bool update(const char * id, const char * name, int16_t offset, bool hide = false, bool is_system = false); + bool update(const char * id, const char * name, int16_t offset, bool is_system = false); #if defined(EMSESP_TEST) void load_test_data();