iobroker.drag-indicator 2.0.5 → 2.0.6

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
@@ -22,6 +22,9 @@ e.g. you can use it for power or temperature values.
22
22
  ### **WORK IN PROGRESS**
23
23
  -->
24
24
 
25
+ ### 2.0.6 (2022-06-23) - comments added
26
+ * (BenAhrdt) comment some lines for better undestanding
27
+
25
28
  ### 2.0.5 (2022-06-17) - paypal implemented
26
29
  * (BenAhrdt) implemented paypal and sort readme
27
30
 
package/io-package.json CHANGED
@@ -1,8 +1,20 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "drag-indicator",
4
- "version": "2.0.5",
4
+ "version": "2.0.6",
5
5
  "news": {
6
+ "2.0.6": {
7
+ "en": "comment some lines for better undestanding",
8
+ "de": "kommentieren einige zeilen für besseres unverständnis",
9
+ "ru": "прокомментировать некоторые строки для лучшего непонимания",
10
+ "pt": "comentar algumas linhas para melhor imparcial",
11
+ "nl": "een paar lijnen voor beter onverslaanbaar",
12
+ "fr": "commenter certaines lignes pour une meilleure",
13
+ "it": "commentare alcune linee per meglio incomprensibile",
14
+ "es": "comentar algunas líneas para mejor indecente",
15
+ "pl": "skomentować",
16
+ "zh-cn": "评 注"
17
+ },
6
18
  "2.0.5": {
7
19
  "en": "implemented paypal and sort readme",
8
20
  "de": "implementiert paypal und sort readme",
package/main.js CHANGED
@@ -167,7 +167,7 @@ class DragIndicator extends utils.Adapter {
167
167
  }
168
168
  }
169
169
  }
170
- if(customInfo.resetCronJob != ""){
170
+ if(customInfo.resetCronJob != ""){ // check that ther is a cronjob configured
171
171
  if(!this.cronJobs[customInfo.resetCronJob]){
172
172
  this.cronJobs[customInfo.resetCronJob] = {};
173
173
  this.cronJobs[customInfo.resetCronJob][this.jobId] = schedule.scheduleJob(customInfo.resetCronJob,this.resetWithCronJob.bind(this,customInfo.resetCronJob));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.drag-indicator",
3
- "version": "2.0.5",
3
+ "version": "2.0.6",
4
4
  "description": "Shows the min and max of a selected value",
5
5
  "author": {
6
6
  "name": "BenAhrdt",
@@ -35,7 +35,7 @@
35
35
  "@types/sinon-chai": "^3.2.8",
36
36
  "chai": "^4.3.6",
37
37
  "chai-as-promised": "^7.1.1",
38
- "eslint": "^8.12.0",
38
+ "eslint": "^8.18.0",
39
39
  "mocha": "^9.2.2",
40
40
  "proxyquire": "^2.1.3",
41
41
  "sinon": "^13.0.1",