Skip to content

Commit

Permalink
chore: release v3.1.3
Browse files Browse the repository at this point in the history
* (klein0r) fixed configuration validation
* (klein0r) enhanced error logging
* (klein0r) some cities have no streets (API)
  • Loading branch information
klein0r committed Dec 24, 2023
1 parent aac819b commit 7f365db
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 25 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG_OLD.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Older changes
## 2.4.0 (2023-12-21)

* (Standarduser) Added advanced handling for trash pickup
* (klein0r) Added list of missing / not found trash types as JSON (type.jsonNotFound)

## 2.3.0 (2023-10-25)

NodeJS 16.x is required
Expand Down
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ iobroker add trashschedule
Placeholder for the next version (at the beginning of the line):
### **WORK IN PROGRESS**
-->
### **WORK IN PROGRESS**
### 3.1.3 (2023-12-24)

* (klein0r) fixed configuration validation
* (klein0r) enhanced error logging
Expand All @@ -77,11 +77,6 @@ iobroker add trashschedule

* (klein0r) Added API source myMuell

### 2.4.0 (2023-12-21)

* (Standarduser) Added advanced handling for trash pickup
* (klein0r) Added list of missing / not found trash types as JSON (type.jsonNotFound)

## License

MIT License
Expand Down
28 changes: 14 additions & 14 deletions io-package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,26 @@
{
"common": {
"name": "trashschedule",
"version": "3.1.2",
"version": "3.1.3",
"blockedVersions": [
"3.0.0",
"3.1.0",
"3.1.1"
],
"news": {
"3.1.3": {
"en": "fixed configuration validation\nenhanced error logging\nsome cities have no streets (API)",
"de": "feste konfigurationsvalidierung\nverbesserte fehlersuche\neinige Städte haben keine Straßen (API)",
"ru": "фиксированная проверка конфигурации\nулучшенный логинг ошибок\nнекоторые города не имеют улиц (API)",
"pt": "validação de configuração fixa\nregistro de erro aprimorado\nalgumas cidades não têm ruas (API)",
"nl": "vertaling:\nverhoogde fout\nsommige steden hebben geen straten",
"fr": "validation de la configuration fixe\njournalisation des erreurs améliorées\ncertaines villes n'ont pas de rue (API)",
"it": "convalida di configurazione fissa\nregistrazione degli errori migliorata\nalcune città non hanno strade (API)",
"es": "validación de configuración fija\nregistro de errores mejorado\nalgunas ciudades no tienen calles (API)",
"pl": "walidacja ustalana\nulepszenie błędów\nniektóre miasta nie posiadają ulic (API)",
"uk": "фіксована перевірка конфігурації\nрозширений журнал помилок\nдеякі міста не мають вулиць (API)",
"zh-cn": "固定单元验证\na. 增加的错误伐木\n有些城市没有街道(API)"
},
"3.1.2": {
"en": "Fixed exception when cache dir doesn't exist",
"de": "Behobene Ausnahme, wenn Cache dir nicht existiert",
Expand Down Expand Up @@ -85,19 +98,6 @@
"pl": "NodeJS 16 (ang.)\n\n- Improved log messages\n* Added icons in admin tabs",
"uk": "NodeJS 16.x обов'язковий\n\n* Покращені повідомлення журналу\n* Додано іконки в вкладках адміністратора",
"zh-cn": "不需要16.JS16x。\n\n* 改进文 件\n* 括号内增列图"
},
"2.2.0": {
"en": "Added completed flag for types",
"de": "Erweiterte Flagge für Typen hinzugefügt",
"ru": "Добавлен заполненный флаг для типов",
"pt": "Adicionado bandeira completa para tipos",
"nl": "Toegevoegd voltooide vlag voor types",
"fr": "Ajout du drapeau complet pour les types",
"it": "Aggiunto la bandiera completa per i tipi",
"es": "Añadido bandera completa para tipos",
"pl": "Dodana flaga dla typów",
"uk": "Додано комплект для типів",
"zh-cn": "增加按类型填写的旗帜"
}
},
"titleLang": {
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "iobroker.trashschedule",
"version": "3.1.2",
"version": "3.1.3",
"description": "Calculates the days until next trash pickup",
"author": {
"name": "Matthias Kleine",
Expand Down
2 changes: 1 addition & 1 deletion widgets/trashschedule.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!--
ioBroker.vis TrashSchedule Widget-Set
Version: '3.1.2'
Version: '3.1.3'
Copyright 2022 Matthias Kleine info@haus-automatisierung.com
-->
Expand Down
2 changes: 1 addition & 1 deletion widgets/trashschedule/js/trashschedule.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ $.extend(
);

vis.binds['trashschedule'] = {
version: '3.1.2',
version: '3.1.3',
showVersion: function () {
if (vis.binds['trashschedule'].version) {
console.log('Version trashschedule: ' + vis.binds['trashschedule'].version);
Expand Down

0 comments on commit 7f365db

Please sign in to comment.