<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Forum - Recent Topics				            </title>
            <link>https://www.tweaking4all.com/forum/</link>
            <description>Tweaking4All.com Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Fri, 07 Aug 2026 10:13:29 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>Jinja2 - How to comment lines</title>
                        <link>https://www.tweaking4all.com/forum/home-assistant/jinja2-how-to-comment-lines/</link>
                        <pubDate>Fri, 07 Aug 2026 07:33:06 +0000</pubDate>
                        <description><![CDATA[Playing in the templates editor (Settings -&gt; Tools/Developer -&gt; Templates) I usually add comments so I know what the code is doing.
In Jinja2 this is quite easy:
# This is a comment...]]></description>
                        <content:encoded><![CDATA[<p>Playing in the templates editor (Settings -&gt; Tools/Developer -&gt; Templates) I usually add comments so I know what the code is doing.</p>
<p>In Jinja2 this is quite easy:</p>
<pre contenteditable="false"># This is a comment</pre>
<p>This approach however works for only one line.</p>
<p>Sometimes I want to comment out quite a few lines - especially when I want to comment out a piece of code.<br />To comment multiple lines we need to use this:</p>
<pre contenteditable="false">{# start line comment

....

#}</pre>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/"></category>                        <dc:creator>Hans</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/home-assistant/jinja2-how-to-comment-lines/</guid>
                    </item>
				                    <item>
                        <title>Home Assistant - How to generate a list of all entity IDs, grouped by area and device</title>
                        <link>https://www.tweaking4all.com/forum/home-assistant/home-assistant-how-to-generate-a-list-of-all-entity-ids-grouped-by-area-and-device/</link>
                        <pubDate>Fri, 07 Aug 2026 07:29:41 +0000</pubDate>
                        <description><![CDATA[I needed a list of all entity IDs of home assistant, grouped by area and device, and sorted by domain to get something like this (just a part of the output):
  Area: Master Bedroom
    
 ...]]></description>
                        <content:encoded><![CDATA[<p>I needed a list of all entity IDs of home assistant, grouped by area and device, and sorted by domain to get something like this (just a part of the output):</p>
<pre contenteditable="false">  Area: Master Bedroom
    
    - Device: Google Mini Bedroom
        * media_player.bedroom_speaker
    
    - Device: Hue Light Bedroom Left
        * light.hue_light_bedroom_left
        * number.hue_light_bedroom_left_effect_speed
        * select.hue_light_bedroom_left_power_on_behavior
        * text.hue_light_bedroom_left_effect_color
        * update.hue_light_bedroom_left
    
    - Device: Hue Light Bedroom Right
        * light.hue_light_bedroom_right
        * number.hue_light_bedroom_right_effect_speed
        * select.hue_light_bedroom_right_power_on_behavior
        * text.hue_light_bedroom_right_effect_color
        * update.hue_light_bedroom_right

...</pre>
<p>&nbsp;</p>
<p>The easiest way is by using Jinja2 code in a template: <br />Go to "Settings" -&gt; "Tools" (used to be "Developer") -&gt; templates and paste this code in the editor:</p>
<pre contenteditable="false">{# Get devices by area #}

{%- set assigned_entities = namespace(ids=[]) %}
{%- for area in areas() | sort -%}
  {%- set area_name_val = area_name(area) %}
  
  Area: {{ area_name_val }}
  {%- for dev_id in area_devices(area) | sort(attribute='name') %}
    {%- set dev_name = device_name(dev_id) %}
    
    - Device: {{ dev_name }}
      {%- set entities = device_entities(dev_id) | sort %}
      {%- for ent in entities | sort(attribute='domain') %}
        * {{ ent }}
        {%- set assigned_entities.ids = assigned_entities.ids +  %}
      {%- endfor %}
  {%- endfor %}
{%- endfor -%}

{# Get devices/entities not assigned to an area #}

          Area: Unassigned / Floating Entities
{%- set all_entities = states | map(attribute='entity_id') | list %}
{%- set unassigned = all_entities | reject('in', assigned_entities.ids) | sort %}
{%- for ent in unassigned | sort(attribute='domain') %}
  * {{ ent }}
{%- endfor %}</pre>
<p>This produces a very clean list of all your entities.</p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/"></category>                        <dc:creator>Hans</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/home-assistant/home-assistant-how-to-generate-a-list-of-all-entity-ids-grouped-by-area-and-device/</guid>
                    </item>
				                    <item>
                        <title>UPDATE: Major update done - please report issues</title>
                        <link>https://www.tweaking4all.com/forum/website-updates/update-major-update-done-please-report-issues/</link>
                        <pubDate>Sat, 01 Aug 2026 10:34:32 +0000</pubDate>
                        <description><![CDATA[I&#039;ve just done a major update for the website which should speed up website loading significantly.
If you run into issues, please report!]]></description>
                        <content:encoded><![CDATA[<p>I've just done a major update for the website which should speed up website loading significantly.</p>
<p>If you run into issues, please report!</p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/"></category>                        <dc:creator>Hans</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/website-updates/update-major-update-done-please-report-issues/</guid>
                    </item>
				                    <item>
                        <title>ConnectMeNow will not connect to my WEBDav directory</title>
                        <link>https://www.tweaking4all.com/forum/macos-x-software/connectmenow-will-not-connect-to-my-webdav-directory/</link>
                        <pubDate>Sat, 25 Jul 2026 13:48:45 +0000</pubDate>
                        <description><![CDATA[Hi,
I tried to connect to my webdav directory with ConnectMeNow4, but it fails, because I do not have a subdirectory to connect to.
The address is(it&#039;s not my real server name)
In Connect...]]></description>
                        <content:encoded><![CDATA[<p>Hi,</p>
<p>I tried to connect to my webdav directory with ConnectMeNow4, but it fails, because I do not have a subdirectory to connect to.</p>
<p>The address is https://webdav.myserver.de (it's not my real server name)</p>
<p>In ConnectMeNow4 there is a path field, I always got an error when leaving it empty or set it to / that it's missing the remote path(blank).</p>
<p>Here is what I get in the protocol:<br /><br /></p>
<pre contenteditable="false">15:43:39 │ Mount requested for: "WebDAV root (webdav.myserver.de)"
15:43:39 │ - Max Attempts = 1
│ Attempts Left = -1
│ Last Attempt = n/a
15:43:39 │ - Doing default short mount delay (1 second)
15:43:42 │ - Starting mount background task
15:43:42 │ - RETRY MOUNT TIMER: Started 1 minute timer for remount attempts
15:43:42 │ - Enabled timer for potential extra mount attempts
15:43:42 │ - Thread started

15:43:42 │ Mount status update:
│ Mount/Open Networkshare feedback (SystemDefault):
│ Mount attempt with Calling Apple NetFS API:
│ - ERROR - Missing remote path on server (blank)

15:43:42 │ Thread - Calling for forced status update (only shows results if something changed)

15:43:42 │ -- STATUS UPDATE - THREAD CALLBACK ------------------------------------------------
│
15:43:42 │ Update type
│ - Initial read : -
│ - Timed Interval : -
│ - Get Network info : -
│ - Forced Update : YES
│
│ Status Interval : 10000 milliseconds
│ Interval Interrupts : 500 milliseconds
│ Failed mount after : 30000 milliseconds
│
│ Default gateway : 192.168.1.1 (MAC: xx:xx:xx:xx:xx)
│
15:43:42 │ - Mount Status Updated: Counted 2 active share(s)
15:43:42 │ - Active share: NFS datengrab (xxx)
15:43:42 │ - Active share: SMB bilder (xxx)
15:43:42 │ - Matched 2 Network shares. (matched all)
15:43:42 │
│ -- STATUS UPDATE - COMPLETED ------------------------------------------------------
15:43:42 │ - RETRY MOUNT TIMER: Stopping timer
15:43:42 │ - RETRY MOUNT TIMER: Quiting, nothing left to retry, and no Fallback servers left either
15:43:42 │ - Updating "Mount onAppear" list
15:43:42 │ - Updating "Mount onAppear" list

15:43:42 │ Updating Tray Menu</pre>
<p>&nbsp;</p>
<p>Is this a bug or what should I put to the path field?</p>
<p>Regards</p>
<p>grosmaggul</p>
<p>&nbsp;</p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/"></category>                        <dc:creator>Anonymous</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/macos-x-software/connectmenow-will-not-connect-to-my-webdav-directory/</guid>
                    </item>
				                    <item>
                        <title>UPDATE: Forum Icons updated</title>
                        <link>https://www.tweaking4all.com/forum/website-updates/update-forum-icons-updated/</link>
                        <pubDate>Sat, 25 Jul 2026 13:04:54 +0000</pubDate>
                        <description><![CDATA[Due to changes in WPForo and Font Awesome, I had to change/update icons.
Please report missing icons.]]></description>
                        <content:encoded><![CDATA[<p>Due to changes in WPForo and Font Awesome, I had to change/update icons.</p>
<p>Please report missing icons.</p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/"></category>                        <dc:creator>Hans</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/website-updates/update-forum-icons-updated/</guid>
                    </item>
				                    <item>
                        <title>ConnectMeNow v4.0.25 killed all settings and other findings</title>
                        <link>https://www.tweaking4all.com/forum/connectmenow/connectmenow-v4-0-25-killed-all-settings-ans-other-findings/</link>
                        <pubDate>Mon, 20 Jul 2026 11:25:18 +0000</pubDate>
                        <description><![CDATA[Hello
First, I should mention that I&#039;m using macOS 27 Public Beta 1.
All my share definitions have disappeared. However, this didn&#039;t happen immediately after I installed the new version an...]]></description>
                        <content:encoded><![CDATA[<p>Hello</p>
<p>First, I should mention that I'm using macOS 27 Public Beta 1.</p>
<p>All my share definitions have disappeared. However, this didn't happen immediately after I installed the new version and restarted the app normally; it only happened after I rebooted my computer for other reasons. The app greeted me with a prompt to define new shares.</p>
<p>Now, a few GUI glitches:</p>
<ul>
<li>Dark Mode isn’t working.</li>
<li>The vertical “Details” text in the “Share Details” and “Advanced Options” sections is very bold again and obscures the actual labels.</li>
<li>Hiding passwords in the input field doesn’t work. They’re always visible.</li>
</ul>
<p>I hope this helps you a little. Thank you very much for developing the app. It’s a huge help.</p>
<p>Best regards,</p>
<p>Marcus</p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/"></category>                        <dc:creator>Anonymous</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/connectmenow/connectmenow-v4-0-25-killed-all-settings-ans-other-findings/</guid>
                    </item>
				                    <item>
                        <title>Home Assistant - How to grey out cards when entity is not available</title>
                        <link>https://www.tweaking4all.com/forum/home-assistant/home-assistant-how-to-grey-out-cards-when-entity-is-not-available/</link>
                        <pubDate>Sat, 11 Jul 2026 16:32:13 +0000</pubDate>
                        <description><![CDATA[So I use Home Assistant to manage my 3D printer and when the printer is off, and its entities are &quot;unavailable&quot;, I&#039;d like controls to become greyed out.Vice versa, when the printer is on, an...]]></description>
                        <content:encoded><![CDATA[<p>So I use Home Assistant to manage my 3D printer and when the printer is off, and its entities are "unavailable", I'd like controls to become greyed out.<br />Vice versa, when the printer is on, and its are available, I'd like them to show as normal cards.</p>
<p>By default either the text "unavailable" will be shown and/or a small badge will be shown with an exclamation mark in it.<br />Not what I had in mind.</p>
<p>Took me a while to figure this out, but here is where <strong>Card Mod</strong> comes to the rescue by applying a CSS style when an entity is not available.</p>
<p>First make sure <a href="https://github.com/thomasloven/lovelace-card-mod" target="_blank" rel="noopener">Lovelace Card Mod</a> is installed! (free)</p>
<p>Next for each card apply this card mod:</p>
<pre contenteditable="false">type: entity
entity: sensor.example_sensor
card_mod:
  style:
    .: |
      ha-card {
        {% if is_state(config.entity, 'unavailable') %}
          filter: grayscale(100%) brightness(0.8);
          opacity: 0.6;
        {% endif %}
      }
</pre>
<p>If the entity state is "unavailable" the card will turn grey scale, darker, and a tiny bit transparent.</p>
<p>Example entity available:</p>
895
<p>Example entity not available:</p>
896
<p>&nbsp;</p>
<p>Hope this is helpful for others ... &#x1f60a; </p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/"></category>                        <dc:creator>Hans</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/home-assistant/home-assistant-how-to-grey-out-cards-when-entity-is-not-available/</guid>
                    </item>
				                    <item>
                        <title>ConnectMeNow v4.0.25 not always auto-mouting share</title>
                        <link>https://www.tweaking4all.com/forum/connectmenow/connectmenow-v4-0-25-not-always-auto-mouting-share/</link>
                        <pubDate>Tue, 07 Jul 2026 17:40:40 +0000</pubDate>
                        <description><![CDATA[I have my share configured as Command Line and Auto Mount configured as Network Change -&gt; Only if Default Gateway MAC is.
It seems that when the Mac goes to sleep for a long time, it can...]]></description>
                        <content:encoded><![CDATA[<p>I have my share configured as Command Line and Auto Mount configured as Network Change -&gt; Only if Default Gateway MAC is.</p>
<p>It seems that when the Mac goes to sleep for a long time, it cancels (or times out) all connections, including my share's. Sometimes my share is mounted and available when waking up, but sometimes it is not. In the logs, I've noticed these messages:</p>
<pre contenteditable="false">09:06:40 │ POWER STATE CHANGE - Your Mac is waking up out of Sleep Mode after a 8 hours and 20 minutes nap.
09:06:40 │ - Checking if shares need to be remounted (were mounted before sleep, but not anymore)
09:06:40 │ - 0 shares were no longer mounted

09:06:40 │ -- STATUS UPDATE - THREAD CALLBACK ------------------------------------------------
│ 
09:06:40 │ Update type
│ - Initial read : -
│ - Timed Interval : -
│ - Get Network info : YES
│ - Forced Update : -
│ 
│ Status Interval : 10000 milliseconds
│ Interval Interrupts : 500 milliseconds
│ Failed mount after : 30000 milliseconds
│ 
│ Default gateway : 10.0.0.1 (MAC: )
│ 
09:06:40 │ - Mount Status Updated: Counted 1 active share(s)
09:06:40 │ - Matched 0 Network shares. (1 unknown)
09:06:40 │ 
│ -- STATUS UPDATE - COMPLETED ------------------------------------------------------</pre>
<p>In the second line, it says there were shares mounted before sleep, but they were not mounted anymore. Then on the third line it says "0 shares were no longer mounted", does that mean the app detected that all shares have been mounted?</p>
<p>Then it also says it counted 1 active share, what does "active" mean here? Is it the "on/off" switch on the app's UI? It says this even though my share is not mounted anymore. (The log I pasted above was after a long sleep and my share was not mounted after waking up in that instance)</p>
<p>I've noticed that even with command line mounts, Finder messes around. I've seen Finder trying to unmount the share, remount the share and complain that the share was not accessible. Finder being Finder..., this is probably Apple messing with the mount, not CMN's fault. Do you have any ideas of what is going on and how to keep the shares mounted?</p>
<p>Thank you so much for this incredible app!</p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/"></category>                        <dc:creator>Anonymous</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/connectmenow/connectmenow-v4-0-25-not-always-auto-mouting-share/</guid>
                    </item>
				                    <item>
                        <title>Program locking up when I click add files</title>
                        <link>https://www.tweaking4all.com/forum/renamemytvseries/program-locking-up-when-i-click-add-files/</link>
                        <pubDate>Mon, 06 Jul 2026 13:56:10 +0000</pubDate>
                        <description><![CDATA[I have two questions but first I would like to say thank you for these programs. This one has helped me so much setting up Plex over the years. The past couple of weeks I have been trying to...]]></description>
                        <content:encoded><![CDATA[<p>I have two questions but first I would like to say thank you for these programs. This one has helped me so much setting up Plex over the years. The past couple of weeks I have been trying to rename some series that I have to put into plex as usual. It finds the series like always but when I click to load the file names I want to change the program locks up (becomes unresponsive) and I have to close it via task manager. I am on win 11 64bit and have updated to the latest version of Rename my tv series. Can you please help. The second question is, in the next few months I am planning to get away from windows and move to Zorin 18.1 OS. I was wondering if you think this program will run on that OS and if you might have any suggestions. I have been a windows user only and will have to learn this OS so that is why I am saying a few months. I have another computer I am trying to learn Zorin on before I change my mail system over. Thank you for your time.</p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/"></category>                        <dc:creator>Anonymous</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/renamemytvseries/program-locking-up-when-i-click-add-files/</guid>
                    </item>
				                    <item>
                        <title>Feature Request: Highlight matching words on both sides</title>
                        <link>https://www.tweaking4all.com/forum/renamemytvseries/feature-request-highlight-matching-words-on-both-sides/</link>
                        <pubDate>Sat, 06 Jun 2026 12:45:27 +0000</pubDate>
                        <description><![CDATA[Hello, just want to first say this software is fantastic and I use it all the time.
&nbsp;
I&#039;m hoping you can implement a feature the looks at the Selected Episode side and Selected File s...]]></description>
                        <content:encoded><![CDATA[<p>Hello, just want to first say this software is fantastic and I use it all the time.</p>
<p>&nbsp;</p>
<p>I'm hoping you can implement a feature the looks at the Selected Episode side and Selected File side and highlights words that match on either side. I think this would make it much easier to quickly scan through to determine if the episodes on either side actually match each other.</p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/"></category>                        <dc:creator>Anonymous</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/renamemytvseries/feature-request-highlight-matching-words-on-both-sides/</guid>
                    </item>
							        </channel>
        </rss>
		