From ec3888fa0644495d7a661b2e21d7c7293439772c Mon Sep 17 00:00:00 2001 From: Till Brede Date: Wed, 7 Aug 2019 09:11:53 +0200 Subject: [PATCH] added reminder, that module is outdated --- Alarmierung/README.md | 3 +++ Alarmierung/form.json | 1 + Alarmierung/locale.json | 3 ++- Alarmierung/module.php | 8 ++++---- AnwesenheitsSimulation/README.md | 3 +++ AnwesenheitsSimulation/form.json | 1 + AnwesenheitsSimulation/locale.json | 3 ++- BildArchiv/README.md | 3 +++ BildArchiv/form.json | 1 + BildArchiv/locale.json | 3 ++- EgiGeoZone/README.md | 3 +++ EgiGeoZone/form.json | 1 + EgiGeoZone/locale.json | 3 ++- EnergiezaehlerImpuls/README.md | 3 +++ EnergiezaehlerImpuls/form.json | 1 + EnergiezaehlerImpuls/locale.json | 6 ++++-- EnergiezaehlerStrom/README.md | 3 +++ EnergiezaehlerStrom/form.json | 1 + EnergiezaehlerStrom/locale.json | 3 ++- FertigMelder/README.md | 3 +++ FertigMelder/form.json | 1 + FertigMelder/locale.json | 3 ++- Geofency/README.md | 3 +++ Geofency/form.json | 1 + Geofency/locale.json | 3 ++- RGBMultiplexer/README.md | 2 ++ RGBMultiplexer/form.json | 1 + RGBMultiplexer/locale.json | 3 ++- Rechenmodul/README.md | 3 +++ Rechenmodul/form.json | 4 +++- Rechenmodul/locale.json | 3 ++- SzenenSteuerung/README.md | 3 +++ SzenenSteuerung/form.json | 1 + SzenenSteuerung/locale.json | 3 ++- Treppenhauslichtsteuerung/README.md | 3 +++ Treppenhauslichtsteuerung/form.json | 1 + Treppenhauslichtsteuerung/locale.json | 3 ++- USBMapper/form.json | 1 + USBMapper/locale.json | 4 +++- USBMapper/module.php | 6 +++--- Umrechnen/README.md | 3 +++ Umrechnen/form.json | 1 + Umrechnen/locale.json | 3 ++- UmrechnenMultiGrenzen/README.md | 3 +++ UmrechnenMultiGrenzen/locale.json | 3 ++- UmrechnenMultiGrenzen/module.php | 1 + Unwetterzentrale/README.md | 3 +++ Unwetterzentrale/form.json | 1 + Unwetterzentrale/locale.json | 3 ++- VerbrauchZeitspanne/README.md | 2 ++ VerbrauchZeitspanne/form.json | 1 + VerbrauchZeitspanne/locale.json | 3 ++- WasserAlarm/README.md | 3 +++ WasserAlarm/form.json | 1 + WasserAlarm/locale.json | 3 ++- Watchdog/README.md | 3 +++ Watchdog/form.json | 1 + Watchdog/locale.json | 3 ++- WundergroundWeather/README.md | 3 +++ WundergroundWeather/form.json | 1 + WundergroundWeather/locale.json | 3 ++- ZaehlerUeberlauf/README.md | 3 +++ ZaehlerUeberlauf/form.json | 1 + ZaehlerUeberlauf/locale.json | 3 ++- ZaehlerstandTag/README.md | 3 +++ ZaehlerstandTag/locale.json | 3 ++- 66 files changed, 138 insertions(+), 31 deletions(-) diff --git a/Alarmierung/README.md b/Alarmierung/README.md index 20b1ffa..b192499 100644 --- a/Alarmierung/README.md +++ b/Alarmierung/README.md @@ -1,4 +1,7 @@ # Alarmierung + +_Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/Alarmierung_ + Das Modul löst einen Alarm aus, wenn eine der Sensorenvariablen aktiv wird. Dabei werden Zielvariablen bei einem Alarm auf den maximalen Wert bzw. An (True) gesetzt. Ein einmal geschalteter Alarm wird nicht automatisch deaktiviert, dieser muss manuell zurückgesetzt werden. diff --git a/Alarmierung/form.json b/Alarmierung/form.json index aa48c3d..77b277a 100644 --- a/Alarmierung/form.json +++ b/Alarmierung/form.json @@ -1,6 +1,7 @@ { "elements": [ + {"type" : "Label", "label" :"This module is no longer maintained. The current version can be found here: https://github.com/symcon/Alarmierung"}, { "type": "Label", "label": "Add/Delete sensor variables, which activate the alarm" }, { "type": "List", diff --git a/Alarmierung/locale.json b/Alarmierung/locale.json index d4fd347..467e171 100644 --- a/Alarmierung/locale.json +++ b/Alarmierung/locale.json @@ -9,7 +9,8 @@ "Add/Delete target variables, which react on the alarm" : "Hinzufügen/Löschen von Zielvariablen, welche bei Alarm geschaltet werden", "Sensorvariables" : "Sensorvariablen", "Targetvariables" : "Zielvariablen", - "Not found!" : "Nicht gefunden!" + "Not found!" : "Nicht gefunden!", + "This module is no longer maintained. The current version can be found here: https://github.com/symcon/Alarmierung" : "Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/Alarmierung" } } } \ No newline at end of file diff --git a/Alarmierung/module.php b/Alarmierung/module.php index ae4c66b..1bb7825 100644 --- a/Alarmierung/module.php +++ b/Alarmierung/module.php @@ -259,13 +259,13 @@ public function GetConfigurationForm() { $rowColor = "#FFC0C0"; } - $formdata->elements[1]->values[] = Array( + $formdata->elements[2]->values[] = Array( "Name" => IPS_GetName($sensor->ID), "Status" => $status, ); } else { - $formdata->elements[1]->values[] = Array( + $formdata->elements[2]->values[] = Array( "Name" => $this->Translate("Not found!"), "rowColor" => "#FFC0C0", ); @@ -288,13 +288,13 @@ public function GetConfigurationForm() { $rowColor = "#FFC0C0"; } - $formdata->elements[3]->values[] = Array( + $formdata->elements[4]->values[] = Array( "Name" => IPS_GetName($target->ID), "Status" => $status, "rowColor" => $rowColor, ); } else { - $formdata->elements[3]->values[] = Array( + $formdata->elements[4]->values[] = Array( "Name" => $this->Translate("Not found!"), "rowColor" => "#FFC0C0", ); diff --git a/AnwesenheitsSimulation/README.md b/AnwesenheitsSimulation/README.md index 4cc843c..a9fdae9 100644 --- a/AnwesenheitsSimulation/README.md +++ b/AnwesenheitsSimulation/README.md @@ -1,4 +1,7 @@ # Anwesenheits-Simulation + +_Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/AnwesenheitsSimulation_ + Simuliert die Anwesenheit von Personen im Haushalt. Das Modul bezieht dafür zufällig die Tagesdaten von einem der letzten 4 identischen Wochentagen. Sind an keinem dieser 4 Tage genug Schaltvorgänge geloggt, wird zufällig einer der letzten 30 Tage gewählt. Ist auch innerhalb dieser 30 Tage kein gültiger Tagesdatensatz vorhanden, ist keine Simulation möglich. Sollte keine Simulation möglich sein, wird dies als Nachricht in der Stringvariable "Simulationsquelle (Tag)" angezeigt. diff --git a/AnwesenheitsSimulation/form.json b/AnwesenheitsSimulation/form.json index ee3d3dd..8e552c9 100644 --- a/AnwesenheitsSimulation/form.json +++ b/AnwesenheitsSimulation/form.json @@ -1,6 +1,7 @@ { "elements": [ + { "type": "Label", "label": "This module is no longer maintained. The current version can be found here: https://github.com/symcon/AnwesenheitsSimulation" }, { "type": "Label", "label": "Minimum needed daily changes" }, { "type": "NumberSpinner", "name": "RequiredSwitchCount", "caption": "Count" } ] diff --git a/AnwesenheitsSimulation/locale.json b/AnwesenheitsSimulation/locale.json index b524cab..ea091c2 100644 --- a/AnwesenheitsSimulation/locale.json +++ b/AnwesenheitsSimulation/locale.json @@ -2,7 +2,8 @@ "translations": { "de": { "Minimum needed daily changes": "Minimale Anzahl an täglichen Schaltvorgängen", - "Count": "Anzahl" + "Count": "Anzahl", + "This module is no longer maintained. The current version can be found here: https://github.com/symcon/AnwesenheitsSimulation" : "Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/AnwesenheitsSimulation" } } } \ No newline at end of file diff --git a/BildArchiv/README.md b/BildArchiv/README.md index 5c2f978..f17ee9e 100644 --- a/BildArchiv/README.md +++ b/BildArchiv/README.md @@ -1,4 +1,7 @@ # Bildarchiv + +_Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/BildArchiv_ + Das Modul kopiert bei Auslösung durch eine gewählte Variable ein Bild. Es ist einstellbar wieviele Bilder gespeichert werden sollen. ### Inhaltverzeichnis diff --git a/BildArchiv/form.json b/BildArchiv/form.json index 149f4f6..02f04cd 100644 --- a/BildArchiv/form.json +++ b/BildArchiv/form.json @@ -1,6 +1,7 @@ { "elements": [ + {"type": "Label", "label": "This module is no longer maintained. The current version can be found here: https://github.com/symcon/BildArchiv"}, { "type": "Label", "label": "Image which should be copied." }, { "type": "SelectMedia", "name": "ImageID", "caption": "Image" }, { "type": "Label", "label": "Maximum quantity of images stored" }, diff --git a/BildArchiv/locale.json b/BildArchiv/locale.json index 6f7d4f4..d5e603e 100644 --- a/BildArchiv/locale.json +++ b/BildArchiv/locale.json @@ -6,7 +6,8 @@ "Maximum quantity of images stored": "Wieviele Bilder maximal gespeichert werden sollen", "Quantity": "Anzahl", "Which variable triggers the module to copy the selected image.": "Welche Variable löst ein Kopieren des Bildes aus", - "Triggervariable": "Auslösevariable" + "Triggervariable": "Auslösevariable", + "This module is no longer maintained. The current version can be found here: https://github.com/symcon/BildArchiv" : "Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/BildArchiv" } } } \ No newline at end of file diff --git a/EgiGeoZone/README.md b/EgiGeoZone/README.md index ad343ab..620256a 100644 --- a/EgiGeoZone/README.md +++ b/EgiGeoZone/README.md @@ -1,4 +1,7 @@ # EgiGeoZone + +_Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/EgiGeoZone_ + Das Modul dient zum empfangen von EgiGeoZone Daten. ### Inhaltverzeichnis diff --git a/EgiGeoZone/form.json b/EgiGeoZone/form.json index 57d3e39..accc104 100644 --- a/EgiGeoZone/form.json +++ b/EgiGeoZone/form.json @@ -1,6 +1,7 @@ { "elements": [ + { "type": "Label", "label": "This module is no longer maintained. The current version can be found here: https://github.com/symcon/EgiGeoZone" }, { "name": "Username", "type": "ValidationTextBox", "caption": "Username" }, { "name": "Password", "type": "PasswordTextBox", "caption": "Password" } ] diff --git a/EgiGeoZone/locale.json b/EgiGeoZone/locale.json index 0c21ef8..6dd4ff0 100644 --- a/EgiGeoZone/locale.json +++ b/EgiGeoZone/locale.json @@ -2,7 +2,8 @@ "translations": { "de": { "Username": "Benutzername", - "Password": "Passwort" + "Password": "Passwort", + "This module is no longer maintained. The current version can be found here: https://github.com/symcon/EgiGeoZone" : "Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/EgiGeoZone" } } } \ No newline at end of file diff --git a/EnergiezaehlerImpuls/README.md b/EnergiezaehlerImpuls/README.md index 42421c8..6af44fc 100644 --- a/EnergiezaehlerImpuls/README.md +++ b/EnergiezaehlerImpuls/README.md @@ -1,4 +1,7 @@ # EnergiezählerImpuls + +_Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/_ + Das Modul berechnet via eines Stromzählers (z.B. S0-Anschluss) den momentanen und kumlativen Stromverbrauch. ### Inhaltverzeichnis diff --git a/EnergiezaehlerImpuls/form.json b/EnergiezaehlerImpuls/form.json index 4c6a840..f14d8dd 100644 --- a/EnergiezaehlerImpuls/form.json +++ b/EnergiezaehlerImpuls/form.json @@ -1,6 +1,7 @@ { "elements": [ + {"type": "Label", "label": "This module is no longer maintained. The current version can be found here: https://github.com/symcon/Energiezaehler"}, { "name": "SourceVariable", "type": "SelectVariable", "caption": "Source" }, { "name": "Impulses", "type": "NumberSpinner", "caption": "Pulses" }, { "name": "Interval", "type": "IntervalBox", "caption": "Seconds" } diff --git a/EnergiezaehlerImpuls/locale.json b/EnergiezaehlerImpuls/locale.json index baa85bb..bb55165 100644 --- a/EnergiezaehlerImpuls/locale.json +++ b/EnergiezaehlerImpuls/locale.json @@ -1,9 +1,11 @@ { "translations": { - "de": { + "de": { + "Source": "Quelle", "Pulses": "Impulse", - "Seconds": "Sekunden" + "Seconds": "Sekunden", + "This module is no longer maintained. The current version can be found here: https://github.com/symcon/Energiezaehler" : "Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/EnergieZaehler" } } } \ No newline at end of file diff --git a/EnergiezaehlerStrom/README.md b/EnergiezaehlerStrom/README.md index 32c5438..587d7d1 100644 --- a/EnergiezaehlerStrom/README.md +++ b/EnergiezaehlerStrom/README.md @@ -1,4 +1,7 @@ # EnergiezählerStrom + +_Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/Energiezaehler_ + Das Modul berechnet via eines Stromzählers (Strom oder Leistung) den momentanen und kumlativen Stromverbrauch. ### Inhaltverzeichnis diff --git a/EnergiezaehlerStrom/form.json b/EnergiezaehlerStrom/form.json index 1531ca8..ad9d1ae 100644 --- a/EnergiezaehlerStrom/form.json +++ b/EnergiezaehlerStrom/form.json @@ -1,6 +1,7 @@ { "elements": [ + {"type": "Label", "label": "This module is no longer maintained. The current version can be found here: https://github.com/symcon/Energiezaehler"}, { "type": "Select", "name": "SourceType", "caption": "Type", "options": [ { "label": "Power (W)", "value": 0 }, diff --git a/EnergiezaehlerStrom/locale.json b/EnergiezaehlerStrom/locale.json index 44d001a..7d8ba28 100644 --- a/EnergiezaehlerStrom/locale.json +++ b/EnergiezaehlerStrom/locale.json @@ -6,7 +6,8 @@ "Volt": "Volt", "Seconds": "Sekunden", "Power (W)": "Leistung (W)", - "Current (A)": "Strom (A)" + "Current (A)": "Strom (A)", + "This module is no longer maintained. The current version can be found here: https://github.com/symcon/Energiezaehler" : "Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/Energiezaehler" } } } \ No newline at end of file diff --git a/FertigMelder/README.md b/FertigMelder/README.md index 0228411..585f2ef 100644 --- a/FertigMelder/README.md +++ b/FertigMelder/README.md @@ -1,4 +1,7 @@ # FertigMelder + +_Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/FertigMelder_ + Der FertigMelder meldet ob ein Gerät fertig ist. Dazu wird die Variable der Leistungsaufnahme des Geräts ausgewählt und ein Grenzwert festgelegt. Wird dieser Grenzwert unterschritten und in einer einstellbaren Zeitspanne nicht wieder überschritten, wird die Statusvariable auf "Fertig" gesetzt. diff --git a/FertigMelder/form.json b/FertigMelder/form.json index 4e78b65..833c7ea 100644 --- a/FertigMelder/form.json +++ b/FertigMelder/form.json @@ -1,6 +1,7 @@ { "elements": [ + {"type": "Label", "label": "This module is no longer maintained. The current version can be found here: https://github.com/symcon/FertigMelder" }, { "type": "Label", "label": "Sourcevariable which is compared with the Bordervalue." }, { "type": "SelectVariable", "name": "SourceID", "caption": "Source" }, { "type": "Label", "label": "Bordervalue which forces a reaction." }, diff --git a/FertigMelder/locale.json b/FertigMelder/locale.json index 6014894..48fec80 100644 --- a/FertigMelder/locale.json +++ b/FertigMelder/locale.json @@ -6,7 +6,8 @@ "Bordervalue which forces a reaction.": "Grenzwert bei dessen Unterschreitung reagiert werden soll.", "Bordervalue": "Grenzwert", "Elapsing-Time til 'Done'-Message": "Ablaufzeit bis 'Fertigmeldung'", - "Seconds": "Sekunden" + "Seconds": "Sekunden", + "This module is no longer maintained. The current version can be found here: https://github.com/symcon/FertigMelder" : "Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/FertigMelder" } } } \ No newline at end of file diff --git a/Geofency/README.md b/Geofency/README.md index 702eb3a..2c9357f 100644 --- a/Geofency/README.md +++ b/Geofency/README.md @@ -1,4 +1,7 @@ # Geofency + +_Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/Geofency_ + Das Modul dient zum empfangen von Geofency Daten. ### Inhaltverzeichnis diff --git a/Geofency/form.json b/Geofency/form.json index 57d3e39..c043214 100644 --- a/Geofency/form.json +++ b/Geofency/form.json @@ -1,6 +1,7 @@ { "elements": [ + {"type": "Label", "label": "This module is no longer maintained. The current version can be found here: https://github.com/symcon/Geofency" }, { "name": "Username", "type": "ValidationTextBox", "caption": "Username" }, { "name": "Password", "type": "PasswordTextBox", "caption": "Password" } ] diff --git a/Geofency/locale.json b/Geofency/locale.json index 0c21ef8..e7dc1fd 100644 --- a/Geofency/locale.json +++ b/Geofency/locale.json @@ -2,7 +2,8 @@ "translations": { "de": { "Username": "Benutzername", - "Password": "Passwort" + "Password": "Passwort", + "This module is no longer maintained. The current version can be found here: https://github.com/symcon/Geofency" : "Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/Geofency" } } } \ No newline at end of file diff --git a/RGBMultiplexer/README.md b/RGBMultiplexer/README.md index 34c1e09..e4a2294 100644 --- a/RGBMultiplexer/README.md +++ b/RGBMultiplexer/README.md @@ -1,5 +1,7 @@ # RGB-Multiplexer +_Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/RGBMultiplexer_ + ### Inhaltverzeichnis 1. [Funktionsumfang](#1-funktionsumfang) diff --git a/RGBMultiplexer/form.json b/RGBMultiplexer/form.json index 8c2d0a1..a1110dc 100644 --- a/RGBMultiplexer/form.json +++ b/RGBMultiplexer/form.json @@ -1,6 +1,7 @@ { "elements": [ + {"type": "Label", "label": "This module is no longer maintained. The current version can be found here: https://github.com/symcon/RGBMultiplexer"}, { "name": "SourceVariableR", "type": "SelectVariable", "caption": "Variable (R)" }, { "name": "SourceVariableG", "type": "SelectVariable", "caption": "Variable (G)" }, { "name": "SourceVariableB", "type": "SelectVariable", "caption": "Variable (B)" } diff --git a/RGBMultiplexer/locale.json b/RGBMultiplexer/locale.json index 851effa..ba44ac7 100644 --- a/RGBMultiplexer/locale.json +++ b/RGBMultiplexer/locale.json @@ -7,7 +7,8 @@ "R": "R", "G": "G", "B": "B", - "Set RGB": "RGB setzen" + "Set RGB": "RGB setzen", + "This module is no longer maintained. The current version can be found here: https://github.com/symcon/RGBMultiplexer" : "Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/RGBMultiplexer" } } } \ No newline at end of file diff --git a/Rechenmodul/README.md b/Rechenmodul/README.md index 09cea40..726e9ea 100644 --- a/Rechenmodul/README.md +++ b/Rechenmodul/README.md @@ -1,4 +1,7 @@ # Rechen-Modul + +_Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/Rechenmodule_ + Dieses Modul kann verschiedene Hilfsberechnungen auf einer Menge von Variablen durchführen, beispielsweise die Summe oder den Durchschnitt. ### Inhaltverzeichnis diff --git a/Rechenmodul/form.json b/Rechenmodul/form.json index 9a75a04..0152260 100644 --- a/Rechenmodul/form.json +++ b/Rechenmodul/form.json @@ -1,5 +1,7 @@ { - "elements": [{ + "elements": [ + {"type": "Label", "label": "This module is no longer maintained. The current version can be found here: https://github.com/symcon/Rechenmodule"}, + { "type": "Select", "name": "Calculation", "caption": "Calculation", diff --git a/Rechenmodul/locale.json b/Rechenmodul/locale.json index 1a8cd6d..e4efb60 100644 --- a/Rechenmodul/locale.json +++ b/Rechenmodul/locale.json @@ -9,7 +9,8 @@ "Average": "Durchschnitt", "Count": "Anzahl", "Variables": "Variablen", - "VariableID": "VariablenID" + "VariableID": "VariablenID", + "This module is no longer maintained. The current version can be found here: https://github.com/symcon/Rechenmodule" : "Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/Rechenmodule" } } } \ No newline at end of file diff --git a/SzenenSteuerung/README.md b/SzenenSteuerung/README.md index d1754bc..4c36dcf 100644 --- a/SzenenSteuerung/README.md +++ b/SzenenSteuerung/README.md @@ -1,4 +1,7 @@ # Szenensteuerung + +_Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/_ + Die Szenensteuerung speichert Werte von verlinkten Variablen in Szenen und kann diese via Knopfdruck aus dem WebFront und mobilen Apps wieder aufrufen. Die zu schaltenden Variablen müssen dazu im "Targets" Ordner verlinkt werden. diff --git a/SzenenSteuerung/form.json b/SzenenSteuerung/form.json index 53b3acc..5bf38b8 100644 --- a/SzenenSteuerung/form.json +++ b/SzenenSteuerung/form.json @@ -1,6 +1,7 @@ { "elements": [ + {"type": "Label", "label": "This module is no longer maintained. The current version can be found here: https://github.com/symcon/SzenenSteuerung"}, { "type": "Label", "label": "Number of Scenes" }, { "type": "NumberSpinner", "name": "SceneCount", "caption": "Scenes" } ] diff --git a/SzenenSteuerung/locale.json b/SzenenSteuerung/locale.json index aa174df..0441afa 100644 --- a/SzenenSteuerung/locale.json +++ b/SzenenSteuerung/locale.json @@ -2,7 +2,8 @@ "translations": { "de": { "Number of Scenes": "Anzahl der Szenen", - "Scenes": "Szenen" + "Scenes": "Szenen", + "This module is no longer maintained. The current version can be found here: https://github.com/symcon/SzenenSteuerung" : "Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/SzenenSteuerung" } } } \ No newline at end of file diff --git a/Treppenhauslichtsteuerung/README.md b/Treppenhauslichtsteuerung/README.md index 88a3eb6..c883747 100644 --- a/Treppenhauslichtsteuerung/README.md +++ b/Treppenhauslichtsteuerung/README.md @@ -1,4 +1,7 @@ # Treppenhauslichtsteuerung + +_Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/Treppenhauslichtsteuerung_ + Nachdem ein Auslöser aktiviert wird, geht das Licht im Treppenhaus an. Wird das Auslöser wiederholt aktiviert bleibt das Licht an. Erst wenn für eine vorgegebene Zeit keine weitere Auslösung stattfindet wird das Licht ausgeschaltet. diff --git a/Treppenhauslichtsteuerung/form.json b/Treppenhauslichtsteuerung/form.json index c570647..18f7d74 100644 --- a/Treppenhauslichtsteuerung/form.json +++ b/Treppenhauslichtsteuerung/form.json @@ -1,6 +1,7 @@ { "elements": [ + {"type": "Label", "label": "This module is no longer maintained. The current version can be found here: https://github.com/symcon/Treppenhauslichtsteuerung"}, { "type": "SelectVariable", "name": "InputTriggerID", "caption": "Input Sensor" }, { "type": "NumberSpinner", "name": "Duration", "caption": "Duration", "suffix": "minutes"}, { "type": "SelectVariable", "name": "OutputID", "caption": "Output Variable" } diff --git a/Treppenhauslichtsteuerung/locale.json b/Treppenhauslichtsteuerung/locale.json index 3c442ff..2df2fcf 100644 --- a/Treppenhauslichtsteuerung/locale.json +++ b/Treppenhauslichtsteuerung/locale.json @@ -5,7 +5,8 @@ "Duration": "Dauer", "minutes": "Minuten", "Output Variable" : "Ausgabevariable", - "The output variable of the Treppenhauslichtsteuerung has no variable action. Please choose a variable with a variable action or add a variable action to the output variable." : "Die Ausgabevariable der Treppenhauslichtsteuerung hat keine Variablenaktion. Bitte wählen Sie eine Variable mit Variablenaktion oder fügen Sie der Ausgabevariablen eine Variablenaktion hinzu." + "The output variable of the Treppenhauslichtsteuerung has no variable action. Please choose a variable with a variable action or add a variable action to the output variable." : "Die Ausgabevariable der Treppenhauslichtsteuerung hat keine Variablenaktion. Bitte wählen Sie eine Variable mit Variablenaktion oder fügen Sie der Ausgabevariablen eine Variablenaktion hinzu.", + "This module is no longer maintained. The current version can be found here: https://github.com/symcon/Treppenhauslichtsteuerung" : "Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/Treppenhauslichtsteuerung" } } } \ No newline at end of file diff --git a/USBMapper/form.json b/USBMapper/form.json index 6e2789d..0bae897 100644 --- a/USBMapper/form.json +++ b/USBMapper/form.json @@ -1,6 +1,7 @@ { "elements": [ + {"type": "Label", "label": "This module is no longer maintained. The current version can be found here: https://github.com/symcon/USBMapper"}, { "type": "Label", "label": "This module is only functional with Linux and Raspberry Pi" }, { "type": "List", diff --git a/USBMapper/locale.json b/USBMapper/locale.json index 1847734..4faf834 100644 --- a/USBMapper/locale.json +++ b/USBMapper/locale.json @@ -3,7 +3,9 @@ "de": { "Devices": "Geräte", "Set port": "Gesetzter Port", - "This module is only functional with Linux and Raspberry Pi": "Dieses Modul funktioniert nur unter Linux und Raspberry Pi" + "This module is only functional with Linux and Raspberry Pi": "Dieses Modul funktioniert nur unter Linux und Raspberry Pi", + "This module is no longer maintained. The current version can be found here: https://github.com/symcon/USBMapper" : "Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/USBMapper" + } } } \ No newline at end of file diff --git a/USBMapper/module.php b/USBMapper/module.php index 424e3d6..4c7992f 100644 --- a/USBMapper/module.php +++ b/USBMapper/module.php @@ -134,7 +134,7 @@ public function GetConfigurationForm() { $selectUSB[] = array("label" => "". substr($usbDevice['product'], 0, 16) . "(now: ". $usbDevice['device'] .")", "value" => $usbDevice['id']); } - $formdata->elements[1]->columns[2]->edit->options = $selectUSB; + $formdata->elements[2]->columns[2]->edit->options = $selectUSB; if($this->ReadPropertyString("Devices") != "") { //Annotate existing elements @@ -150,13 +150,13 @@ public function GetConfigurationForm() { $rowColor = "#FFFF00"; } - $formdata->elements[1]->values[] = Array( + $formdata->elements[2]->values[] = Array( "Name" => IPS_GetName($device->ID), "rowColor" => $rowColor, ); } else { - $formdata->elements[1]->values[] = Array( + $formdata->elements[2]->values[] = Array( "Name" => "Not found!", "rowColor" => "#FF0000", ); diff --git a/Umrechnen/README.md b/Umrechnen/README.md index 6cdb1c7..fa7e824 100644 --- a/Umrechnen/README.md +++ b/Umrechnen/README.md @@ -1,5 +1,8 @@ # Umrechnen +_Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/Rechenmodule_ + + ### Inhaltverzeichnis 1. [Funktionsumfang](#1-funktionsumfang) diff --git a/Umrechnen/form.json b/Umrechnen/form.json index 89b931a..dad1b49 100644 --- a/Umrechnen/form.json +++ b/Umrechnen/form.json @@ -1,6 +1,7 @@ { "elements": [ + {"type": "Label", "label": "This module is no longer maintained. The current version can be found here: https://github.com/symcon/Rechenmodule"}, { "name": "SourceVariable", "type": "SelectVariable", "caption": "Source" }, { "name": "Formula", "type": "ValidationTextBox", "caption": "Formula" } ], diff --git a/Umrechnen/locale.json b/Umrechnen/locale.json index 9d9a21c..edb6a75 100644 --- a/Umrechnen/locale.json +++ b/Umrechnen/locale.json @@ -4,7 +4,8 @@ "Source": "Quelle", "Formula": "Formel", "Value": "Wert", - "Calculate": "Berechne" + "Calculate": "Berechne", + "This module is no longer maintained. The current version can be found here: https://github.com/symcon/Rechenmodule" : "Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/Rechenmodule" } } } \ No newline at end of file diff --git a/UmrechnenMultiGrenzen/README.md b/UmrechnenMultiGrenzen/README.md index cd5f566..8786a41 100644 --- a/UmrechnenMultiGrenzen/README.md +++ b/UmrechnenMultiGrenzen/README.md @@ -1,5 +1,8 @@ # UmrechnenMultiGrenzen +_Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/Rechenmodule_ + + ### Inhaltverzeichnis 1. [Funktionsumfang](#1-funktionsumfang) diff --git a/UmrechnenMultiGrenzen/locale.json b/UmrechnenMultiGrenzen/locale.json index 960eb6c..1e56441 100644 --- a/UmrechnenMultiGrenzen/locale.json +++ b/UmrechnenMultiGrenzen/locale.json @@ -24,7 +24,8 @@ "Border 9": "Grenzwert 9", "Border 10": "Grenzwert 10", "Value": "Wert", - "Calculate": "Berechne" + "Calculate": "Berechne", + "This module is no longer maintained. The current version can be found here: https://github.com/symcon/Rechenmodule" : "Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/Rechenmodule" } } } \ No newline at end of file diff --git a/UmrechnenMultiGrenzen/module.php b/UmrechnenMultiGrenzen/module.php index 2340887..04aa876 100644 --- a/UmrechnenMultiGrenzen/module.php +++ b/UmrechnenMultiGrenzen/module.php @@ -42,6 +42,7 @@ public function ApplyChanges() { public function GetConfigurationForm() { $arrayElements = array(); + $arrayElements[] = array("type" => "Label", "caption" => "This module is no longer maintained. The current version can be found here: https://github.com/symcon/Rechenmodule"); $arrayElements[] = array("name" => "SourceVariable", "type" => "SelectVariable", "caption" => "Source"); $arrayElements[] = array("name" => "Border0", "type" => "NumberSpinner", "caption" => "Border 0", "digits" => 4); diff --git a/Unwetterzentrale/README.md b/Unwetterzentrale/README.md index 41af09a..4055f42 100644 --- a/Unwetterzentrale/README.md +++ b/Unwetterzentrale/README.md @@ -1,4 +1,7 @@ # Unwetterzentrale + +_Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/Unwetterzentrale_ + Das Modul berechnet einen gewichteten Regenwert in einem ausgewählten Bereich des Radarbilds. ### Inhaltverzeichnis diff --git a/Unwetterzentrale/form.json b/Unwetterzentrale/form.json index b12ecfc..de3a5c3 100644 --- a/Unwetterzentrale/form.json +++ b/Unwetterzentrale/form.json @@ -1,6 +1,7 @@ { "elements": [ + {"type": "Label", "label": "This module is no longer maintained. The current version can be found here: https://github.com/symcon/Unwetterzentrale"}, { "name": "area", "type": "Select", "caption": "Area", "options": [ { "label": "Germany", "value": "DL" }, diff --git a/Unwetterzentrale/locale.json b/Unwetterzentrale/locale.json index f02fe9b..e6832ac 100644 --- a/Unwetterzentrale/locale.json +++ b/Unwetterzentrale/locale.json @@ -2,7 +2,8 @@ "translations": { "de": { "Area": "Gebiet", - "Germany": "Deutschland" + "Germany": "Deutschland", + "This module is no longer maintained. The current version can be found here: https://github.com/symcon/Unwetterzentrale" : "Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/Unwetterzentrale" } } } \ No newline at end of file diff --git a/VerbrauchZeitspanne/README.md b/VerbrauchZeitspanne/README.md index 72267c2..d1bcd3e 100644 --- a/VerbrauchZeitspanne/README.md +++ b/VerbrauchZeitspanne/README.md @@ -1,5 +1,7 @@ # VerbrauchZeitspanne +_Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/VerbrauchZeitspanne_ + ### Inhaltverzeichnis 1. [Funktionsumfang](#1-funktionsumfang) diff --git a/VerbrauchZeitspanne/form.json b/VerbrauchZeitspanne/form.json index 5a1a3a2..ed7226b 100644 --- a/VerbrauchZeitspanne/form.json +++ b/VerbrauchZeitspanne/form.json @@ -1,6 +1,7 @@ { "elements": [ + {"type": "Label", "label": "This module is no longer maintained. The current version can be found here: https://github.com/symcon/VerbrauchZeitspanne"}, { "name": "SourceVariable", "type": "SelectVariable", "caption": "Source" } ] } \ No newline at end of file diff --git a/VerbrauchZeitspanne/locale.json b/VerbrauchZeitspanne/locale.json index 7589b71..42e92a8 100644 --- a/VerbrauchZeitspanne/locale.json +++ b/VerbrauchZeitspanne/locale.json @@ -1,7 +1,8 @@ { "translations": { "de": { - "Source": "Quelle" + "Source": "Quelle", + "This module is no longer maintained. The current version can be found here: https://github.com/symcon/VerbrauchZeitspanne" : "Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/VerbrauchZeitspanne" } } } \ No newline at end of file diff --git a/WasserAlarm/README.md b/WasserAlarm/README.md index 8971653..0594444 100644 --- a/WasserAlarm/README.md +++ b/WasserAlarm/README.md @@ -1,4 +1,7 @@ # WasserAlarm + +_Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/WasserAlarm_ + Das Modul dient dazu einen unnatürlich hohen Wasserverbrauch festzustellen. Es reagiert auf eine Zählervariable und schaltet unter bestimmten Bedingungen einen Alarm. Es gibt zwei Alarmvariablen. Einen Rohrbruch-Alarm, welcher schaltet wenn große Mengen auf einmal fließen. diff --git a/WasserAlarm/form.json b/WasserAlarm/form.json index 01ea4fa..28ffe85 100644 --- a/WasserAlarm/form.json +++ b/WasserAlarm/form.json @@ -1,6 +1,7 @@ { "elements": [ + {"type": "Label", "label": "This module is no longer maintained. The current version can be found here: https://github.com/symcon/WasserAlarm"}, { "type": "Label", "label": "Metervalue which should be used" }, { "type": "SelectVariable", "name": "MeterID", "caption": "Metervariable" }, { "type": "Label", "label": "Leak timer interval" }, diff --git a/WasserAlarm/locale.json b/WasserAlarm/locale.json index 358f08f..e9695d5 100644 --- a/WasserAlarm/locale.json +++ b/WasserAlarm/locale.json @@ -17,7 +17,8 @@ "Leak threshold" : "Leckage Grenzwert", "Pipe burst" : "Rohrbruch", "Pipe burst threshold" : "Rohrburch Grenzwert", - "Invalid Ident" : "Unzulässiger Ident" + "Invalid Ident" : "Unzulässiger Ident", + "This module is no longer maintained. The current version can be found here: https://github.com/symcon/WasserAlarm" : "Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/WasserAlarm" } } } \ No newline at end of file diff --git a/Watchdog/README.md b/Watchdog/README.md index e95ca8d..ff6ac4e 100644 --- a/Watchdog/README.md +++ b/Watchdog/README.md @@ -1,4 +1,7 @@ # Watchdog + +_Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/_ + Checkt ob verlinkte Variablen überfällig sind. Sind Variablen überfällig, wird ein Alarm gesetzt und eine Liste dieser im WebFront angezeigt. diff --git a/Watchdog/form.json b/Watchdog/form.json index 1ad34a0..69820ff 100644 --- a/Watchdog/form.json +++ b/Watchdog/form.json @@ -1,6 +1,7 @@ { "elements": [ + {"type": "Label", "label": "This module is no longer maintained. The current version can be found here: https://github.com/symcon/Watchdog"}, { "type": "Label", "label": "Time until not updatet objects will set off an alert. Its added to the last time an object is updatet." }, { "type": "Select", "name": "TimeBase", "caption": "Time base", "options": [ diff --git a/Watchdog/locale.json b/Watchdog/locale.json index 11645cd..cccfc06 100644 --- a/Watchdog/locale.json +++ b/Watchdog/locale.json @@ -8,7 +8,8 @@ "Hours": "Stunden", "Days": "Tage", "Time value": "Zeitwert", - "Interval which checks the linked objects": "Intervall in dem die verlinkten Objekte geprüft werden" + "Interval which checks the linked objects": "Intervall in dem die verlinkten Objekte geprüft werden", + "This module is no longer maintained. The current version can be found here: https://github.com/symcon/Watchdog" : "Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/Watchdog" } } } \ No newline at end of file diff --git a/WundergroundWeather/README.md b/WundergroundWeather/README.md index 96487c3..f4c4407 100644 --- a/WundergroundWeather/README.md +++ b/WundergroundWeather/README.md @@ -1,4 +1,7 @@ # WundergroundWeather + +_Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/WundergroundWeather_ + Das Modul fragt über die Wunderground API Wetterdaten ab. Dafür ist eine Registrierung auf www.wunderground.com nötig, um einen API-Key zu erhalten. Es können aktuelle Daten, Unwetterwarnungen, sowie stündliche als auch täglichen Vorhersagen abgefragt werden. diff --git a/WundergroundWeather/form.json b/WundergroundWeather/form.json index 0640967..bfc6d81 100644 --- a/WundergroundWeather/form.json +++ b/WundergroundWeather/form.json @@ -1,6 +1,7 @@ { "elements": [ + {"type": "Label", "label": "This module is no longer maintained. The current version can be found here: https://github.com/symcon/WundergroundWeather"}, { "type": "ValidationTextBox", "name": "Location", "caption": "Location" }, { "type": "ValidationTextBox", "name": "Country", "caption": "Country" }, { "type": "Label", "label": "ID of a \"Personal-Weatherstation\" from https://www.wunderground.com. The specification is optional and will be used instead of the location" }, diff --git a/WundergroundWeather/locale.json b/WundergroundWeather/locale.json index c4ec60c..6dea1ad 100644 --- a/WundergroundWeather/locale.json +++ b/WundergroundWeather/locale.json @@ -24,7 +24,8 @@ "Update Stormwarning": "Unwetterwarnungen aktualisieren", "Instance getting created!": "Instanz wird erstellt!", "Instance is active!": "Instanz ist aktiv!", - "Instance is inactive!": "Instanz ist inaktiv" + "Instance is inactive!": "Instanz ist inaktiv", + "This module is no longer maintained. The current version can be found here: https://github.com/symcon/WundergroundWeather" : "Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/WundergroundWeather" } } } diff --git a/ZaehlerUeberlauf/README.md b/ZaehlerUeberlauf/README.md index 63e449d..d5fcc19 100644 --- a/ZaehlerUeberlauf/README.md +++ b/ZaehlerUeberlauf/README.md @@ -1,4 +1,7 @@ # Zählerüberlauf + +_Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/ZaehlerUeberlauf_ + Das Modul stellt überlaufende Zähler als kontinuierliche Zähler dar. ### Inhaltverzeichnis diff --git a/ZaehlerUeberlauf/form.json b/ZaehlerUeberlauf/form.json index f7bd3e5..cfef5ae 100644 --- a/ZaehlerUeberlauf/form.json +++ b/ZaehlerUeberlauf/form.json @@ -1,6 +1,7 @@ { "elements": [ + {"type": "Label", "label": "This module is no longer maintained. The current version can be found here: https://github.com/symcon/ZaehlerUeberlauf"}, { "name": "SourceVariable", "type": "SelectVariable", "caption": "Source" }, { "name": "MaximumValue", "type": "NumberSpinner", "caption": "Maximum value" } ] diff --git a/ZaehlerUeberlauf/locale.json b/ZaehlerUeberlauf/locale.json index 27ce555..92bb619 100644 --- a/ZaehlerUeberlauf/locale.json +++ b/ZaehlerUeberlauf/locale.json @@ -2,7 +2,8 @@ "translations": { "de": { "Source": "Quelle", - "Maximum value": "Maximalwert" + "Maximum value": "Maximalwert", + "This module is no longer maintained. The current version can be found here: https://github.com/symcon/ZaehlerUeberlauf" : "Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/ZaehlerUeberlauf" } } } \ No newline at end of file diff --git a/ZaehlerstandTag/README.md b/ZaehlerstandTag/README.md index 7a4e830..a521954 100644 --- a/ZaehlerstandTag/README.md +++ b/ZaehlerstandTag/README.md @@ -1,4 +1,7 @@ # Zählerstand (Tag) + +_Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/ZaehlerstandTag_ + Das Modul erlaubt die Auswahl eines Datums und zeigt dann den jeweiligen (Ersten/Letzten) Zählerwert dieses Tages an. ### Inhaltverzeichnis diff --git a/ZaehlerstandTag/locale.json b/ZaehlerstandTag/locale.json index 1b6dae3..3f7c537 100644 --- a/ZaehlerstandTag/locale.json +++ b/ZaehlerstandTag/locale.json @@ -1,6 +1,7 @@ { "translations": { - "de": { + "de": { + "This module is no longer maintained. The current version can be found here: https://github.com/symcon/ZaehlerstandTag" : "Dieses Modul wird nicht mehr gepflegt. Die aktuelle Version ist hier zu finden: https://github.com/symcon/ZaehlerstandTag", "Source": "Quelle", "Value": "Wert", "First reading of the day": "Erster Wert des Tages",