iobroker.botvac 2.0.0 → 2.0.1

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
@@ -33,6 +33,9 @@
33
33
  Placeholder for the next version (at the beginning of the line):
34
34
  ### **WORK IN PROGRESS**
35
35
  -->
36
+ ### 2.0.1 (2023-09-20)
37
+ - (PeterVoronov) A problem causing crashes if some devices are unreachable has been fixed [#46]
38
+
36
39
  ### 2.0.0 (2023-09-18)
37
40
  - (mcm1957) Migration to iobroker-community-adapters has been finalized.
38
41
 
package/io-package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "botvac",
4
- "version": "2.0.0",
4
+ "version": "2.0.1",
5
5
  "news": {
6
+ "2.0.1": {
7
+ "en": "A problem causing crashes if some devices are unreachable has been fixed [#46]",
8
+ "de": "Ein Problem, das Abstürze verursachte wenn Geräte nicht erreichbar sind, wurde behoben [#46]",
9
+ "ru": "Проблема, вызывающая сбои, если некоторые устройства недоступны, была исправлена #[46]",
10
+ "pt": "Um problema causando falhas se alguns dispositivos são inacessíveis foi corrigido #[46]",
11
+ "nl": "Een probleem veroorzaakt crashes als sommige apparaten onbereikbaar zijn, is gerepareerd",
12
+ "fr": "Un problème causant des accidents si certains appareils sont inaccessibles a été corrigé #[46]",
13
+ "it": "Un problema che causa crash se alcuni dispositivi sono irraggiungibili è stato fissato #[46]",
14
+ "es": "Un problema que causa fallos si algunos dispositivos son inalcanzables ha sido fijado #[46]",
15
+ "pl": "Problem zderzenia się, jeśli niektóre urządzenia nie są w stanie naprawić #46",
16
+ "uk": "Проблема, що викликає аварійні ситуації, якщо деякі пристрої ненадійні були виправлені #[46]",
17
+ "zh-cn": "如果某些装置无法控制,造成事故的问题是固定的[46]"
18
+ },
6
19
  "2.0.0": {
7
20
  "en": "Migration to iobroker-community-adapters has been finalized.",
8
21
  "de": "Die Migration zu iobroker-community-adapters wurde abgeschlossen.",
package/main.js CHANGED
@@ -464,7 +464,8 @@ function main() {
464
464
 
465
465
  function update() {
466
466
  for (var i = 0; i < allRobotNames.length; i++) {
467
- updateRobot(allRobots[allRobotNames[i]]);
467
+ //additional check, if delete nonexits robots is disabled in createRobotsObjects
468
+ if (allRobots.hasOwnProperty(allRobotNames[i]) && allRobots[allRobotNames[i]]) updateRobot(allRobots[allRobotNames[i]]);
468
469
  }
469
470
  }
470
471
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.botvac",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "ioBroker botvac Adapter",
5
5
  "author": {
6
6
  "name": "Pmant",