<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Latest version of HISE breaks existing presets....]]></title><description><![CDATA[<p dir="auto">Well this one has me stumped. I update to the latest version of HISE today, I've been on an older version whilst a couple of products were released and supported thru the early adopted process...</p>
<p dir="auto">For at least one of my projects the preset load seems to be broken, in that it's setting a number of widgets to their max value, e.g MasterVolume is being set to 30 (its dB max) for about 60-70% of the presets...and a bunch of other widgets are similarly affected.</p>
<p dir="auto">Its a very big project (when are they not these days) so I cant post a snippet...</p>
<p dir="auto">I did this to try and see where it was happening:</p>
<pre><code>inline function onMasterVolumeControl(component, value)
{
	//
	MasterSimpleGain.setAttribute(MasterSimpleGain.Gain, value);
	Console.print("we are setting the Master volume to:" + value);
};
</code></pre>
<p dir="auto">and got this back from the console:</p>
<pre><code>Interface: we are setting the Master volume to:30.0
Interface: we are setting the Master volume to:-3.499999046325684
Interface: we are setting the Master volume to:30.0
Interface: *******START the post load callback
Interface: we are loading a preset for version:30100.0
Interface: *********END the post load callback

</code></pre>
<p dir="auto">Here's the relevant line in the preset:</p>
<pre><code>    &lt;Control type="ScriptSlider" id="MasterVolume" value="-3.499999046325684"/&gt;
</code></pre>
<p dir="auto">I've triple checked and nowhere else is going anywhere near the MasterVolume widget....</p>
<p dir="auto">So...something is setting the widget value to 30 for some reason, then the value is being set by the preset load correctly, then this thing is re-applying this 30 dB value....</p>
<p dir="auto">Theres no timers running or broadcasters...</p>
<p dir="auto"><em>clueless</em></p>
<p dir="auto">EDIT: oh and I've tried resetting the widget to its correct value and resaving the preset, then reloading - no change this "30 maniac" is still doing its thing...</p>
<p dir="auto">EDIT: OK it turns out its WAAAY worse than this - every preset is doing "this" as well, so no MasterVolumes are being set to their correct values:</p>
<p dir="auto">here's the console for a bunch of preset loads:</p>
<pre><code>Interface: we are setting the Master volume to:-4.700000762939453
Interface: we are setting the Master volume to:20.0
Interface: we are setting the Master volume to:-4.700000762939453
Interface: *******START the post load callback
Interface: we are loading a preset for version:30000.0
Interface: *********END the post load callback
Interface: we are setting the Master volume to:30.0
Interface: we are setting the Master volume to:17.0
Interface: we are setting the Master volume to:30.0
Interface: *******START the post load callback
Interface: we are loading a preset for version:30000.0
Interface: *********END the post load callback
Interface: we are setting the Master volume to:-4.700000762939453
Interface: we are setting the Master volume to:-5.999999046325684
Interface: we are setting the Master volume to:-4.700000762939453
Interface: *******START the post load callback
Interface: we are loading a preset for version:30000.0
Interface: *********END the post load callback
Interface: we are setting the Master volume to:-4.700000762939453
Interface: we are setting the Master volume to:9.200000762939453
Interface: we are setting the Master volume to:-4.700000762939453
Interface: *******START the post load callback
Interface: we are loading a preset for version:30000.0
Interface: *********END the post load callback

</code></pre>
<p dir="auto">It sort of looks like the preset load code is looking at some other widget.....</p>
]]></description><link>https://forum.hise.audio/topic/14165/latest-version-of-hise-breaks-existing-presets</link><generator>RSS for Node</generator><lastBuildDate>Sat, 09 May 2026 17:00:49 GMT</lastBuildDate><atom:link href="https://forum.hise.audio/topic/14165.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 05 Jan 2026 12:04:05 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Latest version of HISE breaks existing presets.... on Tue, 05 May 2026 09:20:12 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/1">@Christoph-Hart</a> I think not. As this is showing up in HISE as well as compiled plugins.... see my posts at the start about using Console.print to tell me whats happening...</p>
<p dir="auto">Sent you the project link to your email</p>
]]></description><link>https://forum.hise.audio/post/120097</link><guid isPermaLink="true">https://forum.hise.audio/post/120097</guid><dc:creator><![CDATA[Lindon]]></dc:creator><pubDate>Tue, 05 May 2026 09:20:12 GMT</pubDate></item><item><title><![CDATA[Reply to Latest version of HISE breaks existing presets.... on Tue, 05 May 2026 08:59:11 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/67">@Lindon</a> Would it be possible that the single error that both you and <a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/3808">@JulesV</a> are experiencing is because of a drift between the plugin parameter value stored in the DAW project and the internal preset?</p>
<p dir="auto">Whenever you save a DAW preset, it will</p>
<ul>
<li>create a .preset containing the plugin state (exactly as if you would save a user preset)</li>
<li>store the values of all registered plugin parameters</li>
</ul>
<p dir="auto">and dump that into the binary data blob stored as DAW project.</p>
<p dir="auto">In a "healthy" plugin, these values should not drift - the plugin parameter value is the value stored into the preset. But if there is a mismatch (either because of a new plugin parameter that wasn't stored or because of some initialisation error at startup, it might create these issues.</p>
]]></description><link>https://forum.hise.audio/post/120095</link><guid isPermaLink="true">https://forum.hise.audio/post/120095</guid><dc:creator><![CDATA[Christoph Hart]]></dc:creator><pubDate>Tue, 05 May 2026 08:59:11 GMT</pubDate></item><item><title><![CDATA[Reply to Latest version of HISE breaks existing presets.... on Tue, 05 May 2026 07:42:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/1">@Christoph-Hart</a> said in <a href="/post/120043">Latest version of HISE breaks existing presets....</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/67">@Lindon</a> yes send over.</p>
<p dir="auto">So your particular problem is that plugin parameters + macros + preset recall is not working (mastervolume +30 = 1.0 normalized)?</p>
</blockquote>
<p dir="auto">yes that about sums it up - I will send it over...</p>
]]></description><link>https://forum.hise.audio/post/120092</link><guid isPermaLink="true">https://forum.hise.audio/post/120092</guid><dc:creator><![CDATA[Lindon]]></dc:creator><pubDate>Tue, 05 May 2026 07:42:50 GMT</pubDate></item><item><title><![CDATA[Reply to Latest version of HISE breaks existing presets.... on Mon, 04 May 2026 14:32:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/1">@Christoph-Hart</a> In the plugin, all controls are set to plugin parameters. Also most of them are set to isMetaParameter.  And all controls are initializing with default values</p>
]]></description><link>https://forum.hise.audio/post/120062</link><guid isPermaLink="true">https://forum.hise.audio/post/120062</guid><dc:creator><![CDATA[JulesV]]></dc:creator><pubDate>Mon, 04 May 2026 14:32:38 GMT</pubDate></item><item><title><![CDATA[Reply to Latest version of HISE breaks existing presets.... on Mon, 04 May 2026 14:04:17 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/3808">@JulesV</a> Are you using plugin parameters? And is this affecting only controls that are linked to plugin parameters or all values?</p>
]]></description><link>https://forum.hise.audio/post/120056</link><guid isPermaLink="true">https://forum.hise.audio/post/120056</guid><dc:creator><![CDATA[Christoph Hart]]></dc:creator><pubDate>Mon, 04 May 2026 14:04:17 GMT</pubDate></item><item><title><![CDATA[Reply to Latest version of HISE breaks existing presets.... on Mon, 04 May 2026 13:33:15 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/1">@Christoph-Hart</a> When I open a project previously saved in a DAW using a plugin compiled with 2024 commit HISE (I only tried in Reaper and Logic on macOS), with the same plugin compiled with new HISE, the saved settings are not loaded in the DAW. The plugin is loaded with the default state.</p>
]]></description><link>https://forum.hise.audio/post/120048</link><guid isPermaLink="true">https://forum.hise.audio/post/120048</guid><dc:creator><![CDATA[JulesV]]></dc:creator><pubDate>Mon, 04 May 2026 13:33:15 GMT</pubDate></item><item><title><![CDATA[Reply to Latest version of HISE breaks existing presets.... on Mon, 04 May 2026 12:34:02 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/67">@Lindon</a> yes send over.</p>
<p dir="auto">So your particular problem is that plugin parameters + macros + preset recall is not working (mastervolume +30 = 1.0 normalized)?</p>
]]></description><link>https://forum.hise.audio/post/120043</link><guid isPermaLink="true">https://forum.hise.audio/post/120043</guid><dc:creator><![CDATA[Christoph Hart]]></dc:creator><pubDate>Mon, 04 May 2026 12:34:02 GMT</pubDate></item><item><title><![CDATA[Reply to Latest version of HISE breaks existing presets.... on Mon, 04 May 2026 12:29:46 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/1">@Christoph-Hart</a> I know its a long way back but if you look at the first three or so posts in this thread I think that does dumb it down , and explain exactly whats happening.... let me know if thats not enough, I can send the project without the samples - as Im pretty sure they wouldnt be needed to see this problem anyway....your call.</p>
]]></description><link>https://forum.hise.audio/post/120041</link><guid isPermaLink="true">https://forum.hise.audio/post/120041</guid><dc:creator><![CDATA[Lindon]]></dc:creator><pubDate>Mon, 04 May 2026 12:29:46 GMT</pubDate></item><item><title><![CDATA[Reply to Latest version of HISE breaks existing presets.... on Mon, 04 May 2026 12:26:15 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/67">@Lindon</a> yes but please give me some guidance on what to look for. Also if you can dumb it down so I don't have to download gigabytes of samples, would be great.</p>
]]></description><link>https://forum.hise.audio/post/120039</link><guid isPermaLink="true">https://forum.hise.audio/post/120039</guid><dc:creator><![CDATA[Christoph Hart]]></dc:creator><pubDate>Mon, 04 May 2026 12:26:15 GMT</pubDate></item><item><title><![CDATA[Reply to Latest version of HISE breaks existing presets.... on Mon, 04 May 2026 12:25:27 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/1">@Christoph-Hart</a> do you want a copy of my project to test with?</p>
]]></description><link>https://forum.hise.audio/post/120038</link><guid isPermaLink="true">https://forum.hise.audio/post/120038</guid><dc:creator><![CDATA[Lindon]]></dc:creator><pubDate>Mon, 04 May 2026 12:25:27 GMT</pubDate></item><item><title><![CDATA[Reply to Latest version of HISE breaks existing presets.... on Mon, 04 May 2026 12:20:42 GMT]]></title><description><![CDATA[<p dir="auto">The code that sends the macro value as plugin parameter is already in HISE 4.1.0.</p>
<p dir="auto">What changed in that commit is that HISE registers a plugin parameter at index 0 for the UI control (basically what the compiled plugin is doing) so before that value was sent out to nirvana (or the DAW if HISE runs as a plugin), but now it loops back to the first UI component that is defined as plugin parameter.</p>
<pre><code>HISE_MACROS_ARE_PLUGIN_PARAMETERS=1
</code></pre>
<p dir="auto">This solves the problem my registering the 8 macro controls as plugin parameters, so changing the first macro just changes the first plugin parameter (=macro) =&gt; no op.</p>
<p dir="auto">So the proper fix would be:</p>
<p dir="auto">if USE_BACKEND &amp;&amp; HISE_MACROS_ARE_PLUGIN_PARAMETERS==0 =&gt; don't send the macro value as plugin parameter</p>
<p dir="auto">if USE_BACKEND &amp;&amp; HISE_MACROS_ARE_PLUGIN_PARAMETERS==1 =&gt; send it</p>
<p dir="auto">Note that the compiled plugin is completely unaffected by this. All it would break is the behaviour of HISE to send out macro values as plugin parameter without that flag.</p>
]]></description><link>https://forum.hise.audio/post/120036</link><guid isPermaLink="true">https://forum.hise.audio/post/120036</guid><dc:creator><![CDATA[Christoph Hart]]></dc:creator><pubDate>Mon, 04 May 2026 12:20:42 GMT</pubDate></item><item><title><![CDATA[Reply to Latest version of HISE breaks existing presets.... on Mon, 04 May 2026 11:56:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/1">@Christoph-Hart</a> said in <a href="/post/120028">Latest version of HISE breaks existing presets....</a>:</p>
<blockquote>
<p dir="auto">Is this a regression?</p>
</blockquote>
<p dir="auto">Yes it didn't happen in earlier versions. It came in this <a href="https://github.com/christophhart/HISE/commit/a92a701de79edee8bd3ae1268e234a582a6973b2" rel="nofollow ugc">commit</a> I believe.</p>
]]></description><link>https://forum.hise.audio/post/120030</link><guid isPermaLink="true">https://forum.hise.audio/post/120030</guid><dc:creator><![CDATA[David Healey]]></dc:creator><pubDate>Mon, 04 May 2026 11:56:39 GMT</pubDate></item><item><title><![CDATA[Reply to Latest version of HISE breaks existing presets.... on Mon, 04 May 2026 11:54:24 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/12">@David-Healey</a> yes I saw that - the reason for this is that HISE registers all macros as plugin parameters in the backend by default which then loop back to update their value.</p>
<p dir="auto">It should not affect exported plugins though, but it's definitely a weird glitch that I'll look into. Is this a regression? The backend macro -&gt; plugin parameter connection is ancient (about as old as HISE).</p>
]]></description><link>https://forum.hise.audio/post/120028</link><guid isPermaLink="true">https://forum.hise.audio/post/120028</guid><dc:creator><![CDATA[Christoph Hart]]></dc:creator><pubDate>Mon, 04 May 2026 11:54:24 GMT</pubDate></item><item><title><![CDATA[Reply to Latest version of HISE breaks existing presets.... on Mon, 04 May 2026 11:48:09 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/1">@Christoph-Hart</a> I think this one <a href="https://forum.hise.audio/topic/14165/latest-version-of-hise-breaks-existing-presets/26?_=1777890110567">https://forum.hise.audio/topic/14165/latest-version-of-hise-breaks-existing-presets/26?_=1777890110567</a></p>
]]></description><link>https://forum.hise.audio/post/120026</link><guid isPermaLink="true">https://forum.hise.audio/post/120026</guid><dc:creator><![CDATA[David Healey]]></dc:creator><pubDate>Mon, 04 May 2026 11:48:09 GMT</pubDate></item><item><title><![CDATA[Reply to Latest version of HISE breaks existing presets.... on Mon, 04 May 2026 11:44:21 GMT]]></title><description><![CDATA[<p dir="auto">Guys I really need more to work with. Just stating "it breaks older presets" or "it seems to be upsetting HISE" gives me absolutely no idea what to look out for. I get it has something to do with macro modulation and plugin parameters, but it's a shot in the dark until I get more context.</p>
<ul>
<li>what does break</li>
<li>ideally a snippet, if not a DETAILED list to reproduce the setup</li>
<li>what does break mean? crash? values not restored? weird couplings between UI elements?</li>
</ul>
<p dir="auto">Ensuring backwards compatibility is the number one priority of all bug reports, so I'm on it as soon as I get enough info.</p>
]]></description><link>https://forum.hise.audio/post/120024</link><guid isPermaLink="true">https://forum.hise.audio/post/120024</guid><dc:creator><![CDATA[Christoph Hart]]></dc:creator><pubDate>Mon, 04 May 2026 11:44:21 GMT</pubDate></item><item><title><![CDATA[Reply to Latest version of HISE breaks existing presets.... on Mon, 04 May 2026 10:16:30 GMT]]></title><description><![CDATA[<p dir="auto">Honestly, I experienced the same problem. Presets and saved settings from older projects don't load in the DAW Project with plugins compiled using the current HISE.</p>
<p dir="auto">I think HISE's backward compatibility has been broken since this new modulation system was added. I have to stay on the January 2025 commit for now.</p>
]]></description><link>https://forum.hise.audio/post/120018</link><guid isPermaLink="true">https://forum.hise.audio/post/120018</guid><dc:creator><![CDATA[JulesV]]></dc:creator><pubDate>Mon, 04 May 2026 10:16:30 GMT</pubDate></item><item><title><![CDATA[Reply to Latest version of HISE breaks existing presets.... on Mon, 04 May 2026 08:20:27 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/67">@Lindon</a> Ok well all that new documentation looks really lovely, but until this is fixed I cant move to any recent version of HISE to avail myself of all its Claude based wonder.... I have to stay on a pre-april 2025 version of HISE to support one of the major projects in the catalogue.</p>
<p dir="auto">What can I do to help get this kick started?</p>
]]></description><link>https://forum.hise.audio/post/120017</link><guid isPermaLink="true">https://forum.hise.audio/post/120017</guid><dc:creator><![CDATA[Lindon]]></dc:creator><pubDate>Mon, 04 May 2026 08:20:27 GMT</pubDate></item><item><title><![CDATA[Reply to Latest version of HISE breaks existing presets.... on Mon, 13 Apr 2026 15:09:54 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/1">@Christoph-Hart</a> said in <a href="/post/115446">Latest version of HISE breaks existing presets....</a>:</p>
<blockquote>
<p dir="auto">Hmm, it appears that there is a pretty big matrix of all combinations of macros / matrix modulation / plugin parameters to be tested manually.</p>
<p dir="auto">The commit in question was perhaps the worst thing I did in 2025 but there's no way back now so we have to somehow find a method to fix all cases and add some regression checks going forward.</p>
</blockquote>
<p dir="auto">So still looking for this to get fixed, any chance?</p>
]]></description><link>https://forum.hise.audio/post/119439</link><guid isPermaLink="true">https://forum.hise.audio/post/119439</guid><dc:creator><![CDATA[Lindon]]></dc:creator><pubDate>Mon, 13 Apr 2026 15:09:54 GMT</pubDate></item><item><title><![CDATA[Reply to Latest version of HISE breaks existing presets.... on Wed, 04 Feb 2026 11:16:33 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/12">@David-Healey</a> bummer...</p>
]]></description><link>https://forum.hise.audio/post/117403</link><guid isPermaLink="true">https://forum.hise.audio/post/117403</guid><dc:creator><![CDATA[Lindon]]></dc:creator><pubDate>Wed, 04 Feb 2026 11:16:33 GMT</pubDate></item><item><title><![CDATA[Reply to Latest version of HISE breaks existing presets.... on Wed, 04 Feb 2026 11:03:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/67">@Lindon</a> Not fixed yet as far as I can tell.</p>
]]></description><link>https://forum.hise.audio/post/117401</link><guid isPermaLink="true">https://forum.hise.audio/post/117401</guid><dc:creator><![CDATA[David Healey]]></dc:creator><pubDate>Wed, 04 Feb 2026 11:03:00 GMT</pubDate></item><item><title><![CDATA[Reply to Latest version of HISE breaks existing presets.... on Wed, 04 Feb 2026 09:24:42 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/1">@Christoph-Hart</a> So how are we going? Is this fixed by any chance? Im stuck on an April 2025 release until it is....</p>
]]></description><link>https://forum.hise.audio/post/117398</link><guid isPermaLink="true">https://forum.hise.audio/post/117398</guid><dc:creator><![CDATA[Lindon]]></dc:creator><pubDate>Wed, 04 Feb 2026 09:24:42 GMT</pubDate></item><item><title><![CDATA[Reply to Latest version of HISE breaks existing presets.... on Wed, 07 Jan 2026 12:37:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/1">@Christoph-Hart</a> wel as I say I can send you my project to use for testing - and if not then I can surely test using it...</p>
]]></description><link>https://forum.hise.audio/post/115522</link><guid isPermaLink="true">https://forum.hise.audio/post/115522</guid><dc:creator><![CDATA[Lindon]]></dc:creator><pubDate>Wed, 07 Jan 2026 12:37:03 GMT</pubDate></item><item><title><![CDATA[Reply to Latest version of HISE breaks existing presets.... on Tue, 06 Jan 2026 18:55:51 GMT]]></title><description><![CDATA[<p dir="auto">Hmm, it appears that there is a pretty big matrix of all combinations of macros / matrix modulation / plugin parameters to be tested manually.</p>
<p dir="auto">The commit in question was perhaps the worst thing I did in 2025 but there's no way back now so we have to somehow find a method to fix all cases and add some regression checks going forward.</p>
]]></description><link>https://forum.hise.audio/post/115446</link><guid isPermaLink="true">https://forum.hise.audio/post/115446</guid><dc:creator><![CDATA[Christoph Hart]]></dc:creator><pubDate>Tue, 06 Jan 2026 18:55:51 GMT</pubDate></item><item><title><![CDATA[Reply to Latest version of HISE breaks existing presets.... on Tue, 06 Jan 2026 12:11:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/12">@David-Healey</a> said in <a href="/post/115410">Latest version of HISE breaks existing presets....</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.hise.audio/uid/67">@Lindon</a> Yeah I'm not using macro modulators in mine. I'm just using the macro knob's as a way to make one knob on the ui control multiple modulator parameters without me having to script it.</p>
</blockquote>
<p dir="auto">so pretty much the exact opposite of what I'm doing then....that should be enough of a set of test cases to test if any fix was completed.</p>
]]></description><link>https://forum.hise.audio/post/115411</link><guid isPermaLink="true">https://forum.hise.audio/post/115411</guid><dc:creator><![CDATA[Lindon]]></dc:creator><pubDate>Tue, 06 Jan 2026 12:11:44 GMT</pubDate></item></channel></rss>