From 86fac94c2d1990738305cc33fec419f081b21e67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc?= Date: Thu, 27 Oct 2022 11:36:26 +0200 Subject: [PATCH 1/4] prevent warning --- core/class/z2m.class.php | 1 + desktop/modal/device.php | 18 +++++++++--------- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/core/class/z2m.class.php b/core/class/z2m.class.php index 451476a..44e3edd 100644 --- a/core/class/z2m.class.php +++ b/core/class/z2m.class.php @@ -634,6 +634,7 @@ public static function convertXYToRGB($x, $y, $bri = 255) { // Exécution d'une commande public function execute($_options = array()) { $eqLogic = $this->getEqLogic(); + $replace = array(); switch ($this->getSubType()) { case 'slider': $replace['#slider#'] = round(floatval($_options['slider']), 2); diff --git a/desktop/modal/device.php b/desktop/modal/device.php index c0bf767..da55683 100644 --- a/desktop/modal/device.php +++ b/desktop/modal/device.php @@ -51,15 +51,15 @@ {{Nom :}} getHumanName() ?> {{Modèle :}} - + {{Fabricant :}} - + {{Vendeur :}} - + {{Modèle ID :}} - + {{Type :}} - +
{{Interview en cours :}}
{{Alimentation :}} - +
{{Software :}} - + {{Support OTA :}} {{Description}}
- +

@@ -157,7 +157,7 @@ getLogicalId())]; foreach ($infos['definition']['options'] as $option) { - if ($option['access'] == 1) { + if (!isset($option['access']) || $option['access'] == 1) { continue; } echo ''; From 7ac370d1096e4ec965bc1c633a516bb35a644935 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc?= <1536036+zoic21@users.noreply.github.com> Date: Tue, 5 Sep 2023 22:51:10 +0200 Subject: [PATCH 2/4] Update configuration.php --- plugin_info/configuration.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin_info/configuration.php b/plugin_info/configuration.php index d0f584e..f03133d 100644 --- a/plugin_info/configuration.php +++ b/plugin_info/configuration.php @@ -115,7 +115,7 @@
From 67b02152ff169988a68d02470a2ee1442e1cd804 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc?= <1536036+zoic21@users.noreply.github.com> Date: Mon, 19 Feb 2024 17:26:42 +0100 Subject: [PATCH 3/4] Update changelog.md --- docs/fr_FR/changelog.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/fr_FR/changelog.md b/docs/fr_FR/changelog.md index 7da8ddf..845e300 100644 --- a/docs/fr_FR/changelog.md +++ b/docs/fr_FR/changelog.md @@ -4,6 +4,10 @@ > >S'il n'y a pas d'information sur la mise à jour, c'est que celle-ci concerne uniquement de la mise à jour de documentation, de traduction ou de texte. +# 19/02/2024 + +- Correction d'un soucis sur l'installation de mqtt + # 17/01/2024 - Amélioration de la mise à jour du firmware sur Luna From c4caccbbca1840df6a11cc038cbe227567c82084 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc?= <1536036+zoic21@users.noreply.github.com> Date: Mon, 19 Feb 2024 17:26:56 +0100 Subject: [PATCH 4/4] Update packages.json --- plugin_info/packages.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugin_info/packages.json b/plugin_info/packages.json index a27f25b..56521a4 100644 --- a/plugin_info/packages.json +++ b/plugin_info/packages.json @@ -1,4 +1,7 @@ { + "plugin" : { + "mqtt2" : {} + }, "pre-install" : { "script" : "plugins/z2m/resources/pre-install.sh" },