Skip to content

Commit

Permalink
0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MeisterTR committed Jun 12, 2019
1 parent 27b1bd9 commit f517065
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 32 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ The adapter can control the mower and you can change config params like mowtimes
- Delay for Edgecut : If the edgecut starts in a curve or bend, the lawnmower may lose the wire and stop with a fault, or the blades may not rotate. For this purpose, the starting point at which the blades start to rotate can be set.

## Changelog
### 0.3.0 (06.06.2019)
### 0.3.1 (12.06.2019)
* (MeisterTR) add delay for edgecut in config
* (MeisterTR) fix mowtime error

### 0.2.0 (01.06.2019)
* (MeisterTR) add border
Expand Down
66 changes: 38 additions & 28 deletions io-package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
{
"common": {
"name": "worx",
"version": "0.3.0",
"version": "0.3.1",
"news": {
"0.3.0": {
"en": "add delay in config for edgecut",
"de": "Einstellbare Verzögerung für edgecut"
"0.3.1": {
"en": "add delay in config for edgecut, fix mowtime error",
"ru": "добавить задержку в конфигурации для edgecut, исправить ошибку mowtime",
"de": "Verzögerung in der Konfiguration für Kantenschnitt hinzufügen, Fehler bei der Mähzeit beheben",
"fr": "ajoute un délai dans la configuration pour edgecut, corrige l'erreur mowtime",
"nl": "voeg vertraging toe in config voor edgecut, fix maaittime error",
"es": "agregue retraso en la configuración para edgecut, arregle el error de mowtime",
"it": "aggiungere ritardo in config per edgecut, correggere l'errore di mowtime",
"pl": "dodaj opóźnienie w konfiguracji dla edgecut, napraw błąd mowtime",
"pt": "adicione o atraso na configuração para o edgecut, corrija o erro do mowtime",
"zh-cn": "在edgecut的配置中添加延迟,修复mowtime错误"
},
"0.2.0": {
"en": "add border cut, cleanup fixed errors",
Expand Down Expand Up @@ -36,37 +44,39 @@
"zh-cn": "首次出版"
}
},
"title": "control your worx",
"title": "Worx Landroid Cloud",
"titleLang": {
"en": "control your worx",
"de": "steuere deine worx",
"ru": "управляй своим червем",
"pt": "controle seu worx",
"nl": "controleer uw worx",
"fr": "contrôlez votre travail",
"it": "controlla il tuo worx",
"es": "controla tu mundo",
"pl": "kontroluj swój worx",
"zh-cn": "控制你的烦恼"
},
"en": "Worx Landroid mower (cloud)",
"de": "Worx Landroid Mähroboter (Cloud)",
"ru": "Косилка Worx Landroid (облачная)",
"pt": "Segadeira Landroid Worx (nuvem)",
"fr": "Worx Landroid tondeuse (nuage)",
"nl": "Worx Landroid-maaier (cloud)",
"es": "Cortacésped Worx Landroid (nube)",
"it": "Worx Landroid mower (cloud)",
"pl": "Worx Kosiarka Landroid (chmura)",
"zh-cn": "Worx Landroid割草机(云)"
},
"desc": {
"en": "control via cloud and mqtt",
"de": "Steuerung über Cloud und Mqtt",
"ru": "управление через облако и mqtt",
"pt": "controle via cloud e mqtt",
"nl": "controle via cloud en mqtt",
"fr": "contrôle via cloud et mqtt",
"it": "controllo via cloud e mqtt",
"es": "control a través de la nube y mqtt",
"pl": "kontrola przez chmurę i mqtt",
"zh-cn": "通过云和mqtt控制"
},
"en": "This adapter connects your ioBroker to the cloud of your Worx Landroid",
"ru": "Этот адаптер соединяет ваш ioBroker с облаком вашего Worx Landroid",
"de": "Dieser Adapter verbindet deinen ioBroker mit der Cloud deines Worx Landroids",
"pt": "Este adaptador conecta seu ioBroker à nuvem de seu Landroid Worx",
"fr": "Cet adaptateur connecte votre ioBroker au nuage de votre Worx Landroid",
"es": "Este adaptador conecta su ioBroker a la nube de su Worx Landroid",
"nl": "Deze adapter verbindt uw ioBroker met de cloud van uw Worx Landroid",
"it": "Questo adattatore collega ioBroker al cloud del tuo Worx Landroid",
"pl": "Ten adapter łączy urządzenie ioBroker z chmurą Worx Landroid",
"zh-cn": "此适配器将您的ioBroker连接到Worx Landroid的云"
},
"authors": [
"MeisterTR <[email protected]>"
],
"keywords": [
"ioBroker",
"template",
"mower",
"Landroid",
"Worx",
"Smart Home",
"home automation"
],
Expand Down
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -1049,7 +1049,7 @@ class Worx extends utils.Adapter {

let val = value;
let sval;
let message = mower.message; // set aktual values
let message = mower.message.cfg.sc.d; // set aktual values
let dayID = week.indexOf(id.split('.')[4]);
let valID = ['startTime', 'workTime', 'borderCut'].indexOf(id.split('.')[5]);

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "iobroker.worx",
"version": "0.3.0",
"description": "control via cloud and mqtt",
"version": "0.3.1",
"description": "Worx Landroid mower (Cloud)",
"author": {
"name": "MeisterTR",
"email": "[email protected]"
Expand Down

0 comments on commit f517065

Please sign in to comment.