From 69a5dd323d349e469fabd11fa45d10e41830f380 Mon Sep 17 00:00:00 2001 From: Armilar <102996011+Armilar@users.noreply.github.com> Date: Tue, 14 Jun 2022 22:42:08 +0200 Subject: [PATCH] V3.0.0 + Bugfix: Sub-Page closes on Button Action (Fix by Grrzzz) --- ...-Page closes on Button Action - (Many thanks to Grrzzz)} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename ioBroker/{ Bugfix - Sub-Page closes on Button Action - (Many thanks to Grrzzz) => Bugfix - Sub-Page closes on Button Action - (Many thanks to Grrzzz)} (99%) diff --git a/ioBroker/ Bugfix - Sub-Page closes on Button Action - (Many thanks to Grrzzz) b/ioBroker/Bugfix - Sub-Page closes on Button Action - (Many thanks to Grrzzz) similarity index 99% rename from ioBroker/ Bugfix - Sub-Page closes on Button Action - (Many thanks to Grrzzz) rename to ioBroker/Bugfix - Sub-Page closes on Button Action - (Many thanks to Grrzzz) index 550340f2..ea8f0c23 100644 --- a/ioBroker/ Bugfix - Sub-Page closes on Button Action - (Many thanks to Grrzzz) +++ b/ioBroker/Bugfix - Sub-Page closes on Button Action - (Many thanks to Grrzzz) @@ -1,6 +1,6 @@ /*----------------------------------------------------------------------- TypeScript zur Steuerung des SONOFF NSPanel mit dem ioBroker -- abgestimmt auf TFT 36 / v2.9.0 / BerryDriver 4 / Tasmota 11.1.0 +- abgestimmt auf TFT 37 / v3.0.0 / BerryDriver 4 / Tasmota 11.1.0 joBr99 Projekt: https://github.com/joBr99/nspanel-lovelace-ui/tree/main/ioBroker NsPanelTs.ts (dieses TypeScript in ioBroker) Stable: https://github.com/joBr99/nspanel-lovelace-ui/blob/main/ioBroker/NsPanelTs.ts icon_mapping.ts: https://github.com/joBr99/nspanel-lovelace-ui/blob/main/ioBroker/icon_mapping.ts (TypeScript muss in global liegen) @@ -550,7 +550,7 @@ check_updates(); //------------------Begin Update Functions function check_updates() { - const desired_display_firmware_version = 36; + const desired_display_firmware_version = 37; const berry_driver_version = 4; if (Debug) console.log("Check-Updates"); @@ -784,7 +784,7 @@ function update_berry_driver_version() { } function update_tft_firmware() { - const tft_version : string = "v2.9.0"; + const tft_version : string = "v3.0.0"; var desired_display_firmware_url = "http://nspanel.pky.eu/lovelace-ui/github/nspanel-" + tft_version + ".tft" require("request")((['http://',get_current_tasmota_ip_address(),'/cm?cmnd=FlashNextion ', desired_display_firmware_url].join('')), async function (error, response, result) { createState(NSPanel_Path + "TFT_Firmware.onlineVersion");