<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>DistroTracker.com - News</title>
		<description>Distro Tracker :: Find out latest stable versions of GNU/Linux &amp; BSD distributions.</description>
		<link>https://distrotracker.com/</link>
		<atom:link href="https://distrotracker.com/news.xml" rel="self" type="application/rss+xml"/>
		<pubDate>Tue, 16 Jun 2026 12:34:36 +0200</pubDate>
		<lastBuildDate>Tue, 16 Jun 2026 12:34:36 +0200</lastBuildDate>
		<generator>Jekyll v4.4.1</generator>
		
		<item>
			<title>Distro Tracker PWA</title>
			<description>&lt;p&gt;Continuing the &lt;b&gt;development of tools using Distro Tracker data&lt;/b&gt;, I am presenting today a &lt;b&gt;PWA version&lt;/b&gt;.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/assets/img/pwa_2.png&quot; alt=&quot;pwa&quot; class=&quot;img-fluid border border-primary&quot; /&gt;&lt;/p&gt;

&lt;p&gt;The PWA technology, now almost 10 years old, has a rather uncertain future: viewed unfavorably by those promoting their app stores or overlooked by certain browsers. &lt;strong&gt;Distro Tracker PWA is mainly designed to allow you to access data offline.&lt;/strong&gt;&lt;/p&gt;

&lt;h3 id=&quot;installation&quot;&gt;Installation.&lt;/h3&gt;

&lt;p&gt;&lt;img src=&quot;/assets/img/pwa_1.png&quot; alt=&quot;pwa&quot; class=&quot;img-fluid border border-primary&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Simply go to the &lt;strong&gt;&lt;a href=&quot;/en/datas.html&quot;&gt;Webdatas&lt;/a&gt;&lt;/strong&gt; page, and installation will be suggested in compatible browsers. You will then find a “Distro Tracker” icon in your app list.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/assets/img/pwa_3.png&quot; alt=&quot;pwa&quot; class=&quot;img-fluid border border-primary&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Distro Tracker PWA is therefore a new way to monitor GNU/Linux &amp;amp; BSD distributions, using data directly from Distro Tracker.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Happy tracking !&lt;/strong&gt;&lt;/p&gt;
</description>
			<pubDate>Mon, 11 Nov 2024 09:00:00 +0100</pubDate>
			<link>https://distrotracker.com/news/2024/11/11/distrotracker-pwa.html</link>
			<guid isPermaLink="true">https://distrotracker.com/news/2024/11/11/distrotracker-pwa.html</guid>
			
			
			<category>news</category>
			
		</item>
		
		<item>
			<title>Distro Widget, to always have Distro Tracker close at hand !</title>
			<description>&lt;p&gt;Today, I am introducing a new simple, user-friendly, and practical tool: &lt;strong&gt;Distro Widget&lt;/strong&gt; !&lt;/p&gt;

&lt;p&gt;It is a &lt;strong&gt;special configuration for &lt;a href=&quot;https://conky.cc/documents/about&quot;&gt;Conky&lt;/a&gt;&lt;/strong&gt;, the system monitor that displays in the background on the desktop, compatible with GNU/Linux &amp;amp; BSD systems.&lt;/p&gt;

&lt;p&gt;What’s special about it ? &lt;strong&gt;It integrates data from Distro Tracker &amp;amp; Distro Reporter !&lt;/strong&gt; Yes, for the first time, I’m developing a “desktop” tool linked to Distro Tracker.&lt;/p&gt;

&lt;p&gt;After a &lt;strong&gt;simple installation&lt;/strong&gt;, &lt;strong&gt;distro-get&lt;/strong&gt;, a small independent and lightweight utility, is added to the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;/home/user/.config/conky/&lt;/code&gt; directory to provide two features: &lt;strong&gt;downloading data&lt;/strong&gt; (by default, the data updated every morning on my Gitlab in JSON format), and &lt;strong&gt;reading this data&lt;/strong&gt;. The Conky configuration itself is located in the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;conky.conf&lt;/code&gt; file, alongside a header image for &lt;a href=&quot;https://conky.cc/documents/about&quot;&gt;Conky&lt;/a&gt;. A &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;conky.desktop&lt;/code&gt; file is also created in the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;/home/user/autostart/&lt;/code&gt; directory.&lt;/p&gt;

&lt;p&gt;For now, in addition to some system information and statistics, it randomly displays a distribution along with the date and version number of its latest release, as well as the list of distributions that have had changes in the last downloaded report.&lt;/p&gt;

&lt;h3 id=&quot;installation&quot;&gt;Installation.&lt;/h3&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;wget https://gitlab.com/fredericpetit/self/-/raw/main/org/bash/distro-widget/dev/standalone/distro-widget.sh --no-check-certificate &amp;amp;&amp;amp; chmod +x distro-widget.sh &amp;amp;&amp;amp; ./distro-widget.sh --username &quot;$USER&quot;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h3 id=&quot;configuration&quot;&gt;Configuration.&lt;/h3&gt;

&lt;p&gt;Daily download of remote data, for example via crontab, with the default JSON format :&lt;/p&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;0 13 * * * /home/test/.config/conky/distro-get.sh --action download --type tracker
0 13 * * * /home/test/.config/conky/distro-get.sh --action download --type reporter
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h3 id=&quot;example&quot;&gt;Example.&lt;/h3&gt;

&lt;p&gt;&lt;img src=&quot;https://distrotracker.com/assets/img/distro-widget.png&quot; alt=&quot;distro-widget example&quot; class=&quot;img-fluid&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Feel free to share your feedback. A Debian &amp;amp; Snapcraft package will be created soon.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Happy tracking !&lt;/strong&gt;&lt;/p&gt;
</description>
			<pubDate>Sun, 20 Oct 2024 10:00:00 +0200</pubDate>
			<link>https://distrotracker.com/news/2024/10/20/distro-widget.html</link>
			<guid isPermaLink="true">https://distrotracker.com/news/2024/10/20/distro-widget.html</guid>
			
			
			<category>news</category>
			
		</item>
		
		<item>
			<title>Distro Reporter &amp; Distro Publisher are joining the family !</title>
			<description>&lt;p&gt;Distro Tracker today welcomes two little brothers: &lt;strong&gt;Distro Reporter&lt;/strong&gt; &amp;amp; &lt;strong&gt;Distro Publisher&lt;/strong&gt; !&lt;/p&gt;

&lt;p&gt;But first of all, &lt;strong&gt;let me thank you for your numerous feedback&lt;/strong&gt;, and thanks to you, Distro Tracker has surpassed 50 weekly users according to official Snapcraft statistics. Thank you all !&lt;/p&gt;

&lt;p&gt;In Distro Tracker, the feature for managing differences between two sets of collected data was &lt;strong&gt;previously included directly within Distro Tracker&lt;/strong&gt;, but this limited the possibilities. Now, &lt;strong&gt;you are free to program the comparison between data sets as you wish&lt;/strong&gt;, and generate reports in JSON or YAML formats !&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://distrotracker.com/assets/img/distro-family.png&quot; alt=&quot;distro-family&quot; class=&quot;img-fluid&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Distro Reporter&lt;/strong&gt; is now available in its &lt;strong&gt;first stable version 1.0.0&lt;/strong&gt;, which for me means the addition of all initially planned features. The script is available in &lt;strong&gt;Bash source&lt;/strong&gt;, &lt;strong&gt;Bash binary&lt;/strong&gt;, &lt;strong&gt;Debian package&lt;/strong&gt;, and &lt;strong&gt;Snap package&lt;/strong&gt; formats. You can find everything on my Gitlab &lt;strong&gt;&lt;a href=&quot;https://gitlab.com/fredericpetit/self/-/tree/main/org/bash/distro-reporter/prod/&quot;&gt;here&lt;/a&gt;&lt;/strong&gt;. This feature will soon be removed from Distro Tracker.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Distro Publisher&lt;/strong&gt; is also in its &lt;strong&gt;first stable version 1.0.0&lt;/strong&gt; ! This tool allows you to publish the change reports generated by &lt;strong&gt;Distro Reporter&lt;/strong&gt; on various platforms or social networks. Thus, the loop starting with data collection, followed by change analysis, and finally publication on different platforms is completed.&lt;/p&gt;

&lt;p&gt;I also take this opportunity to announce the &lt;strong&gt;launch of &lt;a href=&quot;https://www.facebook.com/distrotracker&quot;&gt;Distro Tracker’s Facebook page&lt;/a&gt;&lt;/strong&gt;, with automatic publication of generated reports and news posts from the site. Feel free to follow and like the page !&lt;/p&gt;

&lt;p&gt;Other tools dedicated to managing downloadable content will be developed later. Check out the &lt;strong&gt;&lt;a href=&quot;https://distrotracker.com/roadmap.html&quot;&gt;Roadmap&lt;/a&gt;&lt;/strong&gt; page to discover upcoming planned features.&lt;/p&gt;

&lt;p&gt;And if you haven’t already: join &lt;strong&gt;the global community of Distro Tracker users&lt;/strong&gt; !&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://distrotracker.com/assets/img/map.png&quot; alt=&quot;distro-tracker map&quot; class=&quot;img-fluid&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Happy tracking !&lt;/strong&gt;&lt;/p&gt;
</description>
			<pubDate>Sun, 13 Oct 2024 10:00:00 +0200</pubDate>
			<link>https://distrotracker.com/news/2024/10/13/distro-family-welcome-reporter-publisher.html</link>
			<guid isPermaLink="true">https://distrotracker.com/news/2024/10/13/distro-family-welcome-reporter-publisher.html</guid>
			
			
			<category>news</category>
			
		</item>
		
		<item>
			<title>Distro Tracker 1.1.1 - bugfix release</title>
			<description>&lt;p&gt;Distro Tracker is now in 1.1.1, a bugfix release for the following issues :&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Fixed &lt;strong&gt;dependency ‘yq’ (from Mike Farah) in Snap package&lt;/strong&gt;.&lt;/li&gt;
  &lt;li&gt;Fixed the regular expression associated with &lt;strong&gt;Linux Kernel&lt;/strong&gt; information.&lt;/li&gt;
  &lt;li&gt;Added &lt;strong&gt;additional protection&lt;/strong&gt; that invalidates any result with two entities in the response.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Update your scripts, Debian and Snap packages to take advantage of these fixes.&lt;/p&gt;

&lt;p&gt;Stay tuned because &lt;strong&gt;in a few days &lt;em&gt;Distro Reporter&lt;/em&gt; will be released in its first stable version 1.0.0&lt;/strong&gt;, a “little brother” for &lt;em&gt;Distro Tracker&lt;/em&gt;, in order to independently analyze and manage the results output by &lt;em&gt;DT&lt;/em&gt;. The ‘–report’ option will then be removed and replaced with this brand new family member.&lt;/p&gt;

&lt;p&gt;Join &lt;strong&gt;the global community of Distro Tracker users&lt;/strong&gt; !&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://distrotracker.com/assets/img/map.png&quot; alt=&quot;distro-tracker map&quot; class=&quot;img-fluid&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Happy tracking !&lt;/strong&gt;&lt;/p&gt;
</description>
			<pubDate>Tue, 01 Oct 2024 17:07:00 +0200</pubDate>
			<link>https://distrotracker.com/news/2024/10/01/distrotracker-new-release.html</link>
			<guid isPermaLink="true">https://distrotracker.com/news/2024/10/01/distrotracker-new-release.html</guid>
			
			
			<category>news</category>
			
		</item>
		
		<item>
			<title>New release Distro Tracker 1.1.0</title>
			<description>&lt;p&gt;Distro Tracker evolves and moves to version 1.1.0 !&lt;/p&gt;

&lt;p&gt;Here are the new features of this version, which adds several functionalities and fixes some bugs :&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Increased to &lt;strong&gt;25 distributions&lt;/strong&gt; with the following new entries : Linux (Kernel), Nextcloud (Server) &amp;amp; Rescuezilla.&lt;/li&gt;
  &lt;li&gt;New &lt;strong&gt;documentation&lt;/strong&gt;, with a man file following the standards.&lt;/li&gt;
  &lt;li&gt;New &lt;strong&gt;NOK filter&lt;/strong&gt; for OPNsense, and new &lt;strong&gt;URLs&lt;/strong&gt; for openSUSE &amp;amp; Mageia.&lt;/li&gt;
  &lt;li&gt;Added &lt;strong&gt;YAML format&lt;/strong&gt; as output, along with the addition of the ‘–format’ option to choose between CSV, JSON, or YAML - by default, only CSV is output.&lt;/li&gt;
  &lt;li&gt;The default value for the ‘–length’ option is now ‘3’.&lt;/li&gt;
  &lt;li&gt;All options are lowercase.&lt;/li&gt;
  &lt;li&gt;Revision dates in JSON &amp;amp; YAML outputs, and in the report, are in &lt;strong&gt;standard ISO 8601 format&lt;/strong&gt;.&lt;/li&gt;
  &lt;li&gt;Fixed execution time calculation.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These are not the only new features for Distro Tracker, as changes have also been made to the website :&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Highlight of the latest news and the latest alert report on the homepage.&lt;/li&gt;
  &lt;li&gt;Added a “Roadmap” page to learn more about the development of &lt;em&gt;distro-tracker&lt;/em&gt; and its utilities.&lt;/li&gt;
  &lt;li&gt;The site is now trilingual with the addition of a Spanish translation !&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And finally, the addition of the &lt;strong&gt;.deb format (Debian package)&lt;/strong&gt;, which complements the existing distribution formats (Bash source, Bash binary &amp;amp; Snapcraft package).&lt;/p&gt;

&lt;p&gt;Join &lt;strong&gt;the global community of Distro Tracker users&lt;/strong&gt; !&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://distrotracker.com/assets/img/map.png&quot; alt=&quot;distro-tracker map&quot; class=&quot;img-fluid&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Happy tracking !&lt;/strong&gt;&lt;/p&gt;
</description>
			<pubDate>Fri, 20 Sep 2024 17:07:00 +0200</pubDate>
			<link>https://distrotracker.com/news/2024/09/20/distrotracker-new-release.html</link>
			<guid isPermaLink="true">https://distrotracker.com/news/2024/09/20/distrotracker-new-release.html</guid>
			
			
			<category>news</category>
			
		</item>
		
		<item>
			<title>One week after Distro Tracker 1.0 release : thank you !</title>
			<description>&lt;p&gt;Thank you for &lt;strong&gt;your enthusiasm&lt;/strong&gt; and &lt;strong&gt;your feedback&lt;/strong&gt; regarding the release of Distro Tracker 1.0, your comments are very important in order to improve the program.&lt;/p&gt;

&lt;p&gt;As seen in the map below, Distro Tracker is now used in several different countries.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://distrotracker.com/assets/img/map.png&quot; alt=&quot;distro-tracker map&quot; class=&quot;img-fluid&quot; /&gt;&lt;/p&gt;

&lt;p&gt;A “bugfix” version, containing the responses to your observations, is currently being produced, and it will be published within a few days.&lt;/p&gt;

&lt;p&gt;First of all there will be &lt;strong&gt;new documentation&lt;/strong&gt;, following the standards in this area as closely as possible, including the addition of a proper man page. There will also be &lt;strong&gt;the addition of the YAML format&lt;/strong&gt; as well as the possibility of downloading data generated by distrotracker.com, instead of manual tracking.&lt;/p&gt;

&lt;p&gt;I would then turn to creating a &lt;strong&gt;Flatpak package&lt;/strong&gt; and a classic &lt;strong&gt;.deb package&lt;/strong&gt; to complete the list of distribution methods !&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Happy tracking !&lt;/strong&gt;&lt;/p&gt;
</description>
			<pubDate>Tue, 23 Jul 2024 17:07:00 +0200</pubDate>
			<link>https://distrotracker.com/news/2024/07/23/distrotracker-one-week-thank-you.html</link>
			<guid isPermaLink="true">https://distrotracker.com/news/2024/07/23/distrotracker-one-week-thank-you.html</guid>
			
			
			<category>news</category>
			
		</item>
		
		<item>
			<title>World - IT outage : issue at Crowdstrike</title>
			<description>&lt;p&gt;#crowdstrike #windows - Good news ! The 22 GNU/Linux &amp;amp; BSD distributions listed in the Distro Tracker monitoring tool are not affected by this issue !&lt;/p&gt;

&lt;p&gt;IT professionals are directly concerned with &lt;strong&gt;issues of sovereignty, performance, and efficiency&lt;/strong&gt;. Tools that address these concerns are always welcome.&lt;/p&gt;

&lt;p&gt;Join &lt;strong&gt;the global community of Distro Tracker users&lt;/strong&gt;, the only open-source script that provides the latest stable versions of 22 GNU/Linux &amp;amp; BSD distributions, along with their download links, in multiple output formats.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://distrotracker.com/assets/img/map.png&quot; alt=&quot;distro-tracker map&quot; class=&quot;img-fluid&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Happy tracking !&lt;/strong&gt;&lt;/p&gt;
</description>
			<pubDate>Fri, 19 Jul 2024 17:07:00 +0200</pubDate>
			<link>https://distrotracker.com/news/2024/07/19/world-crowdstrike.html</link>
			<guid isPermaLink="true">https://distrotracker.com/news/2024/07/19/world-crowdstrike.html</guid>
			
			
			<category>news</category>
			
		</item>
		
		<item>
			<title>Tip : --output option for data naming</title>
			<description>&lt;h1 id=&quot;using-the-output-option&quot;&gt;Using the –output option.&lt;/h1&gt;

&lt;p&gt;By using this option, you will get a file name of the type &lt;em&gt;myfile.current.csv&lt;/em&gt;, but if you do not use it, you will get a file name of the type &lt;em&gt;DT-date.csv&lt;/em&gt;.&lt;/p&gt;

&lt;h1 id=&quot;option-mechanism&quot;&gt;Option mechanism.&lt;/h1&gt;

&lt;p&gt;Depending on the chosen output file name, in “custom” mode, the script will create a maximum of two files: &lt;em&gt;current&lt;/em&gt; and &lt;em&gt;archive&lt;/em&gt;. In “date” mode, the script will create a new file each time the script is executed.&lt;/p&gt;

&lt;p&gt;For use this option, set a file path without extension.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Happy tracking !&lt;/strong&gt;&lt;/p&gt;
</description>
			<pubDate>Wed, 17 Jul 2024 19:07:00 +0200</pubDate>
			<link>https://distrotracker.com/news/2024/07/17/tip-output.html</link>
			<guid isPermaLink="true">https://distrotracker.com/news/2024/07/17/tip-output.html</guid>
			
			
			<category>news</category>
			
		</item>
		
		<item>
			<title>Tip : --backup option for backup security</title>
			<description>&lt;h1 id=&quot;use-the-backup-option&quot;&gt;Use the –backup option.&lt;/h1&gt;

&lt;p&gt;By adding the &lt;em&gt;–backup&lt;/em&gt; (or &lt;em&gt;-b&lt;/em&gt; in simplified notation) option to the command, you protect yourself against an unexpected event independent of Distro Tracker : the inaccessibility of the website of one of the distributions from which you wanted to retrieve information.&lt;/p&gt;

&lt;h1 id=&quot;option-mechanism&quot;&gt;Option mechanism.&lt;/h1&gt;

&lt;p&gt;Depending on the chosen output file name, either customized or date-based, the script will test and find the most recently preserved old data and restore it in your new output file.&lt;/p&gt;

&lt;h1 id=&quot;data-processing&quot;&gt;Data processing.&lt;/h1&gt;

&lt;p&gt;Due to the &lt;em&gt;source&lt;/em&gt; field present in all output file formats, the script notifies you whether the data is new (&lt;em&gt;current&lt;/em&gt;) or from previous data (&lt;em&gt;archive&lt;/em&gt;).&lt;/p&gt;

&lt;p&gt;This way, you can always and under all circumstances create your data file !&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Happy tracking !&lt;/strong&gt;&lt;/p&gt;
</description>
			<pubDate>Wed, 17 Jul 2024 18:07:00 +0200</pubDate>
			<link>https://distrotracker.com/news/2024/07/17/tip-backup-security.html</link>
			<guid isPermaLink="true">https://distrotracker.com/news/2024/07/17/tip-backup-security.html</guid>
			
			
			<category>news</category>
			
		</item>
		
		<item>
			<title>Distro Tracker 1.0 release official announcement</title>
			<description>&lt;h1 id=&quot;distro-tracker-10-is-here-&quot;&gt;Distro Tracker 1.0 is here !&lt;/h1&gt;

&lt;p&gt;After several weeks of development and a rebranding, &lt;strong&gt;here is Distro Tracker version 1.0&lt;/strong&gt;, the monitoring tool for find out latest stable versions of GNU/Linux &amp;amp; BSD distributions, along with their download links.&lt;/p&gt;

&lt;p&gt;First and foremost, and the most visible change, is &lt;strong&gt;the creation of a dedicated website : https://distrotracker.com&lt;/strong&gt;. This bilingual site includes an HTML rendering page of the collected data, a feed of changes to this data, as well as articles on the detailed operation of the program.&lt;/p&gt;

&lt;p&gt;You will find the original Bash script there, but now also available &lt;strong&gt;in multiple distribution modes&lt;/strong&gt; : a Snap package, a Flatpak package, and a PowerShell module !&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Here are the new features&lt;/strong&gt; :&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Expansion to &lt;strong&gt;22 GNU/Linux&lt;/strong&gt; with the following new additions : Arch, Mageia, OPNsense, Parrot, Proxmox, Slackware, &amp;amp; XCP-ng.&lt;/li&gt;
  &lt;li&gt;General mechanism for retrieving version numbers using the &lt;strong&gt;&lt;em&gt;-LENGTH&lt;/em&gt; parameter&lt;/strong&gt; has been revised for more logic : not just X tested versions are returned, but now X valid versions.&lt;/li&gt;
  &lt;li&gt;Addition of the &lt;strong&gt;&lt;em&gt;-FILE&lt;/em&gt; parameter&lt;/strong&gt; to choose tracking URLs via a local or remote JSON file.&lt;/li&gt;
  &lt;li&gt;Addition of the &lt;strong&gt;&lt;em&gt;-REPORT&lt;/em&gt; parameter&lt;/strong&gt; to generate a JSON report to notify of any changes in the latest release of each distribution.&lt;/li&gt;
  &lt;li&gt;Activation of the &lt;strong&gt;&lt;em&gt;-ENV&lt;/em&gt; parameter&lt;/strong&gt;.&lt;/li&gt;
  &lt;li&gt;Renaming of the &lt;em&gt;-DISTRIB&lt;/em&gt; parameter to &lt;em&gt;-DISTRO&lt;/em&gt;, &lt;em&gt;-DEPTH&lt;/em&gt; to &lt;em&gt;-LENGTH&lt;/em&gt;, &lt;em&gt;-DATASECURITY&lt;/em&gt; to &lt;em&gt;-BACKUP&lt;/em&gt;.&lt;/li&gt;
  &lt;li&gt;Addition of one-letter shortcuts for each parameter and option.&lt;/li&gt;
  &lt;li&gt;Addition of the &lt;strong&gt;Compare_NokFilter function&lt;/strong&gt; to better manage and clarify versions tagged “NOK” (beta, RC, etc.) : all pingable versions are retrieved, with a final filter on stable versions.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Happy tracking !&lt;/strong&gt;&lt;/p&gt;
</description>
			<pubDate>Wed, 17 Jul 2024 17:07:00 +0200</pubDate>
			<link>https://distrotracker.com/news/2024/07/17/distrotracker-announcement.html</link>
			<guid isPermaLink="true">https://distrotracker.com/news/2024/07/17/distrotracker-announcement.html</guid>
			
			
			<category>news</category>
			
		</item>
		
	</channel>
</rss>