Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Tester
    4. Betatest NSPanel-lovelace-ui v0.6.x

    NEWS

    • Amazon Alexa - ioBroker Skill läuft aus ?

    • Monatsrückblick – September 2025

    • Neues Video "KI im Smart Home" - ioBroker plus n8n

    Betatest NSPanel-lovelace-ui v0.6.x

    This topic has been deleted. Only users with topic management privileges can see it.
    • T
      ticaki Developer last edited by

      Und gleich auch noch eine weitere - aber das ist nur "weil ich es jetzt kann" wie nützlich das ist wird sich zeigen:

      Bildschirmfoto 2025-10-08 um 15.44.38.png

      Muss Expert für an sein, das funktioniert zwar - aber ist halt irgendwie nicht so super nützlich und schon garnicht für Einsteiger/Umsteiger

      ilovegym 1 Reply Last reply Reply Quote 3
      • ilovegym
        ilovegym @ticaki last edited by

        @ticaki

        du machst mich fertich.. soviele neue gute Funktionen.. 😄

        Mit den Icons super hilfreich, und der Flow - und wenns nur zum sehen ist, wie das aufgebaut ist, ist doch super.

        1 Reply Last reply Reply Quote 1
        • T
          ticaki Developer last edited by

          Und noch ne Kleinigkeit in der PagePower Config:

          Bildschirmfoto 2025-10-08 um 19.50.21.png

          1 Reply Last reply Reply Quote 2
          • T
            ticaki Developer last edited by

            Hier noch ne Doku zu einem neuen ScreensaverNotify-Feature

            https://github.com/ticaki/ioBroker.nspanel-lovelace-ui/blob/main/doc/de/screensaver.md#isdismissibleperevent

            Kurz zusammengefasst:

            1. Benachrichtung erscheint du klickst drauf und sie ist weg - bis der state das nächste mal wieder true wird
            2. Benachrichtung erscheint du klickst drauf und sie überall im Haus weg - bis der state das nächste mal wieder true wird
            1 Reply Last reply Reply Quote 0
            • T
              ticaki Developer last edited by ticaki

              Ab sofort gibt es regelmässige Release und damit entfällt die Githubinstallation (geht zwar noch immer, aber wir können dann auch mal ne kaputte version online haben, ohne gleich in Stress auszubrechen 🙂 )

              Installation daher am besten über benutzerdefiniert und dort:

              iobroker.nspanel-lovelace-ui@latest

              eintragen - dann wird das paket von npm genommen und die installation geht sehr zügig 🙂

              0.6.0 (2025-10-09)

              • (tt-tom17) Color theme keys documented (doc/de/colorTheme.md, English version doc/en/colorTheme.md)
              • (ticaki) Admin: Added Unlock/Alarm editor to admin UI (headline, PIN, buttons, setNavi, duplicate-name check) - first admin only config for a page
              • (ticaki) Admin: Added navigation flow editor to admin UI (expert mode must be enabled)
              • (tt-tom17) Chart scale: rounded to nearest tens
              • (tt-tom17) PagePower: improved icon selection in admin
              • (ticaki) German documentation for screensaver notification features isDismissiblePerEvent and dismissibleIDGlobal added to doc/de/screensaver.md

              Doku zu PageUnlock wird demnächst geschrieben - noch ist da ein Platzhalterlink im Admin

              ilovegym 1 Reply Last reply Reply Quote 0
              • ilovegym
                ilovegym @ticaki last edited by

                @TT-Tom

                wie binde ich denn den Abfallkalender vom Script ein?
                Das hier zeigt die Tonnen an, aber alle in einer Farbe (rot), anstatt blau,gelb, gruen, weiss.. 🙂

                const abfallk: ScriptConfig.PageEntities = {
                        type: 'cardEntities',
                        uniqueName: 'abfall',
                        heading: 'Abfallkalender',
                        useColor: true,
                        items: [
                        { id: 'alias.0.Haus.Abfall.event1',icon: 'trash-can'},
                        { id: 'alias.0.Haus.Abfall.event2',icon: 'trash-can'},
                        { id: 'alias.0.Haus.Abfall.event3',icon: 'trash-can'},
                        { id: 'alias.0.Haus.Abfall.event4',icon: 'trash-can'}
                    ]
                }; 
                
                teletapi T 2 Replies Last reply Reply Quote 0
                • teletapi
                  teletapi @ilovegym last edited by teletapi

                  @ilovegym
                  Sieht bei mir so aus: Dann passen auch wieder die farben.

                       const main: ScriptConfig.PageGrid = {
                          type: 'cardGrid',
                          uniqueName: 'main',
                          heading: 'Übersicht',
                          useColor: true,
                          items: [
                              { navigate: true, id: null, targetPage: 'Gaeste_Wlan', onColor: Green, name: 'wlandaten'},
                              { navigate: true, id: null, targetPage: 'Abfall', icon: 'trash-can', name: 'Abfall' },
                              { navigate: true, id: null, targetPage: 'Telefon', onColor: Green, name: 'Telefon' },
                      ],
                  };
                  
                  
                  
                       const Abfall: any = {
                          heading: 'Abfallkalender',
                          prev: 'main',
                          home: 'main',
                          subPage: true,
                          native: {
                              card: 'cardEntities',
                              dpInit: '0_userdata.0.Abfallkalender',
                              uniqueID: 'Abfall',
                              template: 'entities.waste-calendar',
                          },
                      };
                  
                  ilovegym 1 Reply Last reply Reply Quote 2
                  • T
                    TT-Tom @ilovegym last edited by

                    @ilovegym

                    für den Abfallkalender gibt es ein Template, wenn die die standard 0_userdata states hast, sollte das Template funktionieren.

                        const abfallseite: any = {
                            heading: 'Müllkalender',
                            native: {
                                card: 'cardEntities', //bleibt so
                                dpInit: '0_userdata.0.Abfallkalender', // der Pfad bis zur "1" ggf. anpassen
                                uniqueID: 'abfallseite', 
                                template: 'entities.waste-calendar', // bleibt so
                            },
                        }
                    

                    Bildschirmfoto 2025-10-10 um 16.57.02.png

                    ilovegym 1 Reply Last reply Reply Quote 2
                    • ilovegym
                      ilovegym @teletapi last edited by

                      @teletapi

                      Super, danke, das funktioniert!

                      1 Reply Last reply Reply Quote 0
                      • ilovegym
                        ilovegym @TT-Tom last edited by

                        @tt-tom

                        Das funktioniert aber wie bei mir vorher alle Tonnen in rot, was nüscht nutzt..
                        Das von @teletapi geht da sind die Tonnen Icon in Farbe

                        T 1 Reply Last reply Reply Quote 0
                        • T
                          ticaki Developer last edited by

                          0.6.2 (2025-10-10)

                          • (ticaki) PageUnlock: Config updated — fixed issue where some settings were not applied correctly.
                          • (ticaki) IconSelect showed a too short list. Fixed.
                          • (ticaki) Admin: Added responsive layout for Admin PageUnlock (mobile devices)

                          iobroker.nspanel-lovelace-ui@latest

                          1 Reply Last reply Reply Quote 0
                          • T
                            TT-Tom @ilovegym last edited by

                            @ilovegym

                            das von @teletapi ist doch das selbe wie meins, nur das er eine subpage erstellt hat.

                            1 Reply Last reply Reply Quote 0
                            • First post
                              Last post

                            Support us

                            ioBroker
                            Community Adapters
                            Donate

                            1.1k
                            Online

                            32.2k
                            Users

                            80.9k
                            Topics

                            1.3m
                            Posts

                            20
                            529
                            68671
                            Loading More Posts
                            • Oldest to Newest
                            • Newest to Oldest
                            • Most Votes
                            Reply
                            • Reply as topic
                            Log in to reply
                            Community
                            Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                            The ioBroker Community 2014-2023
                            logo