3.8.2-dev.3, changelog, update pkg

This commit is contained in:
MichaelDvP
2026-02-08 13:59:57 +01:00
parent 769beeda37
commit 3ef279ea10
5 changed files with 330 additions and 358 deletions

View File

@@ -17,3 +17,5 @@ For more details go to [emsesp.org](https://emsesp.org/).
- weblogbuffer up to 1000 messages with PSRAM, mentioned in [#2933](https://github.com/emsesp/EMS-ESP32/issues/2933) - weblogbuffer up to 1000 messages with PSRAM, mentioned in [#2933](https://github.com/emsesp/EMS-ESP32/issues/2933)
- validate custom entity writes, [#2931](https://github.com/emsesp/EMS-ESP32/issues/2931) - validate custom entity writes, [#2931](https://github.com/emsesp/EMS-ESP32/issues/2931)
- remove wrong burnMinPower [#2918](https://github.com/emsesp/EMS-ESP32/issues/2918) - remove wrong burnMinPower [#2918](https://github.com/emsesp/EMS-ESP32/issues/2918)
- store scheduler active state to nvs [#2946](https://github.com/emsesp/EMS-ESP32/discussions/2946)
- translated modes `heat` and `eco` for HA-climate mode-str-tpl

View File

@@ -48,16 +48,16 @@
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.29.0", "@babel/core": "^7.29.0",
"@eslint/js": "^9.39.2", "@eslint/js": "^10.0.1",
"@preact/compat": "^18.3.1", "@preact/compat": "^18.3.1",
"@preact/preset-vite": "^2.10.3", "@preact/preset-vite": "^2.10.3",
"@trivago/prettier-plugin-sort-imports": "^6.0.2", "@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/node": "^25.1.0", "@types/node": "^25.2.2",
"@types/react": "^19.2.10", "@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3", "@types/react-dom": "^19.2.3",
"axe-core": "^4.11.1", "axe-core": "^4.11.1",
"concurrently": "^9.2.1", "concurrently": "^9.2.1",
"eslint": "^9.39.2", "eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8", "eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1", "prettier": "^3.8.1",
"rollup-plugin-visualizer": "^6.0.5", "rollup-plugin-visualizer": "^6.0.5",
@@ -65,7 +65,7 @@
"typescript-eslint": "^8.54.0", "typescript-eslint": "^8.54.0",
"vite": "^7.3.1", "vite": "^7.3.1",
"vite-plugin-imagemin": "^0.6.1", "vite-plugin-imagemin": "^0.6.1",
"vite-tsconfig-paths": "^6.0.5" "vite-tsconfig-paths": "^6.1.0"
}, },
"packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264" "packageManager": "pnpm@10.29.1"
} }

668
interface/pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -67,6 +67,9 @@ class Preferences {
size_t putString(const char * key, String value) { size_t putString(const char * key, String value) {
return 0; return 0;
} }
bool isKey(const char * key) {
return true;
}
// unused.... // unused....
@@ -84,7 +87,6 @@ class Preferences {
// size_t putBool(const char * key, bool value); // size_t putBool(const char * key, bool value);
// size_t putBytes(const char * key, const void * value, size_t len); // size_t putBytes(const char * key, const void * value, size_t len);
// bool isKey(const char * key);
// PreferenceType getType(const char * key); // PreferenceType getType(const char * key);
// int8_t getChar(const char * key, int8_t defaultValue = 0); // int8_t getChar(const char * key, int8_t defaultValue = 0);
// int16_t getShort(const char * key, int16_t defaultValue = 0); // int16_t getShort(const char * key, int16_t defaultValue = 0);

View File

@@ -1 +1 @@
#define EMSESP_APP_VERSION "3.8.2-dev.2" #define EMSESP_APP_VERSION "3.8.2-dev.3"