iobroker.poolcontrol 1.3.15 → 1.3.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +59 -69
- package/io-package.json +27 -27
- package/lib/helpers/chemistryOrpHelper.js +805 -0
- package/lib/helpers/chemistryPhHelper.js +274 -21
- package/lib/helpers/pumpHelper2.js +21 -11
- package/lib/i18n/de.json +35 -1
- package/lib/i18n/en.json +35 -1
- package/lib/i18n/es.json +31 -1
- package/lib/i18n/fr.json +31 -1
- package/lib/i18n/it.json +31 -1
- package/lib/i18n/nl.json +31 -1
- package/lib/i18n/pl.json +31 -1
- package/lib/i18n/pt.json +31 -1
- package/lib/i18n/ru.json +31 -1
- package/lib/i18n/uk.json +31 -1
- package/lib/i18n/zh-cn.json +31 -1
- package/lib/stateDefinitions/chemistryOrpStates.js +1068 -0
- package/lib/stateDefinitions/chemistryPhStates.js +214 -0
- package/main.js +14 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -188,6 +188,65 @@ New features are added regularly – please refer to the changelog.
|
|
|
188
188
|
---
|
|
189
189
|
|
|
190
190
|
## Changelog
|
|
191
|
+
### 1.3.17 (2026-05-11)
|
|
192
|
+
|
|
193
|
+
- Fixed release/upload issue from v1.3.16.
|
|
194
|
+
- Fixed circulation calculation in time mode when live flow values were not recalculated after helper-driven pump starts.
|
|
195
|
+
- Improved speech system stability.
|
|
196
|
+
- Stabilized runtime persistence.
|
|
197
|
+
- Reduced repeated solar notifications.
|
|
198
|
+
- Added internal stability improvements.
|
|
199
|
+
|
|
200
|
+
- Added new ORP/Redox chemistry preparation:
|
|
201
|
+
- new `chemistryOrpStates.js`
|
|
202
|
+
- new `chemistryOrpHelper.js`
|
|
203
|
+
- integrated ORP handling into `main.js`
|
|
204
|
+
- supports disabled/manual/state input modes
|
|
205
|
+
- ORP value handling in mV
|
|
206
|
+
- pH reference from `chemistry.ph.enabled` and `chemistry.ph.input.current_value`
|
|
207
|
+
- measurement location, pump and stabilization logic aligned with pH/TDS
|
|
208
|
+
- ORP evaluation without automatic dosing or chlorine control
|
|
209
|
+
- ORP 24h/7d/30d trend support
|
|
210
|
+
- ORP history support
|
|
211
|
+
- ORP text/HTML/JSON outputs
|
|
212
|
+
|
|
213
|
+
- Added ORP i18n texts.
|
|
214
|
+
- Aligned pH structure with TDS/ORP:
|
|
215
|
+
- added `chemistry.ph.history.*`
|
|
216
|
+
- added `chemistry.ph.trend.*`
|
|
217
|
+
- added `chemistry.ph.outputs.*`
|
|
218
|
+
- extended pH helper with history, trend and summary logic
|
|
219
|
+
- existing pH input, evaluation and mix-run logic remain backward compatible
|
|
220
|
+
|
|
221
|
+
### 1.3.16 (2026-05-11)
|
|
222
|
+
|
|
223
|
+
- Fixed circulation calculation in time mode when live flow values were not recalculated after helper-driven pump starts.
|
|
224
|
+
- Improved speech system stability.
|
|
225
|
+
- Stabilized runtime persistence.
|
|
226
|
+
- Reduced repeated solar notifications.
|
|
227
|
+
- Added internal stability improvements.
|
|
228
|
+
|
|
229
|
+
- Added new ORP/Redox chemistry preparation:
|
|
230
|
+
- new `chemistryOrpStates.js`
|
|
231
|
+
- new `chemistryOrpHelper.js`
|
|
232
|
+
- integrated ORP handling into `main.js`
|
|
233
|
+
- supports disabled/manual/state input modes
|
|
234
|
+
- ORP value handling in mV
|
|
235
|
+
- pH reference from `chemistry.ph.enabled` and `chemistry.ph.input.current_value`
|
|
236
|
+
- measurement location, pump and stabilization logic aligned with pH/TDS
|
|
237
|
+
- ORP evaluation without automatic dosing or chlorine control
|
|
238
|
+
- ORP 24h/7d/30d trend support
|
|
239
|
+
- ORP history support
|
|
240
|
+
- ORP text/HTML/JSON outputs
|
|
241
|
+
|
|
242
|
+
- Added ORP i18n texts.
|
|
243
|
+
- Aligned pH structure with TDS/ORP:
|
|
244
|
+
- added `chemistry.ph.history.*`
|
|
245
|
+
- added `chemistry.ph.trend.*`
|
|
246
|
+
- added `chemistry.ph.outputs.*`
|
|
247
|
+
- extended pH helper with history, trend and summary logic
|
|
248
|
+
- existing pH input, evaluation and mix-run logic remain backward compatible
|
|
249
|
+
|
|
191
250
|
### 1.3.15 (2026-05-08)
|
|
192
251
|
|
|
193
252
|
- Added speech source cooldown handling for solar and time announcements
|
|
@@ -218,75 +277,6 @@ New features are added regularly – please refer to the changelog.
|
|
|
218
277
|
- Fixed invalid `common.installedFrom` entry in `io-package.json`
|
|
219
278
|
- Added German and English function overview documentation
|
|
220
279
|
|
|
221
|
-
### 1.3.12 (2026-05-02)
|
|
222
|
-
|
|
223
|
-
**Solar Insights – Calculation fix & structure improvement**
|
|
224
|
-
|
|
225
|
-
- Fixed incorrect thermal power and energy calculation
|
|
226
|
-
- Previously used collector – pool temperature → caused unrealistic values
|
|
227
|
-
- Switched to correct physical calculation: return – flow (water delta)
|
|
228
|
-
- Thermal power is now only calculated when:
|
|
229
|
-
- valid flow is available
|
|
230
|
-
- delta T > 0
|
|
231
|
-
- Prevents unrealistic values (e.g. hundreds of kW or >100 kWh daily gain)
|
|
232
|
-
- Stabilized daily gain and peak power calculation
|
|
233
|
-
- No accumulation with invalid or missing data
|
|
234
|
-
- Improved sensor logic:
|
|
235
|
-
- introduced `flow` and `water_delta`
|
|
236
|
-
- clear separation between flow and temperature delta
|
|
237
|
-
- Increased transparency:
|
|
238
|
-
- new output: `thermal_delta_source = return_flow_delta`
|
|
239
|
-
- HTML and JSON outputs extended
|
|
240
|
-
- Added new i18n key:
|
|
241
|
-
- `solar_insights_label_thermal_delta_source`
|
|
242
|
-
|
|
243
|
-
**Photovoltaic Insights – Runtime & stability fix**
|
|
244
|
-
|
|
245
|
-
- Fixed incorrect runtime calculation
|
|
246
|
-
- Root cause: runtime was only calculated on state changes
|
|
247
|
-
- Added internal periodic recalculation (every 60 seconds during PV runtime)
|
|
248
|
-
- Runtime is now accumulated continuously and correctly
|
|
249
|
-
- Logic unchanged:
|
|
250
|
-
- only real PV surplus runtime is counted (`pv_surplus_active && photovoltaicHelper`)
|
|
251
|
-
- no afterrun included
|
|
252
|
-
- Improved calculation:
|
|
253
|
-
- runtime is now independent from pump power availability
|
|
254
|
-
- energy is only calculated with valid pump power
|
|
255
|
-
- Increased stability:
|
|
256
|
-
- improved start detection (`starts_today`)
|
|
257
|
-
- more reliable time delta handling
|
|
258
|
-
- Added daily reset:
|
|
259
|
-
- all daily values reset at midnight
|
|
260
|
-
- runtime, energy, savings, starts and active state cleared
|
|
261
|
-
- internal helper states reset
|
|
262
|
-
|
|
263
|
-
### 1.3.11 (2026-05-02)
|
|
264
|
-
|
|
265
|
-
- (DasBo) New: pH evaluation module (`chemistry.ph`)
|
|
266
|
-
- supports manual input and external state sources
|
|
267
|
-
- includes validation, measurement location handling and plausibility checks
|
|
268
|
-
- evaluation logic with status and user recommendations (no automatic dosing)
|
|
269
|
-
- manual mixing run with proper pump ownership handling
|
|
270
|
-
- includes history tracking (last valid value, previous value, time differences)
|
|
271
|
-
- fully integrated with i18n translations
|
|
272
|
-
|
|
273
|
-
- (DasBo) New: TDS evaluation module (`chemistry.tds`)
|
|
274
|
-
- supports manual input and external state sources
|
|
275
|
-
- includes validation, measurement location and flow-dependent evaluation
|
|
276
|
-
- reference value tracking (initial water quality baseline)
|
|
277
|
-
- long-term trend analysis (24h, 7d, 30d)
|
|
278
|
-
- evaluation based on absolute value, trend and reference delta (no automatic control)
|
|
279
|
-
- stores measurement history (up to 30 days)
|
|
280
|
-
- summary outputs (text, JSON, HTML)
|
|
281
|
-
- fully integrated with i18n translations
|
|
282
|
-
|
|
283
|
-
- (DasBo) Fix: solar speech toggle (standard vs. extended)
|
|
284
|
-
- solarExtendedHelper no longer writes to `speech.solar_active` when `solar.control_mode = standard`
|
|
285
|
-
- prevents conflicting updates between `solarHelper` and `solarExtendedHelper`
|
|
286
|
-
- eliminates repeated "solar on/off" speech messages
|
|
287
|
-
- improves separation of solar control modes
|
|
288
|
-
- stabilizes speech output behavior
|
|
289
|
-
|
|
290
280
|
## Support
|
|
291
281
|
- [ioBroker Forum](https://forum.iobroker.net/)
|
|
292
282
|
- [GitHub Issues](https://github.com/DasBo1975/ioBroker.poolcontrol/issues)
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "poolcontrol",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.17",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.3.17": {
|
|
7
|
+
"en": "Fixed release packaging issue from v1.3.16. Improved speech system stability, stabilized runtime persistence, reduced repeated solar notifications, fixed circulation calculation in time mode and prepared new ORP/Redox chemistry analysis area.",
|
|
8
|
+
"de": "Release-/Uploadproblem aus v1.3.16 behoben. Sprachsystem verbessert, Runtime-Persistenz stabilisiert, wiederholte Solarbenachrichtigungen reduziert, Umwälzberechnung im Zeitmodus korrigiert und neuer ORP-/Redox-Chemiebereich vorbereitet.",
|
|
9
|
+
"ru": "Исправлена проблема с упаковкой выпуска версии 1.3.16. Улучшена стабильность речевой системы, стабилизировано постоянство времени выполнения, уменьшено количество повторных уведомлений о солнечной радиации, исправлен расчет циркуляции во временном режиме и подготовлена новая область химического анализа ОВП/окислительно-восстановительного потенциала.",
|
|
10
|
+
"pt": "Problema de empacotamento de lançamento corrigido da v1.3.16. Melhor estabilidade do sistema de fala, persistência de tempo de execução estabilizada, redução de notificações solares repetidas, cálculo de circulação fixo no modo de tempo e nova área de análise química ORP/Redox preparada.",
|
|
11
|
+
"nl": "Probleem met releaseverpakking vanaf v1.3.16 opgelost. Verbeterde stabiliteit van het spraaksysteem, gestabiliseerde runtime-persistentie, minder herhaalde zonnemeldingen, vaste circulatieberekening in tijdmodus en voorbereid voor een nieuw ORP/Redox-chemieanalysegebied.",
|
|
12
|
+
"fr": "Correction d'un problème d'emballage de version à partir de la v1.3.16. Amélioration de la stabilité du système vocal, persistance d'exécution stabilisée, réduction des notifications solaires répétées, calcul de la circulation fixe en mode temps et préparation d'une nouvelle zone d'analyse chimique ORP/Redox.",
|
|
13
|
+
"it": "Risolto il problema relativo al pacchetto di rilascio dalla v1.3.16. Stabilità del sistema vocale migliorata, persistenza del tempo di esecuzione stabilizzata, notifiche solari ripetute ridotte, calcolo della circolazione fissa in modalità temporale e nuova area di analisi chimica ORP/Redox preparata.",
|
|
14
|
+
"es": "Se solucionó el problema del paquete de lanzamiento desde v1.3.16. Se mejoró la estabilidad del sistema de voz, se estabilizó la persistencia del tiempo de ejecución, se redujeron las notificaciones solares repetidas, se arregló el cálculo de la circulación en el modo de tiempo y se preparó una nueva área de análisis de química ORP/Redox.",
|
|
15
|
+
"pl": "Naprawiono problem z pakowaniem wersji od wersji 1.3.16. Poprawiona stabilność systemu mowy, ustabilizowana trwałość czasu działania, zmniejszona liczba powtarzających się powiadomień słonecznych, stałe obliczanie cyrkulacji w trybie czasowym i przygotowany nowy obszar analizy chemicznej ORP/Redox.",
|
|
16
|
+
"uk": "Виправлена проблема упаковки випуску з версії 1.3.16. Покращена стабільність мовної системи, стабілізована стійкість під час виконання, зменшено кількість повторюваних сонячних сповіщень, виправлено обчислення циркуляції в часовому режимі та підготовлено нову область аналізу ORP/Redox.",
|
|
17
|
+
"zh-cn": "修复了 v1.3.16 版本的打包问题。提高了语音系统的稳定性,稳定了运行时间的持久性,减少了重复的太阳通知,修复了时间模式下的循环计算,并准备了新的ORP/氧化还原化学分析区域。"
|
|
18
|
+
},
|
|
19
|
+
"1.3.16": {
|
|
20
|
+
"en": "Improved speech system stability, stabilized runtime persistence, reduced repeated solar notifications, fixed circulation calculation in time mode and prepared new ORP/Redox chemistry analysis area.",
|
|
21
|
+
"de": "Sprachsystem verbessert, Runtime-Persistenz stabilisiert, wiederholte Solarbenachrichtigungen reduziert, Umwälzberechnung im Zeitmodus korrigiert und neuer ORP-/Redox-Chemiebereich vorbereitet.",
|
|
22
|
+
"ru": "Улучшена стабильность речевой системы, стабилизировано постоянство времени выполнения, уменьшено количество повторных уведомлений о солнечной радиации, исправлен расчет циркуляции во временном режиме и подготовлена новая область химического анализа ОВП/окислительно-восстановительного потенциала.",
|
|
23
|
+
"pt": "Melhor estabilidade do sistema de fala, persistência de tempo de execução estabilizada, redução de notificações solares repetidas, cálculo de circulação fixo no modo de tempo e nova área de análise química ORP/Redox preparada.",
|
|
24
|
+
"nl": "Verbeterde stabiliteit van het spraaksysteem, gestabiliseerde runtime-persistentie, minder herhaalde zonnemeldingen, vaste circulatieberekening in tijdmodus en voorbereid voor een nieuw ORP/Redox-chemieanalysegebied.",
|
|
25
|
+
"fr": "Amélioration de la stabilité du système vocal, persistance d'exécution stabilisée, réduction des notifications solaires répétées, calcul de la circulation fixe en mode temps et préparation d'une nouvelle zone d'analyse chimique ORP/Redox.",
|
|
26
|
+
"it": "Stabilità del sistema vocale migliorata, persistenza del tempo di esecuzione stabilizzata, notifiche solari ripetute ridotte, calcolo della circolazione fissa in modalità temporale e nuova area di analisi chimica ORP/Redox preparata.",
|
|
27
|
+
"es": "Se mejoró la estabilidad del sistema de voz, se estabilizó la persistencia del tiempo de ejecución, se redujeron las notificaciones solares repetidas, se arregló el cálculo de la circulación en el modo de tiempo y se preparó una nueva área de análisis de química ORP/Redox.",
|
|
28
|
+
"pl": "Poprawiona stabilność systemu mowy, ustabilizowana trwałość czasu działania, zmniejszona liczba powtarzających się powiadomień słonecznych, stałe obliczanie cyrkulacji w trybie czasowym i przygotowany nowy obszar analizy chemicznej ORP/Redox.",
|
|
29
|
+
"uk": "Покращена стабільність мовної системи, стабілізована стійкість під час виконання, зменшено кількість повторюваних сонячних сповіщень, виправлено обчислення циркуляції в часовому режимі та підготовлено нову область аналізу ORP/Redox.",
|
|
30
|
+
"zh-cn": "提高了语音系统的稳定性,稳定了运行时间的持久性,减少了重复的太阳通知,修复了时间模式下的循环计算,并准备了新的ORP/氧化还原化学分析区域。"
|
|
31
|
+
},
|
|
6
32
|
"1.3.15": {
|
|
7
33
|
"en": "Added speech source cooldown handling, improved solar/time speech control, added persistent runtime second states, improved runtime restore logic and converted runtime timers to ioBroker adapter timers.",
|
|
8
34
|
"de": "Sprachquellen mit Cooldown-Steuerung ergänzt, Solar-/Zeit-Sprachsteuerung verbessert, persistente Runtime-Sekundenstates hinzugefügt, Runtime-Wiederherstellung verbessert und Runtime-Timer auf ioBroker-Adapter-Timer umgestellt.",
|
|
@@ -41,32 +67,6 @@
|
|
|
41
67
|
"pl": "Dodano dokumentację przeglądu funkcji w języku niemieckim i angielskim. Naprawiono nieprawidłowy wpis common.installedFrom w io-package.json.",
|
|
42
68
|
"uk": "Додано документацію щодо огляду функцій німецькою та англійською мовами. Виправлено недійсний запис common.installedFrom у io-package.json.",
|
|
43
69
|
"zh-cn": "添加了德语和英语功能概述文档。修复了 io-package.json 中无效的 common.installedFrom 条目。"
|
|
44
|
-
},
|
|
45
|
-
"1.3.12": {
|
|
46
|
-
"en": "Solar Insights calculation fixed and photovoltaic runtime tracking stabilized",
|
|
47
|
-
"de": "Solar Insights Berechnung korrigiert und Photovoltaik-Laufzeit stabilisiert",
|
|
48
|
-
"ru": "Исправлен расчет Solar Insights и стабилизировано отслеживание времени работы фотоэлектрических систем.",
|
|
49
|
-
"pt": "Cálculo do Solar Insights corrigido e rastreamento de tempo de execução fotovoltaico estabilizado",
|
|
50
|
-
"nl": "Solar Insights-berekening vast en tracking van fotovoltaïsche looptijd gestabiliseerd",
|
|
51
|
-
"fr": "Calcul de Solar Insights corrigé et suivi de la durée de fonctionnement photovoltaïque stabilisé",
|
|
52
|
-
"it": "Calcolo Solar Insights fisso e monitoraggio dell'autonomia fotovoltaica stabilizzato",
|
|
53
|
-
"es": "Cálculo de Solar Insights fijo y seguimiento del tiempo de funcionamiento fotovoltaico estabilizado",
|
|
54
|
-
"pl": "Naprawiono obliczenia Solar Insights i ustabilizowano śledzenie czasu działania fotowoltaiki",
|
|
55
|
-
"uk": "Виправлено розрахунок Solar Insights і стабілізовано відстеження часу роботи фотоелектричної системи",
|
|
56
|
-
"zh-cn": "Solar Insights 计算固定,光伏运行时间跟踪稳定"
|
|
57
|
-
},
|
|
58
|
-
"1.3.11": {
|
|
59
|
-
"en": "New: Added pH evaluation module (chemistry.ph) with manual and external input, validation, measurement location handling and recommendations. New: Added TDS evaluation module (chemistry.tds) with trend analysis (24h, 7d, 30d), reference tracking and summary outputs (text/JSON/HTML). Fix: Resolved solar speech toggle issue between standard and extended mode. solarExtendedHelper no longer overwrites speech.solar_active in standard mode.",
|
|
60
|
-
"de": "Neu: pH-Auswertungsmodul (chemistry.ph) mit manueller und externer Eingabe, Validierung, Messort-Berücksichtigung und Handlungsempfehlungen. Neu: TDS-Auswertungsmodul (chemistry.tds) mit Trendanalyse (24h, 7 Tage, 30 Tage), Referenzwert-Verfolgung und Zusammenfassungen (Text/JSON/HTML). Fix: Problem mit Solar-Sprachausgabe zwischen Standard- und Extended-Modus behoben. Der solarExtendedHelper überschreibt speech.solar_active im Standard-Modus nicht mehr.",
|
|
61
|
-
"ru": "Новое: добавлен модуль оценки pH (chemistry.ph) с ручным и внешним вводом, проверкой, обработкой места измерения и рекомендациями. Новое: добавлен модуль оценки TDS (chemistry.tds) с анализом тенденций (24 часа, 7 дней, 30 дней), отслеживанием ссылок и сводными результатами (текст/JSON/HTML). Исправлено: решена проблема переключения солнечной речи между стандартным и расширенным режимом. SolarExtendedHelper больше не перезаписывает voice.solar_active в стандартном режиме.",
|
|
62
|
-
"pt": "Novo: Adicionado módulo de avaliação de pH (chemistry.ph) com entrada manual e externa, validação, manuseio do local de medição e recomendações. Novo: Adicionado módulo de avaliação TDS (chemistry.tds) com análise de tendências (24h, 7d, 30d), rastreamento de referência e resultados resumidos (texto/JSON/HTML). Correção: Resolvido problema de alternância de fala solar entre o modo padrão e estendido. solarExtendedHelper não substitui mais Speech.solar_active no modo padrão.",
|
|
63
|
-
"nl": "Nieuw: pH-evaluatiemodule toegevoegd (chemistry.ph) met handmatige en externe invoer, validatie, afhandeling van meetlocaties en aanbevelingen. Nieuw: TDS-evaluatiemodule toegevoegd (chemistry.tds) met trendanalyse (24 uur, 7 dagen, 30 dagen), referentietracking en samenvattingsresultaten (tekst/JSON/HTML). Oplossing: het probleem met het wisselen van spraak op zonne-energie tussen de standaard- en de uitgebreide modus is opgelost. solarExtendedHelper overschrijft speech.solar_active niet langer in de standaardmodus.",
|
|
64
|
-
"fr": "Nouveau : ajout d'un module d'évaluation du pH (chemistry.ph) avec saisie manuelle et externe, validation, gestion des emplacements de mesure et recommandations. Nouveau : Ajout du module d'évaluation TDS (chemistry.tds) avec analyse des tendances (24h, 7j, 30j), suivi des références et sorties récapitulatives (texte/JSON/HTML). Correction : Résolution du problème de basculement de la parole solaire entre le mode standard et le mode étendu. solarExtendedHelper n’écrase plus Speech.solar_active en mode standard.",
|
|
65
|
-
"it": "Novità: aggiunto il modulo di valutazione del pH (chemistry.ph) con input manuale ed esterno, convalida, gestione del luogo di misurazione e raccomandazioni. Novità: aggiunto il modulo di valutazione TDS (chemistry.tds) con analisi dei trend (24 ore, 7 giorni, 30 giorni), tracciamento dei riferimenti e output di riepilogo (testo/JSON/HTML). Correzione: risolto il problema di commutazione del parlato solare tra la modalità standard e quella estesa. solarExtendedHelper non sovrascrive più Speech.solar_active in modalità standard.",
|
|
66
|
-
"es": "Nuevo: Módulo de evaluación de pH agregado (chemistry.ph) con entrada manual y externa, validación, manejo de la ubicación de medición y recomendaciones. Nuevo: Módulo de evaluación TDS agregado (chemistry.tds) con análisis de tendencias (24h, 7d, 30d), seguimiento de referencias y resultados resumidos (texto/JSON/HTML). Solución: se resolvió el problema de alternar la voz solar entre el modo estándar y extendido. solarExtendedHelper ya no sobrescribe Speech.solar_active en modo estándar.",
|
|
67
|
-
"pl": "Nowość: Dodano moduł oceny pH (chemistry.ph) z ręcznym i zewnętrznym wprowadzaniem danych, walidacją, obsługą miejsca pomiaru i zaleceniami. Nowość: Dodano moduł oceny TDS (chemistry.tds) z analizą trendów (24h, 7d, 30d), śledzeniem referencji i wynikami podsumowującymi (tekst/JSON/HTML). Poprawka: rozwiązano problem z przełączaniem mowy słonecznej między trybem standardowym i rozszerzonym. solarExtendedHelper nie zastępuje już mowy.solar_active w trybie standardowym.",
|
|
68
|
-
"uk": "Нове: додано модуль оцінки pH (chemistry.ph) із ручним і зовнішнім введенням, перевіркою, обробкою місця вимірювання та рекомендаціями. Нове: додано модуль оцінки TDS (chemistry.tds) з аналізом тенденцій (24 години, 7 днів, 30 днів), відстеженням посилань і підсумковими виходами (текст/JSON/HTML). Виправлення: вирішено проблему перемикання сонячної мови між стандартним і розширеним режимами. solarExtendedHelper більше не перезаписує speak.solar_active у стандартному режимі.",
|
|
69
|
-
"zh-cn": "新增内容:添加了 pH 评估模块 (chemistry.ph),具有手动和外部输入、验证、测量位置处理和建议。新增内容:添加了 TDS 评估模块 (chemistry.tds),具有趋势分析(24 小时、7 天、30 天)、参考跟踪和摘要输出(文本/JSON/HTML)。修复:解决了标准模式和扩展模式之间的太阳能语音切换问题。在标准模式下,solarExtendedHelper 不再覆盖pepe.solar_active。"
|
|
70
70
|
}
|
|
71
71
|
},
|
|
72
72
|
"titleLang": {
|