Skip to content

Commit

Permalink
chore: release v3.1.2
Browse files Browse the repository at this point in the history
* (klein0r) Fixed exception when cache dir doesn't exist
  • Loading branch information
klein0r committed Dec 22, 2023
1 parent eb316b0 commit 338a435
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 27 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG_OLD.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
# Older changes
## 2.3.0 (2023-10-25)

NodeJS 16.x is required

* (klein0r) Improved log messages
* (klein0r) Added icons in admin tabs

## 2.2.0 (2023-01-16)

* (klein0r) Added completed flag for types
Expand Down
9 changes: 1 addition & 8 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.2 (2023-12-22)

* (klein0r) Fixed exception when cache dir doesn't exist

Expand All @@ -76,13 +76,6 @@ iobroker add trashschedule
* (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

* (klein0r) Improved log messages
* (klein0r) Added icons in admin tabs

## 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.1",
"version": "3.1.2",
"blockedVersions": [
"3.0.0",
"3.1.0",
"3.1.1"
],
"news": {
"3.1.2": {
"en": "Fixed exception when cache dir doesn't exist",
"de": "Behobene Ausnahme, wenn Cache dir nicht existiert",
"ru": "Фиксированное исключение, когда cache dir не существует",
"pt": "Exceção fixa quando o cache dir não existe",
"nl": "Uitzondering als cache dir niet bestaat",
"fr": "Exception fixe lorsque cache dir n'existe pas",
"it": "Eccezione fissa quando il dir della cache non esiste",
"es": "Excepción fija cuando cache dir no existe",
"pl": "Wyjątkiem jest fakt, że pamięć cache nie istnieje",
"uk": "Виняток кеш-копія не існує",
"zh-cn": "如果存在因果关系而异,则有固定的例外。"
},
"3.1.1": {
"en": "Fixed config validation / integration test",
"de": "Feste config Validierung / Integrationstest",
Expand Down Expand Up @@ -85,19 +98,6 @@
"pl": "Dodana flaga dla typów",
"uk": "Додано комплект для типів",
"zh-cn": "增加按类型填写的旗帜"
},
"2.1.1": {
"en": "Added Ukrainian language",
"de": "Ukrainische Sprache",
"ru": "Добавлен украинский язык",
"pt": "Adicionado idioma ucraniano",
"nl": "Voeg Oekraïense taal toe",
"fr": "Ajout de la langue ukrainienne",
"it": "Aggiunto lingua ucraina",
"es": "Idioma ucraniano añadido",
"pl": "Język ukraiński",
"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.1",
"version": "3.1.2",
"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.1'
Version: '3.1.2'
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.1',
version: '3.1.2',
showVersion: function () {
if (vis.binds['trashschedule'].version) {
console.log('Version trashschedule: ' + vis.binds['trashschedule'].version);
Expand Down

0 comments on commit 338a435

Please sign in to comment.