iobroker.pv-notifications 1.2.13 → 1.2.14

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 CHANGED
@@ -344,8 +344,12 @@ sadam6752@gmail.com
344
344
  ### **WORK IN PROGRESS**
345
345
  -->
346
346
 
347
+ ### 1.2.14 (2026-03-06)
348
+ * (FIX) Fixed intermediate message formatting: Removed extra line break before weather data (weather today appears directly below separator)
349
+
347
350
  ### 1.2.13 (2026-03-03)
348
351
  * (ADD) Added current production (W) to test message, daily statistics and intermediate messages with improved layout
352
+ * (FIX) README.md Changelog updated for repository checker (E6006 fix)
349
353
 
350
354
  ### 1.2.11 (2026-03-02)
351
355
 
package/io-package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "pv-notifications",
4
- "version": "1.2.13",
4
+ "version": "1.2.14",
5
5
  "titleLang": {
6
6
  "en": "PV Notifications",
7
7
  "de": "PV-Benachrichtigungen",
@@ -29,6 +29,19 @@
29
29
  "zh-cn": "发送 Telegram 通知用于 PV 电池状态"
30
30
  },
31
31
  "news": {
32
+ "1.2.14": {
33
+ "en": "Fixed intermediate message formatting: Removed extra line break before weather data",
34
+ "de": "Intermediate-Nachricht formatiert: Zusätzlichen Zeilenumbruch vor Wetterdaten entfernt",
35
+ "ru": "Исправлено форматирование промежуточного сообщения: удалён лишний перенос строки перед данными погоды",
36
+ "pt": "Corrigida formatação da mensagem intermediária: Removida quebra de linha extra antes dos dados meteorológicos",
37
+ "nl": "Formattering tussentijds bericht gecorrigeerd: extra regeleis voor weergegevens verwijderd",
38
+ "fr": "Correction du formatage des messages intermédiaires: suppression du saut de ligne supplémentaire avant les données météo",
39
+ "it": "Corretta formattazione messaggio intermedio: rimossa interruzione di riga extra prima dei dati meteo",
40
+ "es": "Corregido formato de mensaje intermedio: Eliminada salto de línea adicional antes de datos meteorológicos",
41
+ "pl": "Poprawiono formatowanie wiadomości pośrednich: Usunięto dodatkowy podział wiersza przed danymi pogodowymi",
42
+ "uk": "Виправлено форматування проміжних повідомлень: видалено додатковий перенос рядка перед даними погоди",
43
+ "zh-cn": "修复中间消息格式:删除天气数据前的额外换行符"
44
+ },
32
45
  "1.2.13": {
33
46
  "en": "Added current production (W) to test message, daily statistics and intermediate messages with improved layout",
34
47
  "de": "Aktuelle Produktion (W) zu Test-Nachricht, Tagesstatistik und Zwischenmeldungen mit verbessertem Layout hinzugefügt",
@@ -106,19 +119,6 @@
106
119
  "pl": "Naprawiono podwójny wpis wiadomości w io-package.json (poprawka E1036/E2005)",
107
120
  "uk": "Виправлено подвійний запис новин у io-package.json (виправлення E1036/E2005)",
108
121
  "zh-cn": "已修复 io-package.json 中的重复新闻条目(E1036/E2005 修复)"
109
- },
110
- "1.2.7": {
111
- "en": "Fixed io-package.json JSON syntax error (invalid duplicate news section removed)",
112
- "de": "io-package.json JSON-Syntaxfehler behoben (ungültiger doppelter news-Abschnitt entfernt)",
113
- "ru": "Исправлена ошибка синтаксиса JSON в io-package.json (удален недопустимый дублирующийся раздел news)",
114
- "pt": "Erro de sintaxe JSON no io-package.json corrigido (seção de notícias duplicada removida)",
115
- "nl": "JSON-syntaxfout in io-package.json hersteld (ongeldige dubbele nieuwssectie verwijderd)",
116
- "fr": "Erreur de syntaxe JSON dans io-package.json corrigée (section de nouvelles en double supprimée)",
117
- "it": "Errore di sintassi JSON in io-package.json corretto (sezione notizie duplicata rimossa)",
118
- "es": "Error de sintaxis JSON en io-package.json corregido (sección de noticias duplicada eliminada)",
119
- "pl": "Naprawiono błąd składni JSON w io-package.json (usunięto podwójną sekcję wiadomości)",
120
- "uk": "Виправлено помилку синтаксису JSON у io-package.json (видалено подвійний розділ новин)",
121
- "zh-cn": "已修复 io-package.json JSON 语法错误(已删除无效的重复新闻部分)"
122
122
  }
123
123
  },
124
124
  "authors": [
package/main.js CHANGED
@@ -1143,7 +1143,7 @@ ${statusText}
1143
1143
 
1144
1144
  if (weatherTodayText || weatherTodayTemp) {
1145
1145
  const weatherDesc = weatherTodayText ? this.getWeatherDescription(weatherTodayText) : '🌡️';
1146
- message += `\n\n🌤️ ${this.translate('Weather today')}: ${weatherDesc}${todayTempText}`;
1146
+ message += `\n🌤️ ${this.translate('Weather today')}: ${weatherDesc}${todayTempText}`;
1147
1147
  this.log.info(`Weather today added to intermediate message: ${weatherDesc}${todayTempText}`);
1148
1148
  }
1149
1149
  }
@@ -1378,7 +1378,7 @@ ${statusText}
1378
1378
  🏠 ${this.translate('Own consumption')}: ${selfConsumption} kWh (${selfConsumptionRate}%)
1379
1379
  🔌 ${this.translate('Feed-in')}: ${feedIn} kWh
1380
1380
  ⚡ ${this.translate('Grid consumption')}: ${gridPower} kWh
1381
- ━━━━━━━━━━━━━━━━━━━━━━`;
1381
+ ━━━━━━━━━━━━���━━━━━━━━━`;
1382
1382
  }
1383
1383
 
1384
1384
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.pv-notifications",
3
- "version": "1.2.13",
3
+ "version": "1.2.14",
4
4
  "description": "PV-Anlage Batterie-Status Telegram Benachrichtigungen",
5
5
  "author": {
6
6
  "name": "Alex1808 via LLM: Qwen",