<?xml version="1.0" encoding="UTF-8" standalone="no"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" version="2.0">

<channel>
	<title>UbuntuHandbook</title>
	<atom:link href="https://ubuntuhandbook.org/index.php/feed/" rel="self" type="application/rss+xml"/>
	<link>https://ubuntuhandbook.org</link>
	<description>News, Tutorials, Howtos for Ubuntu Linux</description>
	<lastBuildDate>Tue, 25 Aug 2026 14:14:42 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.4</generator>
	<itunes:explicit>no</itunes:explicit><itunes:subtitle>News, Tutorials, Howtos for Ubuntu Linux</itunes:subtitle><item>
		<title>Go Language 1.27 Released with Generic Methods, JSON v2, SIMD Support</title>
		<link>https://ubuntuhandbook.org/index.php/2026/08/go-language-1-27-released-with-generic-methods-json-v2-simd-support/</link>
					<comments>https://ubuntuhandbook.org/index.php/2026/08/go-language-1-27-released-with-generic-methods-json-v2-simd-support/#respond</comments>
		
		<dc:creator><![CDATA[Ji m]]></dc:creator>
		<pubDate>Tue, 25 Aug 2026 14:14:42 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<category><![CDATA[golang]]></category>
		<category><![CDATA[programming]]></category>
		<guid isPermaLink="false">https://ubuntuhandbook.org/?p=51934</guid>

					<description><![CDATA[Go language (aka Golang) released new major 1.27 version in last week, six months after the last 1.26. The new version of this popular programming language added support generic methods, which can now declare their own type parameters, making generics more flexible. As an example, Rand now supports a generic method N, matching the behavior [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img fetchpriority="high" decoding="async" class="alignleft size-thumbnail wp-image-45494" src="https://ubuntuhandbook.org/wp-content/uploads/2024/02/go-logo-250x250.webp" alt="" width="250" height="250" srcset="https://ubuntuhandbook.org/wp-content/uploads/2024/02/go-logo-250x250.webp 250w, https://ubuntuhandbook.org/wp-content/uploads/2024/02/go-logo-300x300.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2024/02/go-logo-700x700.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2024/02/go-logo-768x768.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2024/02/go-logo.webp 1200w" sizes="(max-width: 250px) 100vw, 250px" /></p>
<p>Go language (aka Golang) released new major 1.27 version in last week, six months after the last 1.26.</p>
<p>The new version of this popular programming language added support <b>generic methods</b>, which can now declare their own type parameters, making generics more flexible.</p>
<p><span id="more-51934"></span></p>
<p>As an example, Rand now supports a generic method N, matching the behavior of the top-level N function.</p>
<pre>func (r *Rand) N[Int intType](n Int) Int</pre>
<p>N returns a pseudo-random number in the half-open interval [0,n). The type parameter Int can be any integer type. It panics if n &lt;= 0.</p>
<p>The new 1.27 version also expanded the standard library with many new packages. </p>
<p>It now has a new <code>encoding/json/v2</code> package with stricter defaults and significantly faster unmarshaling. While, the existing <code>encoding/json</code> API remains compatible and is now backed by v2 internally.</p>
<p>There&#8217;s also new <code>crypto/mldsa</code> package that implements ML-DSA (FIPS 204), with ML-DSA support added to X.509 and TLS 1.3. TLS also adds ML-KEM-1024.</p>
<p>It as well added new <code>uuid</code> package for generating and parsing UUIDs, and, experimental <code>simd</code> package plus expanded <code>simd/archsimd</code> support for AMD64, ARM64 NEON, and WebAssembly.</p>
<p>Go 1.27 also features many toolchain updates. </p>
<p>Compiler tools now support <code>@file</code> response files, compatible with GCC&#8217;s format. <code>go test</code> runs the <code>stdversion</code> vet check by default, helping detect use of APIs newer than the module&#8217;s declared Go version. And, <code>go doc</code> gains <code>package@version</code> and executable-example support.</p>
<p>For macOS, Go 1.27 now requires macOS 13 Ventura or newer. While, the big-endian 64-bit PowerPC port in Linux now uses the ELFv2 ABI, with cgo, PIE, and external linking supported.</p>
<p>Other changes include:</p>
<ul>
<li>Specialized allocation routines can reduce the cost of some small allocations by up to 30%.</li>
<li><code>goroutineleak</code> is now a generally available.</li>
<li><code>go tool trace -http=:port</code> now listens on localhost only by default.</li>
<li>Direct fetching from Bazaar repositories is removed.</li>
<li><code>time</code> channels now always synchronous/unbuffered.</li>
<li>The unicode package support updated from v15 to 17.</li>
</ul>
<p>For more about Go 1.27, see the official <a href="https://go.dev/doc/go1.27" target="_blank">release note</a>.</p>
<h3>How to Install Golang 1.27</h3>
<p>The packages for Linux, macOS, and Windows, as well as the source tarball is available to download in go website via the link below:</p>
<div class="wp-block-buttons aligncenter">
<div class="wp-block-button is-style-fill"><a class="wp-block-button__link has-vivid-cyan-blue-to-vivid-purple-gradient-background has-text-color has-background" href="https://go.dev/dl/" target="_blank" rel="noreferrer noopener">Download Go</a></div>
</div>
<p>For Linux, select download the tarball for your CPU architecture type, then extract. For beginners, see this <a href="https://ubuntuhandbook.org/index.php/2024/02/how-to-install-go-golang-1-22-in-ubuntu-22-04/" target="_blank">step by step guide</a> for how to set up the environment variables.</p>]]></content:encoded>
					
					<wfw:commentRss>https://ubuntuhandbook.org/index.php/2026/08/go-language-1-27-released-with-generic-methods-json-v2-simd-support/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>iDescriptor Lets You Manage &amp; Interact with iPhone/iPad in Linux</title>
		<link>https://ubuntuhandbook.org/index.php/2026/08/idescriptor-lets-you-manage-interact-with-iphone-ipad-in-linux/</link>
					<comments>https://ubuntuhandbook.org/index.php/2026/08/idescriptor-lets-you-manage-interact-with-iphone-ipad-in-linux/#respond</comments>
		
		<dc:creator><![CDATA[Ji m]]></dc:creator>
		<pubDate>Mon, 24 Aug 2026 13:47:23 +0000</pubDate>
				<category><![CDATA[App Review]]></category>
		<category><![CDATA[apple]]></category>
		<guid isPermaLink="false">https://ubuntuhandbook.org/?p=51919</guid>

					<description><![CDATA[Looking a tool to manage your iPhone or iPad in PC or laptop? Try the free open-source iDescriptor app that works in Linux, Windows, and macOS. It&#8217;s a Rust written and Qt-based application that allows to manage and interact with your iPhone, iPad, or iPod through either USB or Wi-Fi. With it, you can quickly [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img decoding="async" class="alignleft size-thumbnail wp-image-51920" src="https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescriptor-icon-250x250.webp" alt="" width="250" height="250" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescriptor-icon-250x250.webp 250w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescriptor-icon-300x300.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescriptor-icon-700x700.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescriptor-icon-768x768.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescriptor-icon.webp 1200w" sizes="(max-width: 250px) 100vw, 250px" /></p>
<p>Looking a tool to manage your iPhone or iPad in PC or laptop? Try the free open-source iDescriptor app that works in Linux, Windows, and macOS.</p>
<p>It&#8217;s a Rust written and Qt-based application that allows to manage and interact with your iPhone, iPad, or iPod through either USB or Wi-Fi.</p>
<p><span id="more-51919"></span></p>
<p>With it, you can quickly get an overview of your device information, including device name, iOS version, jailbroken or not, model name, serial number etc information, as well as battery health and disk usage.</p>
<p><a href="https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescripter-info.webp" target="_blank" rel="noopener"><img decoding="async" class="aligncenter size-large wp-image-51921" src="https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescripter-info-700x503.webp" alt="" width="610" height="438" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescripter-info-700x503.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescripter-info-300x216.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescripter-info-768x552.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescripter-info.webp 1050w" sizes="(max-width: 610px) 100vw, 610px" /></a></p>
<p>It also supports browsing and exporting your photo images, files, and app data (need app side support) from your iPhone/iPad to computer, or importing files from your computer to iOS devices.</p>
<p><a href="https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescripter-filebrowser.webp" target="_blank"><img loading="lazy" decoding="async" src="https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescripter-filebrowser-700x461.webp" alt="" width="610" height="402" class="aligncenter size-large wp-image-51922" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescripter-filebrowser-700x461.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescripter-filebrowser-300x198.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescripter-filebrowser-768x506.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescripter-filebrowser.webp 1028w" sizes="auto, (max-width: 610px) 100vw, 610px" /></a></p>
<p>Besides the basic file management, it also supports downloading and installing apps from App Store, though you need login with an Apple account. </p>
<p>And, it provides many useful tools to interact with your iOS devices. They include:</p>
<ul>
<li><b>AirPlay</b> &#8211; cast your iOS screen on computer screen with sound.</li>
<li><b>Live Screen</b> &#8211; for device that does not support AirPlay.</li>
<li><b>Simulate Location</b> &#8211; simulate GPS location on your iDevice!</li>
<li><b>iFuse Mount</b> &#8211; mount your iOS filesystem and use it as a regular drive, with read &#038; write permission.</li>
<li><b>backup and restore</b> device.</li>
<li><b>Speed Test</b> &#8211; measure download and upload speed to the device.</li>
</ul>
<p>It as well allows to SSH to your jailbroken iDevice, enable developer mode, and shutdown, reboot, and enter recovery mode. For more about the app, see the <a href="https://github.com/iDescriptor/iDescriptor" target="_blank">Github project page</a>.</p>
<p><a href="https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescriptor-tools.webp" target="_blank"><img loading="lazy" decoding="async" src="https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescriptor-tools-700x466.webp" alt="" width="610" height="406" class="aligncenter size-large wp-image-51923" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescriptor-tools-700x466.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescriptor-tools-300x200.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescriptor-tools-768x511.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescriptor-tools.webp 1151w" sizes="auto, (max-width: 610px) 100vw, 610px" /></a></p>
<h3>How to Install iDescriptor</h3>
<p>The application provides official installer packages for Linux, Windows, and MacOS, which are available to download at the link below:</p>
<div class="wp-block-buttons aligncenter">
<div class="wp-block-button is-style-fill"><a class="wp-block-button__link has-vivid-cyan-blue-to-vivid-purple-gradient-background has-text-color has-background" href="https://github.com/iDescriptor/iDescriptor/releases" target="_blank" rel="noreferrer noopener">Download iDescriptor (under Assets)</a></div>
</div>
<p>For Linux, select download the <b>AppImage</b> (X86_64 for AMD/Intel, arm64 for RasPi or SnapdragonX), add executable permission and run to launch the app, though Debian/Ubuntu needs to install the libfuse2 library first:</p>
<pre>sudo apt install libfuse2</pre>
<p><img loading="lazy" decoding="async" src="https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescriptor-appimage-700x448.webp" alt="" width="610" height="390" class="aligncenter size-large wp-image-51924" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescriptor-appimage-700x448.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescriptor-appimage-300x192.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescriptor-appimage-768x492.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/idescriptor-appimage.webp 999w" sizes="auto, (max-width: 610px) 100vw, 610px" /></p>
<p>It&#8217;s also available to install as <a href="https://flathub.org/en/apps/io.github.idescriptor.iDescriptor" target="_blank">Flatpak package</a>, which is available in Linux Mint Software Manager and Fedora GNOME Software, while other Linux needs to <a href="https://flathub.org/en/setup" target="_blank">enable Flatpak support</a> and run the command below to install the app as Flatpak package:</p>
<pre>flatpak install https://dl.flathub.org/repo/appstream/io.github.idescriptor.iDescriptor.flatpakref</pre>
<p><img loading="lazy" decoding="async" src="https://ubuntuhandbook.org/wp-content/uploads/2026/08/flatpak-idescriptor-700x508.webp" alt="" width="610" height="443" class="aligncenter size-large wp-image-51925" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/08/flatpak-idescriptor-700x508.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/flatpak-idescriptor-300x218.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/flatpak-idescriptor-768x558.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/flatpak-idescriptor.webp 821w" sizes="auto, (max-width: 610px) 100vw, 610px" /></p>]]></content:encoded>
					
					<wfw:commentRss>https://ubuntuhandbook.org/index.php/2026/08/idescriptor-lets-you-manage-interact-with-iphone-ipad-in-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>KDE Rounded Corners 0.10.0 Released with Gradient-Colored Outline</title>
		<link>https://ubuntuhandbook.org/index.php/2026/08/kde-rounded-corners-0-10-0-released-with-gradient-colored-outline/</link>
					<comments>https://ubuntuhandbook.org/index.php/2026/08/kde-rounded-corners-0-10-0-released-with-gradient-colored-outline/#respond</comments>
		
		<dc:creator><![CDATA[Ji m]]></dc:creator>
		<pubDate>Mon, 24 Aug 2026 09:31:16 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<category><![CDATA[KDE]]></category>
		<guid isPermaLink="false">https://ubuntuhandbook.org/?p=51916</guid>

					<description><![CDATA[KDE Rounded Colors, the kwin effect for KDE Plasma Desktop 5 and 6, released new 0.10.0 version today! The new version of this open-source project introduced gradient outlines support, which draws window borders with color gradually changes from one color to another, rather than having a single solid color. Each outline (primary, second, or outer [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" class="alignleft size-thumbnail wp-image-36930" src="https://ubuntuhandbook.org/wp-content/uploads/2022/01/kde-logo-250x250.png" alt="" width="250" height="250" srcset="https://ubuntuhandbook.org/wp-content/uploads/2022/01/kde-logo-250x250.png 250w, https://ubuntuhandbook.org/wp-content/uploads/2022/01/kde-logo-300x300.png 300w, https://ubuntuhandbook.org/wp-content/uploads/2022/01/kde-logo-600x600.png 600w, https://ubuntuhandbook.org/wp-content/uploads/2022/01/kde-logo-768x768.png 768w, https://ubuntuhandbook.org/wp-content/uploads/2022/01/kde-logo.png 1200w" sizes="auto, (max-width: 250px) 100vw, 250px" /></p>
<p>KDE Rounded Colors, the kwin effect for KDE Plasma Desktop 5 and 6, released new 0.10.0 version today!</p>
<p>The new version of this open-source project introduced <b>gradient outlines</b> support, which draws window borders with color gradually changes from one color to another, rather than having a single solid color.</p>
<p><span id="more-51916"></span></p>
<p><a href="https://ubuntuhandbook.org/wp-content/uploads/2026/08/kde-gradientoutline.webp" target="_blank" rel="noopener"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-51917" src="https://ubuntuhandbook.org/wp-content/uploads/2026/08/kde-gradientoutline-700x435.webp" alt="" width="610" height="379" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/08/kde-gradientoutline-700x435.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/kde-gradientoutline-300x186.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/kde-gradientoutline-768x477.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/kde-gradientoutline.webp 1379w" sizes="auto, (max-width: 610px) 100vw, 610px" /></a></p>
<p>Each outline (primary, second, or outer outline for active or inactive window) can independently have its own gradient settings. Besides choosing the first and second color for an outline, user can also <b>change the angle</b> that controls the direction in which the color changes.</p>
<p>Same to the first color, the second color also support alpha channel (available in color chooser dialog), so the gradient can fade toward transparency.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-51918" src="https://ubuntuhandbook.org/wp-content/uploads/2026/08/roundcorners-outlineprefs-700x513.webp" alt="" width="610" height="447" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/08/roundcorners-outlineprefs-700x513.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/roundcorners-outlineprefs-300x220.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/roundcorners-outlineprefs-768x563.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/roundcorners-outlineprefs.webp 1069w" sizes="auto, (max-width: 610px) 100vw, 610px" /></p>
<p>In addition to the new gradient colored outline, the new 0.10.0 version also fixed the compatibility for the upcoming KWin 6.8 (Plasma 6.8).</p>
<p>It also changed the way it detects the maximized window, so it will less likely show outline for app windows that are maximized. It now asks kwin the actual maximize area and compare the window against it. And, it adds 1-pixel tolerance for tiled windows and the case for fractional display scaling.</p>
<p>Other changes include:</p>
<ul>
<li>Fix the issue that shader failing to load on Plasma 6.7+, especially on some NVIDIA systems.</li>
<li>Add vulkan-headers dependency for Arch on Plasma 6.7, or it won&#8217;t build.</li>
<li>Fix rounded corners and outlines appearing on KDE&#8217;s logout screen.</li>
</ul>
<p>For more, see the official release note in the <a href="https://github.com/matinlotfali/KDE-Rounded-Corners/releases" target="_blank" rel="noopener">Github project page</a>.</p>
<h3>How to Install KDE Rounded Colors 0.10.0</h3>
<p>KDE Rounded Corners is available to install through this <a href="https://copr.fedorainfracloud.org/coprs/matinlotfali/KDE-Rounded-Corners/" target="_blank" rel="noopener">copr repository</a> for Fedora 43/44/45/Rawhide, <a href="https://launchpad.net/~matinlotfali/+archive/ubuntu/kde-rounded-corners" target="_blank" rel="noopener">Ubuntu PPA</a> for Kbuntu 22.04, KUbuntu 24.04, and KUbuntu 26.04.</p>
<p>And Arch Linux can get the package from the AUR repository, though it&#8217;s not updated at the moment of writing.</p>
<p>After installed the kwin effect, go to Settings -&gt; Window Management -&gt; Desktop Effects to enable and configure the rounder corners.</p>]]></content:encoded>
					
					<wfw:commentRss>https://ubuntuhandbook.org/index.php/2026/08/kde-rounded-corners-0-10-0-released-with-gradient-colored-outline/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Mesa 26.2.1 Released with A Large Collection of Bug Fixes</title>
		<link>https://ubuntuhandbook.org/index.php/2026/08/mesa-26-2-1-released-with-a-large-collection-of-bug-fixes/</link>
					<comments>https://ubuntuhandbook.org/index.php/2026/08/mesa-26-2-1-released-with-a-large-collection-of-bug-fixes/#respond</comments>
		
		<dc:creator><![CDATA[Ji m]]></dc:creator>
		<pubDate>Sun, 23 Aug 2026 15:11:28 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Mesa 3D graphics library]]></category>
		<guid isPermaLink="false">https://ubuntuhandbook.org/?p=51915</guid>

					<description><![CDATA[Mesa 3D graphics library released 26.2.1 version a few days ago, making the new 26.2 release series stable enough for production use. Mesa announced 26.2.0 a few weeks ago with many exciting new features. Now, it&#8217;s ready for use by the first 26.2.1 bug fix update. Mesa 26.2.0 is a new development release. People who [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" class="alignleft size-thumbnail wp-image-51778" src="https://ubuntuhandbook.org/wp-content/uploads/2026/08/mesa-icon-250x250.webp" alt="" width="250" height="250" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/08/mesa-icon-250x250.webp 250w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/mesa-icon-300x300.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/mesa-icon-700x700.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/mesa-icon-768x768.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/mesa-icon.webp 1200w" sizes="auto, (max-width: 250px) 100vw, 250px" /></p>
<p>Mesa 3D graphics library released 26.2.1 version a few days ago, making the new 26.2 release series stable enough for production use.</p>
<p>Mesa announced 26.2.0 a few weeks ago with many exciting new features. Now, it&#8217;s ready for use by the first 26.2.1 bug fix update.</p>
<blockquote><p><i>Mesa 26.2.0 is a new development release. People who are concerned with stability and reliability should stick with a previous release or wait for Mesa 26.2.1.</i></p></blockquote>
<p><span id="more-51915"></span></p>
<p><a href="https://docs.mesa3d.org/relnotes/26.2.0.html" target="_blank" rel="noopener">Mesa 26.2</a> updated its Rusticl OpenCL implementation with OpenCL 3.1 capability across Apple AGX, Intel, AMD, Vulkan-based, and CPU software backends. It introduced many new extensions support for AMD Radeon, Arm Mali, and PowerVR GPUs, as well as some improvements for NVIDIA and Intel GPUs support.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-51779" src="https://ubuntuhandbook.org/wp-content/uploads/2026/08/OpenCL_RGB_Apr20-700x318.webp" alt="" width="610" height="277" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/08/OpenCL_RGB_Apr20-700x318.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/OpenCL_RGB_Apr20-300x136.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/OpenCL_RGB_Apr20-768x349.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/OpenCL_RGB_Apr20.webp 1100w" sizes="auto, (max-width: 610px) 100vw, 610px" /></p>
<p>The new 26.2.1 release includes tons of fixes and improvements. For <b>AMD GPU</b>, it fixed a color-splitting artifact when playing YouTube AV1/VP9 videos with hardware decoding on RX 7900 XTX.</p>
<p>It also fixed 26.x regressions that HEVC/H.265 hardware decoding through VA-API stop working on Stoney Ridge AMD GPUs, and, H.264 hardware encoding through VA-API to produce corrupted recordings in gpu-screen-recorder.</p>
<p>It as well includes fixes for RadeonSI OpenGL and RADV Vulkan driver crashes, a rendering problem in <i>Insurgency: Sandstorm</i> where some geometry becomes black because of Z-fighting, and texture-filtering rendering bug in <i>Wolfenstein II: The New Colossus</i>.</p>
<div id="attachment_51781" style="width: 620px" class="wp-caption aligncenter"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-51781" class="size-large wp-image-51781" src="https://ubuntuhandbook.org/wp-content/uploads/2026/08/Asus_Radeon_RX_9070_XT_showcase_by_MoreThanTech-700x350.webp" alt="" width="610" height="305" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/08/Asus_Radeon_RX_9070_XT_showcase_by_MoreThanTech-700x350.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/Asus_Radeon_RX_9070_XT_showcase_by_MoreThanTech-300x150.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/Asus_Radeon_RX_9070_XT_showcase_by_MoreThanTech-768x384.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/Asus_Radeon_RX_9070_XT_showcase_by_MoreThanTech.webp 1280w" sizes="auto, (max-width: 610px) 100vw, 610px" /><p id="caption-attachment-51781" class="wp-caption-text">image from Wikipedia.org</p></div>
<p>On the Intel side, it fixed a regression for Intel Arc B70 GPUs that caused some <code>llama.cpp</code> unit tests to sometimes pass and sometimes fail, Intel GPU hang on certain Alder Lake-HX integrated GPUs when using OpenGL, and a bug how they handle vkCmdWaitEvents2.</p>
<p>For NVIDIA, it fixed the NVK driver for older NVIDIA Kepler GPUs can crash inside its shader compiler when running a wgpu application such as Zed.</p>
<p>Other changes include:</p>
<ul>
<li>Fix for a graphics-rendering problem in Witchfire.</li>
<li>Firefox malfunction fix in Raspberry Pi 5.</li>
<li>Fix AMD BC250 GPU detection.</li>
<li>Add data integrity checks (CRC) support for for Arm GPUs using AFBC.</li>
</ul>
<p>There are as well numerous other bug-fixes and improvements, see the official <a href="https://docs.mesa3d.org/relnotes/26.2.1.html" target="_blank">release note</a> page for details.</p>
<h3>Get Mesa 26.2.1:</h3>
<p>The source tarball is available to download in mesa website via the link below:</p>
<div class="wp-block-buttons aligncenter">
<div class="wp-block-button is-style-fill"><a class="wp-block-button__link has-vivid-cyan-blue-to-vivid-purple-gradient-background has-text-color has-background" href="https://archive.mesa3d.org/" target="_blank" rel="noreferrer noopener">Download Mesa</a></div>
</div>
<p>Besides building from the source, Fedora has made the new 26.2 release for next 45 and Rawhide, and, Arch Linux includes the new 26.2.1 in its official Extra/Multilib repository.</p>
<p>Debian has <a href="https://tracker.debian.org/pkg/mesa" target="_blank">accepted Mesa 26.2.1</a> into experimental. It will be possibly put in Unstable and Ubuntu 26.10.</p>
<p>While, Ubuntu 24.04/26.04 user may keep an eye on <a href="https://launchpad.net/~kisak/+archive/ubuntu/kisak-mesa" target="_blank">this popular PPA</a> maintained by Valve developer.</p>]]></content:encoded>
					
					<wfw:commentRss>https://ubuntuhandbook.org/index.php/2026/08/mesa-26-2-1-released-with-a-large-collection-of-bug-fixes/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Proton 11.0-2 Released! Supports Playing 9 More Games in Linux</title>
		<link>https://ubuntuhandbook.org/index.php/2026/08/proton-11-0-2-released-supports-playing-9-more-games-in-linux/</link>
					<comments>https://ubuntuhandbook.org/index.php/2026/08/proton-11-0-2-released-supports-playing-9-more-games-in-linux/#respond</comments>
		
		<dc:creator><![CDATA[Ji m]]></dc:creator>
		<pubDate>Sun, 23 Aug 2026 12:56:50 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<category><![CDATA[game]]></category>
		<guid isPermaLink="false">https://ubuntuhandbook.org/?p=51909</guid>

					<description><![CDATA[Proton, Valve Software&#8217;s tool for running Windows games in Linux through Steam, released new 11.0-2 version a few days ago. The new version of this popular Wine based software makes 9 more games playable in Linux! The new playable games in Linux through Proton include: AsteroidsHD, a arcade-style space combat game features single-player, multiplayer, real-time [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" class="alignleft size-thumbnail wp-image-43327" src="https://ubuntuhandbook.org/wp-content/uploads/2022/11/steam-logoicon-250x250.webp" alt="" width="250" height="250" srcset="https://ubuntuhandbook.org/wp-content/uploads/2022/11/steam-logoicon-250x250.webp 250w, https://ubuntuhandbook.org/wp-content/uploads/2022/11/steam-logoicon-300x300.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2022/11/steam-logoicon-600x600.webp 600w, https://ubuntuhandbook.org/wp-content/uploads/2022/11/steam-logoicon-768x768.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2022/11/steam-logoicon.webp 1200w" sizes="auto, (max-width: 250px) 100vw, 250px" /></p>
<p>Proton, Valve Software&#8217;s tool for running Windows games in Linux through Steam, released new 11.0-2 version a few days ago.</p>
<p>The new version of this popular <a href="https://www.winehq.org/" target="_blank" rel="noopener">Wine</a> based software makes 9 more games playable in Linux!</p>
<p><span id="more-51909"></span></p>
<p>The new playable games in Linux through Proton include:</p>
<ul>
<li><a href="https://store.steampowered.com/app/448230/AsteroidsHD/" target="_blank" rel="noopener">AsteroidsHD</a>, a arcade-style space combat game features single-player, multiplayer, real-time space based physics.</li>
<li><a href="https://store.steampowered.com/app/1437880/Heroes_of_the_Three_Kingdoms_7/" target="_blank" rel="noopener">Heroes of the Three Kingdoms 7</a> (aka《三国群英传Ⅶ》), a Chinese historical strategy/RPG based on the Three Kingdoms period.</li>
<li><a href="https://store.steampowered.com/app/2156410/Konkan_Coast_Pirate_Solutions/" target="_blank" rel="noopener">Konkan Coast Pirate Solutions</a>, a cozy logic/puzzle game about helping pirate ships do pirate things.</li>
<li><a href="https://store.steampowered.com/app/1761380/Otherworld_Legends/" target="_blank" rel="noopener">Otherworld Legends 战魂铭人</a>, a pixel-art roguelike action RPG.</li>
<li><a href="https://store.steampowered.com/app/49900/Plain_Sight/" target="_blank" rel="noopener">Plain Sight</a>, a multiplayer arcade game about suicidal ninja robots.</li>
<li><a href="https://store.steampowered.com/app/4327940/Portal_Worlds/" target="_blank" rel="noopener">Portal_Worlds</a>, an anime-style idle RPG.</li>
<li><a href="https://store.steampowered.com/app/483950/SMILE_GAME_BUILDER/" target="_blank" rel="noopener">SMILE_GAME_BUILDER</a>, a 3D RPG game-making tool.</li>
<li><a href="https://store.steampowered.com/app/354130/Tetrageddon_Games/" target="_blank" rel="noopener">Tetrageddon Games</a>, a collection of games, strange rabbit holes, tangents, and a comedic digital nightmare about the internet of old.</li>
<li><a href="https://store.steampowered.com/app/4280860/Warhammer_Dark_Omen_Classic/" target="_blank" rel="noopener">Warhammer_Dark_Omen_Classic</a>, a 1998 real-time tactical strategy game set in the Warhammer Fantasy universe.</li>
</ul>
<p><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-51910" src="https://ubuntuhandbook.org/wp-content/uploads/2026/08/header.webp" alt="" width="460" height="215" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/08/header.webp 460w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/header-300x140.webp 300w" sizes="auto, (max-width: 460px) 100vw, 460px" /></p>
<p>In addition to the new playable games, the new version also includes a large amount of bug-fixes and improvements.</p>
<p>Numerous games that worked better on Proton 10 now work correctly again, including <em>Terraria</em>, <em>Arma 3</em>, <em>Natural Selection 2</em>, <em>Crysis 2 Remastered</em>, <em>Borderlands GOTY Enhanced</em>, and several <em>Command &amp; Conquer</em> games.</p>
<p>It fixed for games that stopped working after their own updates, including <em>Diablo IV</em>, <em>Metal Gear Solid V</em>, <em>Marvel Rivals</em>, <em>Helldivers 2</em>, <em>Arc Raiders</em>, and <em>Forza Horizon</em>.</p>
<p>It also fixed performance regressions in <em>Terraria</em>, <em>Exanima</em>, and <em>KeepUp Survival</em>, plus memory leaks in <em>The King of Fighters XIII Global Match</em> and <em>HITMAN</em>.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-51911" src="https://ubuntuhandbook.org/wp-content/uploads/2026/08/Diablo_IV_cover_art.webp" alt="" width="273" height="365" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/08/Diablo_IV_cover_art.webp 273w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/Diablo_IV_cover_art-224x300.webp 224w" sizes="auto, (max-width: 273px) 100vw, 273px" /></p>
<p>For Wayland (default in recent GNOME / KDE Plasma) with NVIDIA GPUs, the new version also fixed problems involving <em>Vagante</em> and <em>No Limits 2</em>. And, it fixed full screen issue for <i>Need for Speed Hot Pursuit Remastered</i>, and Forza Horizon 4, 5 and 6 blank screen issue on SteamOS.</p>
<p>This version also improved multi-monitor support for <em>Call of Duty: WWII</em> and <em>Space Engineers</em>, fixed audio issues <em>Portal 2</em>, <em>DRAGON QUEST BUILDERS</em>, <em>Warhammer 40,000: Dakka Squadron &#8211; Flyboyz Edition</em>, as well as video playback <em>Psycho-Sleuth Demo</em>, <em>STAR WARS Starfighter</em>, and <em>Legend of Mana</em>.</p>
<p>Moreover, Proton 11.0-2 includes major component updates, including Wine Mono 11.2.0, FEX-2607, vkd3d 2.0, dxvk-nvapi 0.9.2, vkd3d-proton v3.0a-252-g212991fc2c26, and dxvk v2.7.1-498-ga6764047e587.</p>
<p>For more changes, see the <a href="https://github.com/ValveSoftware/Proton/releases#release-proton-11.0-2" target="_blank" rel="noopener">release note</a> in Github project page.</p>
<h3>Get Proton 11.0-2</h3>
<p>For steam users, simply enable Steam Play under Settings -&gt; Compatibility and choose proton version from the drop-down box.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-49141" src="https://ubuntuhandbook.org/wp-content/uploads/2025/06/enable-steamplay-700x594.webp" alt="" width="610" height="518" srcset="https://ubuntuhandbook.org/wp-content/uploads/2025/06/enable-steamplay-700x594.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2025/06/enable-steamplay-300x255.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2025/06/enable-steamplay-768x652.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2025/06/enable-steamplay.webp 836w" sizes="auto, (max-width: 610px) 100vw, 610px" /></p>
<p>Other game launchers, such as Lutris, Heroic, and Faugus Launcher, can also install the most recent Proton and its forks (e.g., proton-ge, proton-cachyos, and umu-proton) from their download manager.</p>]]></content:encoded>
					
					<wfw:commentRss>https://ubuntuhandbook.org/index.php/2026/08/proton-11-0-2-released-supports-playing-9-more-games-in-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>KDE Gear 26.08 Released with Tons of New Features &amp; Improvements</title>
		<link>https://ubuntuhandbook.org/index.php/2026/08/kde-gear-26-08-released-with-tons-of-new-features-improvements/</link>
					<comments>https://ubuntuhandbook.org/index.php/2026/08/kde-gear-26-08-released-with-tons-of-new-features-improvements/#respond</comments>
		
		<dc:creator><![CDATA[Ji m]]></dc:creator>
		<pubDate>Fri, 21 Aug 2026 10:35:41 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<category><![CDATA[KDE]]></category>
		<guid isPermaLink="false">https://ubuntuhandbook.org/?p=51903</guid>

					<description><![CDATA[KDE Gear 26.08, the new release of KDE&#8217;s official collection of applications, is available after four months of development. The new version of this KDE app collections includes many new features and improvements to the Dolphin file explorer, KDE connect, Kdenlive video editor, Konsole terminal emulator, and others. Dolphin The Dolphin file explorer app has [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" class="alignleft size-thumbnail wp-image-36930" src="https://ubuntuhandbook.org/wp-content/uploads/2022/01/kde-logo-250x250.png" alt="" width="250" height="250" srcset="https://ubuntuhandbook.org/wp-content/uploads/2022/01/kde-logo-250x250.png 250w, https://ubuntuhandbook.org/wp-content/uploads/2022/01/kde-logo-300x300.png 300w, https://ubuntuhandbook.org/wp-content/uploads/2022/01/kde-logo-600x600.png 600w, https://ubuntuhandbook.org/wp-content/uploads/2022/01/kde-logo-768x768.png 768w, https://ubuntuhandbook.org/wp-content/uploads/2022/01/kde-logo.png 1200w" sizes="auto, (max-width: 250px) 100vw, 250px" /></p>
<p>KDE Gear 26.08, the new release of KDE&#8217;s official collection of applications, is available after four months of development.</p>
<p>The new version of this KDE app collections includes many new features and improvements to the Dolphin file explorer, KDE connect, Kdenlive video editor, Konsole terminal emulator, and others.</p>
<p><span id="more-51903"></span></p>
<h3>Dolphin</h3>
<p>The Dolphin file explorer app has been updated with a dedicated &#8220;<b>Focus Other View</b>&#8221; action. It&#8217;s a replacement of &#8220;Switch between views with Tab key&#8221;, that moves the keyboard focus to the inactive split view. When there is no other view, split view is triggered instead.</p>
<p>The Filter Bar now explicitly supports Plain Text, Glob, and Regular Expression matching, plus case-sensitive matching, while providing visual feedback for invalid patterns.</p>
<p>When exploring files on your phone from Dolphin, you can now click on the new <b>Open KDE Connect button</b> at the top of the window to open the KDE Connect app.</p>
<p>Other Dolphin changes include new <b>Close Tabs to the Left/Right</b> context menu option to quickly close all tabs on one side from the current, new restore view properties to defaults button, ability to group files and folders independently, and directory-specific zoom level support when global view properties are disabled.</p>
<div id="attachment_51904" style="width: 620px" class="wp-caption aligncenter"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-51904" class="size-large wp-image-51904" src="https://ubuntuhandbook.org/wp-content/uploads/2026/08/dolphin_filterbar-700x556.webp" alt="" width="610" height="485" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/08/dolphin_filterbar-700x556.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/dolphin_filterbar-300x238.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/dolphin_filterbar-768x611.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/dolphin_filterbar.webp 1424w" sizes="auto, (max-width: 610px) 100vw, 610px" /><p id="caption-attachment-51904" class="wp-caption-text">Dolphin filter bar now explicitly supports Plain Text, Glob, and Regular Expression matching</p></div>
<h3>KDE Connect</h3>
<p>The KDE Connect app now supports for modifier keys as special keys, and supports sending the Meta key through its Remote Input/Remote Keyboard feature.</p>
<p>It added a KDE Connect Devices category to <code>remote:/</code>, making KDE Connect devices discoverable and accessible through KIO-based file managers, including the new Dolphin button mentioned above.</p>
<p>Other changes include display battery and network information, connection timeouts to prevent port leaks, drag-and-drop fix on macOS, and support building against OpenSSL 4.0.</p>
<h3>KDenlive</h3>
<p>The KDenlive video editor in the release has been updated with &#8220;Copy Selection to New Sequence&#8221;, &#8220;Replace Clip&#8221; context menu option, and duplicate clip action in timeline editing.</p>
<p>It added gap detection, ability to insert timeline content at a specified timecode position, as well as moving tracks up/down while keeping associated audio/video tracks together.</p>
<p>It as well added copy/paste support for elements in the title editor, per-channel support to the Curves effect, WebP image-sequence support, 1366×768 profiles, as well as many other exciting new features.</p>
<div id="attachment_51905" style="width: 636px" class="wp-caption aligncenter"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-51905" class="size-full wp-image-51905" src="https://ubuntuhandbook.org/wp-content/uploads/2026/08/kdenlive2608.webp" alt="" width="626" height="453" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/08/kdenlive2608.webp 626w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/kdenlive2608-300x217.webp 300w" sizes="auto, (max-width: 626px) 100vw, 626px" /><p id="caption-attachment-51905" class="wp-caption-text">Kdenlive title editor</p></div>
<h3>Konsole</h3>
<p>The terminal app now has Kitty keyboard protocol support, which can be enabled and configured in profile settings.</p>
<p>It improved hyperlink interaction by allowing to copy, open, and drag URLs detected through terminal escape sequences, while normal URL and color-filter hotspots gain copy and drag actions.</p>
<p>It as well added the ability to paste using the right mouse button, badge overlay feature allowing a visual indicator/badge to be displayed on a terminal/session. And, user profiles can now automatically switch based on the system light/dark theme.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-51906" src="https://ubuntuhandbook.org/wp-content/uploads/2026/08/konsole-kittysupport-700x487.webp" alt="" width="610" height="424" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/08/konsole-kittysupport-700x487.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/konsole-kittysupport-300x209.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/konsole-kittysupport-768x535.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/konsole-kittysupport.webp 1011w" sizes="auto, (max-width: 610px) 100vw, 610px" /></p>
<h3>Okular</h3>
<p>The document viewer application features safer and more robust PDF signing. It now prevents saving, adding signatures, or selecting the current document while a signing operation is in progress.</p>
<p>It improved handling of untrusted certificate roots and made warnings about untrusted signatures more noticeable. It also improved PGP certificate display and export handling and added support saving certificates as <code>.asc</code> files.</p>
<p>For annotations and text selection, it added a new <i>Open</i> action for embedded files, copy and paste annotations support, and ability triple-click to select an entire line.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-51907" src="https://ubuntuhandbook.org/wp-content/uploads/2026/08/okular-annotation-700x461.webp" alt="" width="610" height="402" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/08/okular-annotation-700x461.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/okular-annotation-300x197.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/okular-annotation-768x506.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/okular-annotation.webp 1077w" sizes="auto, (max-width: 610px) 100vw, 610px" /></p>
<p>Other changes in KDE Gear 26.08 include:</p>
<ul>
<li>Add <code>.desktop</code> file for Akonadi&#8217;s integration with KDE Online Accounts.</li>
<li>Add Python bindings for Akonadi PIM data service.</li>
<li>Alligator gains support deleting old articles after a feed reaches a specified number of stored articles.</li>
<li>Ability to hide holidays in the calendar month view.</li>
<li>Add even start and end times control in the calendar month view.</li>
<li>Add a limit on how many podcast episodes Kasts can download simultaneously.</li>
<li>KSMTP RFC 6532 support for non-English headers.</li>
<li>Add option to quit KTorrent to shutdown plugin.</li>
</ul>
<p>There are as well tons of other changes and improvements, see either the official <a href="https://kde.org/announcements/gear/26.08.0/" target="_blank" rel="noopener">announcement</a> or <a href="https://kde.org/announcements/changelogs/gear/26.08.0/" target="_blank" rel="noopener">changelog</a> for details.</p>
<h3>Get KDE Gear 26.08</h3>
<p>The new version of these KDE applications have been made into Fedora 45/Rawhide and Arch Linux repositories. And, Ubuntu will likely build them for the next Ubuntu 26.10.</p>
<p>For the source tarballs, go to KDE website via the link below:</p>
<div class="wp-block-buttons aligncenter">
<div class="wp-block-button is-style-fill"><a class="wp-block-button__link has-vivid-cyan-blue-to-vivid-purple-gradient-background has-text-color has-background" href="https://download.kde.org/stable/release-service/26.08.0/src/" target="_blank" rel="noreferrer noopener">Download KDE Gear 26.08 (source)</a></div>
</div>]]></content:encoded>
					
					<wfw:commentRss>https://ubuntuhandbook.org/index.php/2026/08/kde-gear-26-08-released-with-tons-of-new-features-improvements/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>This Extension Displays Your Photo Images as Desktop Widget</title>
		<link>https://ubuntuhandbook.org/index.php/2026/08/extension-photo-desktop-widget/</link>
					<comments>https://ubuntuhandbook.org/index.php/2026/08/extension-photo-desktop-widget/#respond</comments>
		
		<dc:creator><![CDATA[Ji m]]></dc:creator>
		<pubDate>Thu, 20 Aug 2026 15:29:55 +0000</pubDate>
				<category><![CDATA[Howtos]]></category>
		<category><![CDATA[Gnome]]></category>
		<guid isPermaLink="false">https://ubuntuhandbook.org/?p=51897</guid>

					<description><![CDATA[Want to display your lovely photo images as desktop widget, here&#8217;s an extension that can do the job for Ubuntu and other Linux with recent GNOME Desktop. It&#8217;s Desktop Frames, a GNOME Shell extension that can create multiple desktop widgets that display random images from user selected folders. It is a remake of the original [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" class="alignleft size-thumbnail wp-image-44710" src="https://ubuntuhandbook.org/wp-content/uploads/2023/11/gnome-logo-dark-250x250.webp" alt="" width="250" height="250" srcset="https://ubuntuhandbook.org/wp-content/uploads/2023/11/gnome-logo-dark-250x250.webp 250w, https://ubuntuhandbook.org/wp-content/uploads/2023/11/gnome-logo-dark-300x300.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2023/11/gnome-logo-dark-600x600.webp 600w, https://ubuntuhandbook.org/wp-content/uploads/2023/11/gnome-logo-dark-768x768.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2023/11/gnome-logo-dark.webp 1200w" sizes="auto, (max-width: 250px) 100vw, 250px" /></p>
<p>Want to display your lovely photo images as desktop widget, here&#8217;s an extension that can do the job for Ubuntu and other Linux with recent GNOME Desktop.</p>
<p>It&#8217;s <a href="https://github.com/ZeysMockingjay/Picture-desktop-widget-remake" target="_blank" rel="noopener">Desktop Frames</a>, a GNOME Shell extension that can create multiple desktop widgets that display random images from user selected folders.</p>
<p><span id="more-51897"></span></p>
<p><a href="https://ubuntuhandbook.org/wp-content/uploads/2026/08/pic-widget-1.webp" target="_blank" rel="noopener"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-51899" src="https://ubuntuhandbook.org/wp-content/uploads/2026/08/pic-widget-1-700x394.webp" alt="" width="610" height="343" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/08/pic-widget-1-700x394.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/pic-widget-1-300x169.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/pic-widget-1-768x432.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/pic-widget-1-1536x864.webp 1536w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/pic-widget-1.webp 1920w" sizes="auto, (max-width: 610px) 100vw, 610px" /></a></p>
<p>It is a remake of the original <a href="https://github.com/GaszokS/Picture-desktop-widget" target="_blank" rel="noopener">Picture Desktop Widget</a>, but with support for multiple widgets and more flexible customization.</p>
<p>User can create as many desktop image widgets as possible. And, each widget has its own image folder, size, position, corner radius, aspect ratio and refresh interval, as well as toggle to show or hide without deleting it.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-51900" src="https://ubuntuhandbook.org/wp-content/uploads/2026/08/desktop-frames-prefs-700x485.webp" alt="" width="610" height="423" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/08/desktop-frames-prefs-700x485.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/desktop-frames-prefs-300x208.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/desktop-frames-prefs-768x532.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/desktop-frames-prefs.webp 1233w" sizes="auto, (max-width: 610px) 100vw, 610px" /></p>
<p>Features of the extension include:</p>
<ul>
<li>Multiple desktop image widgets.</li>
<li>Customize image folder, size, position, corner radius, and aspect ratio on per widget basis.</li>
<li>Adjust how often new images are selected.</li>
<li>Supports JPEG, PNG, GIF, BMP, and WebP.</li>
</ul>
<h3>How to Install this Desktop Image Widget Extension</h3>
<p>The extension so far support <b>GNOME from version 46 to 50</b>. Meaning you can install it on Ubuntu 24.04 ~ 26.04, Debian 13, current supported Fedora Workstation, and Arch etc Linux with GNOME Desktop.</p>
<p><b>1.</b> First, search for and install <b>Extension Manager</b> app from your system software app, such as Gnome Software, Ubuntu App Center.</p>
<div id="attachment_44419" style="width: 610px" class="wp-caption aligncenter"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-44419" class="size-large wp-image-44419" src="https://ubuntuhandbook.org/wp-content/uploads/2023/09/extension-manager-inappcenter-600x425.webp" alt="" width="600" height="425" srcset="https://ubuntuhandbook.org/wp-content/uploads/2023/09/extension-manager-inappcenter-600x425.webp 600w, https://ubuntuhandbook.org/wp-content/uploads/2023/09/extension-manager-inappcenter-300x212.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2023/09/extension-manager-inappcenter-768x544.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2023/09/extension-manager-inappcenter.webp 989w" sizes="auto, (max-width: 600px) 100vw, 600px" /><p id="caption-attachment-44419" class="wp-caption-text">Install Extension Manager in Ubuntu Software/App Center</p></div>
<p><b>2.</b> Then, launch the app and use it to search &amp; install the &#8220;Desktop Frames&#8221; extension from <i>Browse</i> tab.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-51901" src="https://ubuntuhandbook.org/wp-content/uploads/2026/08/desktop-frames-em-700x463.webp" alt="" width="610" height="403" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/08/desktop-frames-em-700x463.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/desktop-frames-em-300x198.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/desktop-frames-em-768x508.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/desktop-frames-em.webp 1013w" sizes="auto, (max-width: 610px) 100vw, 610px" /></p>
<p>Once installed, switch back to the <i>Installed</i> tab and click open the extension preferences dialog to add widget and configure image folder, size, position, etc.</p>
<p>For choice, you may visit the extension page via the link below:</p>
<div class="wp-block-buttons aligncenter">
<div class="wp-block-button is-style-fill"><a class="wp-block-button__link has-vivid-cyan-blue-to-vivid-purple-gradient-background has-text-color has-background" href="https://extensions.gnome.org/extension/10608/picture-desktop-widget-remake/" target="_blank" rel="noreferrer noopener">Desktop Frames in EGO</a></div>
</div>
<p>Then use the ON/OFF toggle to install the extension. You however need to install browser extension (if it prompts), and, Debian/Ubuntu need to install the agent package via the command below and finally refresh.</p>
<pre>sudo apt install chrome-gnome-shell</pre>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-51902" src="https://ubuntuhandbook.org/wp-content/uploads/2026/08/desktop-frames-browser-700x497.webp" alt="" width="610" height="433" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/08/desktop-frames-browser-700x497.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/desktop-frames-browser-300x213.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/desktop-frames-browser-768x545.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/desktop-frames-browser.webp 1284w" sizes="auto, (max-width: 610px) 100vw, 610px" /></p>]]></content:encoded>
					
					<wfw:commentRss>https://ubuntuhandbook.org/index.php/2026/08/extension-photo-desktop-widget/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Liferea News Reader 2.0 Released with GTK4/LibAdwaita Port</title>
		<link>https://ubuntuhandbook.org/index.php/2026/08/liferea-news-reader-2-0-released-with-gtk4-libadwaita-port/</link>
					<comments>https://ubuntuhandbook.org/index.php/2026/08/liferea-news-reader-2-0-released-with-gtk4-libadwaita-port/#respond</comments>
		
		<dc:creator><![CDATA[Ji m]]></dc:creator>
		<pubDate>Thu, 20 Aug 2026 12:36:49 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Feed Reader]]></category>
		<category><![CDATA[liferea]]></category>
		<guid isPermaLink="false">https://ubuntuhandbook.org/?p=51891</guid>

					<description><![CDATA[Liferea, the reliable and lightweight Linux Feed Reader, released new major 2.0 version a day ago. The new version of this more than 20 years old application is finally ported to GTK4 + LibAdwaita, with a modern user interface that&#8217;s well integrated with recent GNOME desktops. The app now features a CSD header-bar that includes [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" class="alignleft size-thumbnail wp-image-36141" src="https://ubuntuhandbook.org/wp-content/uploads/2021/12/liferea-feature-250x250.webp" alt="" width="250" height="250" srcset="https://ubuntuhandbook.org/wp-content/uploads/2021/12/liferea-feature-250x250.webp 250w, https://ubuntuhandbook.org/wp-content/uploads/2021/12/liferea-feature-300x300.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2021/12/liferea-feature-600x600.webp 600w, https://ubuntuhandbook.org/wp-content/uploads/2021/12/liferea-feature-768x768.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2021/12/liferea-feature.webp 1200w" sizes="auto, (max-width: 250px) 100vw, 250px" /></p>
<p>Liferea, the reliable and lightweight <b>Li</b>nux <b>Fe</b>ed <b>Rea</b>der, released new major 2.0 version a day ago.</p>
<p>The new version of this more than 20 years old application is finally ported to GTK4 + LibAdwaita, with a modern user interface that&#8217;s well integrated with recent GNOME desktops.</p>
<p><span id="more-51891"></span></p>
<p><a href="https://ubuntuhandbook.org/wp-content/uploads/2026/08/liferea20-3pane.webp" target="_blank" rel="noopener"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-51892" src="https://ubuntuhandbook.org/wp-content/uploads/2026/08/liferea20-3pane-700x393.webp" alt="" width="610" height="342" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/08/liferea20-3pane-700x393.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/liferea20-3pane-300x168.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/liferea20-3pane-768x431.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/liferea20-3pane-1536x862.webp 1536w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/liferea20-3pane.webp 1643w" sizes="auto, (max-width: 610px) 100vw, 610px" /></a></p>
<p>The app now features a CSD header-bar that includes only a few navigation buttons, while most others are merged into hamburger menu (≡).</p>
<p>It still changes its UI automatically between 3-panel, 2-panel, and even single pane layout according to window size. And, it switches between light and dark mode automatically depends on system color scheme.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-51893" src="https://ubuntuhandbook.org/wp-content/uploads/2026/08/liferea-dark2pane-700x525.webp" alt="" width="610" height="458" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/08/liferea-dark2pane-700x525.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/liferea-dark2pane-300x225.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/liferea-dark2pane-768x576.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/liferea-dark2pane.webp 1008w" sizes="auto, (max-width: 610px) 100vw, 610px" /></p>
<p>Besides adding source from Planet, BlogRoll, OPML, Google Reader API (e.g., TheOldReader, FeedHQ, and Miniflux), Reedah, Tiny Tiny RSS, the new version also <b>added WebDAV source support</b> to get RSS subscriptions from a remote WebDAV server.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-51894" src="https://ubuntuhandbook.org/wp-content/uploads/2026/08/webdavsource-700x469.webp" alt="" width="610" height="409" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/08/webdavsource-700x469.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/webdavsource-300x201.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/webdavsource-768x514.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/webdavsource.webp 1114w" sizes="auto, (max-width: 610px) 100vw, 610px" /></p>
<p>To improve performance, the unread count numbers are now lazy updated in every 500 ms. The update monitor has been overhauled that gives deeper insight into the background updating and node source synchronization.</p>
<p><img loading="lazy" decoding="async" src="https://ubuntuhandbook.org/wp-content/uploads/2026/08/liferea-updatemanager-700x494.webp" alt="" width="610" height="430" class="aligncenter size-large wp-image-51895" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/08/liferea-updatemanager-700x494.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/liferea-updatemanager-300x212.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/liferea-updatemanager-768x542.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/liferea-updatemanager.webp 1144w" sizes="auto, (max-width: 610px) 100vw, 610px" /></p>
<p>This version also introduced a new <b>Python Console</b> plugin for advanced users or developers to interact with the application window.</p>
<p><img loading="lazy" decoding="async" src="https://ubuntuhandbook.org/wp-content/uploads/2026/08/liferea-pythonconsole-700x506.webp" alt="" width="610" height="441" class="aligncenter size-large wp-image-51896" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/08/liferea-pythonconsole-700x506.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/liferea-pythonconsole-300x217.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/liferea-pythonconsole-768x555.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/liferea-pythonconsole.webp 800w" sizes="auto, (max-width: 610px) 100vw, 610px" /></p>
<p>Other changes in Liferea 2.0 include:</p>
<ul>
<li>Reduced feed list mode is not supported anymore.</li>
<li>Remove status bar in favor of raising toasts.</li>
<li>Tray icon has lost the ability to indicate the unread counter.</li>
<li>Ability to make search folders show the total count instead of the unread count.</li>
</ul>
<h3>Get Liferea 2.0</h3>
<p>The official release note as well as the source tarball are available in Github source page via the link below:</p>
<div class="wp-block-buttons aligncenter">
<div class="wp-block-button is-style-fill"><a class="wp-block-button__link has-vivid-cyan-blue-to-vivid-purple-gradient-background has-text-color has-background" href="https://github.com/lwindolf/liferea/releases#release-v2.0" target="_blank" rel="noreferrer noopener">Liferea Feed Reader 2.0</a></div>
</div>
<p>Fedora Rawhide has already include the new Liferea release in its repository, while, other users may wait for either their distribution updates or the community maintained <a href="https://flathub.org/en/apps/net.sourceforge.liferea" target="_blank">Flatpak package</a>.</p>
<p>For Ubuntu 26.04 LTS, you may try building it from source via the steps below one by one:</p>
<ul>
<li>Install build depends:
<pre>sudo apt install build-essential meson gsettings-desktop-schemas-dev, libgtk-4-dev, libadwaita-1-dev, json-glib-tools, libjson-glib-dev, libxml2-dev, libxslt-dev, libwebkitgtk-6.0-dev, libpeas-2-dev, intltool, libgirepository1.0-dev</pre>
</li>
<li>Download the source tarball, extract, and open the source folder in terminal.</li>
<li>Finally, run the commands below one by one to compile and install it.
<pre>meson setup build --prefix=/usr/local</pre>
<pre>meson compile -C build</pre>
<pre>sudo meson install -C build</pre>
</li>
</ul>]]></content:encoded>
					
					<wfw:commentRss>https://ubuntuhandbook.org/index.php/2026/08/liferea-news-reader-2-0-released-with-gtk4-libadwaita-port/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>COSMIC Epoch 1.6.0 Released with Per-App Basis Volume Control</title>
		<link>https://ubuntuhandbook.org/index.php/2026/08/cosmic-epoch-1-6-0-released-with-per-app-basis-volume-control/</link>
					<comments>https://ubuntuhandbook.org/index.php/2026/08/cosmic-epoch-1-6-0-released-with-per-app-basis-volume-control/#respond</comments>
		
		<dc:creator><![CDATA[Ji m]]></dc:creator>
		<pubDate>Wed, 19 Aug 2026 12:24:52 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<category><![CDATA[pop os]]></category>
		<guid isPermaLink="false">https://ubuntuhandbook.org/?p=51888</guid>

					<description><![CDATA[COSMIC Epoch, the Linux desktop environment that&#8217;s default in Pop!_OS, released new 1.6.0 version today. The new version added the wl-dmabuf-v6 Wayland protocol support improving compatibility with the latest Wayland GPU-buffer handling. It also added Ei Wayland protocol support for applications such as remote-desktop software and input emulation to send keyboard, mouse, and touch input [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" class="alignleft size-thumbnail wp-image-49746" src="https://ubuntuhandbook.org/wp-content/uploads/2025/09/popos-logo-250x250.webp" alt="" width="250" height="250" srcset="https://ubuntuhandbook.org/wp-content/uploads/2025/09/popos-logo-250x250.webp 250w, https://ubuntuhandbook.org/wp-content/uploads/2025/09/popos-logo-300x300.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2025/09/popos-logo-700x700.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2025/09/popos-logo-768x768.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2025/09/popos-logo.webp 1200w" sizes="auto, (max-width: 250px) 100vw, 250px" /></p>
<p>COSMIC Epoch, the Linux desktop environment that&#8217;s default in Pop!_OS, released new 1.6.0 version today.</p>
<p>The new version added the <strong><code>wl-dmabuf-v6</code></strong> Wayland protocol support improving compatibility with the latest Wayland GPU-buffer handling.</p>
<p><span id="more-51888"></span></p>
<p>It also added <strong>Ei Wayland protocol</strong> support for applications such as remote-desktop software and input emulation to send keyboard, mouse, and touch input through the compositor in a standardized way. This allows COSMIC compositor to receive and handle input generated by software rather than directly by physical input devices.</p>
<div id="attachment_51561" style="width: 620px" class="wp-caption aligncenter"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-51561" src="https://ubuntuhandbook.org/wp-content/uploads/2026/07/cosmic-frostedglass-700x394.webp" alt="" width="610" height="343" class="size-large wp-image-51561" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/07/cosmic-frostedglass-700x394.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2026/07/cosmic-frostedglass-300x169.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2026/07/cosmic-frostedglass-768x432.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2026/07/cosmic-frostedglass-1536x864.webp 1536w, https://ubuntuhandbook.org/wp-content/uploads/2026/07/cosmic-frostedglass.webp 1920w" sizes="auto, (max-width: 610px) 100vw, 610px" /><p id="caption-attachment-51561" class="wp-caption-text">COSMIC desktop in Ubuntu 26.04</p></div>
<p>The greeter that handles the login screen has been improved with <strong>JPEG XL</strong> (JXL) and <strong>AVIF</strong> image support. It now ignore empty password so it won&#8217;t freeze a second, for the submitting and authenticating process, when you pressing Enter without any password input.</p>
<p>And, it now checks at runtime whether logind is actually present or running, then either uses logind functionality when it is available, or falls back appropriately when it isn&#8217;t.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-49751" src="https://ubuntuhandbook.org/wp-content/uploads/2025/09/pop24-login-700x437.webp" alt="" width="610" height="381" srcset="https://ubuntuhandbook.org/wp-content/uploads/2025/09/pop24-login-700x437.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2025/09/pop24-login-300x187.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2025/09/pop24-login-768x479.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2025/09/pop24-login.webp 1275w" sizes="auto, (max-width: 610px) 100vw, 610px" /></p>
<p>The 1.6.0 version also includes new features and improvements for the settings daemon.</p>
<p>It fixed a bug where the currently open settings page could be unloaded while searching, fixed a crash when an error occurs while determining the maximum brightness. And, it now uses <strong><i>UPower</i></strong> to reliably detect when the AC charger is plugged in or unplugged, by monitoring the system&#8217;s <code>line_power</code> device.</p>
<p>The daemon now keeps track of individual audio playback streams. For each playback stream, it tracks information such as what application producing the audio, media info, and which audio output (sink) the stream is currently using.</p>
<p>And, it now provides <strong>per-app sound settings</strong> allowing to mute/unmute, adjust volume, and switch audio output device for individual application.</p>
<div id="attachment_51889" style="width: 620px" class="wp-caption aligncenter"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-51889" class="size-large wp-image-51889" src="https://ubuntuhandbook.org/wp-content/uploads/2026/08/per-app-volumecontrol-700x303.webp" alt="" width="610" height="264" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/08/per-app-volumecontrol-700x303.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/per-app-volumecontrol-300x130.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/per-app-volumecontrol-768x332.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/per-app-volumecontrol.webp 812w" sizes="auto, (max-width: 610px) 100vw, 610px" /><p id="caption-attachment-51889" class="wp-caption-text">Per app volume control</p></div>
<p>The file manager app in the release now supports context menu for text input fields, providing standard text-editing actions such as copying, pasting, selecting, etc.</p>
<p>Some previously non-selectable text in the file information/context drawer can now be selected and copied. As well, it fixed an infinite error-dialog loop when opening a failed network mount.</p>
<p>The terminal app now has a new &#8220;Show pane borders&#8221; toggle under the Splits settings. With it enabled, split terminal panes get visible borders between them, borders appear only when there is more than one pane, while a single terminal pane remains borderless.</p>
<p>Other changes in COSMIC Epoch 1.6.0 include:</p>
<ul>
<li>Fix oversized icons in status-area menu items.</li>
<li>Wait 128 ms before applying the latest volume change.</li>
<li>Fix newer Chrome incorrectly exit fullscreen mode.</li>
<li>Fix COSMIC launcher flickering and unexpectedly closing when using the Ctrl key.</li>
<li>Fix a popup positioning problem in COSMIC Notifications.</li>
</ul>
<p>For more changes as well as the source tarball, see the official <a href="https://github.com/pop-os/cosmic-epoch/releases/tag/epoch-1.6.0" target="_blank">release note</a>.</p>
<h3>Get COSMIC Desktop 1.6.0</h3>
<p>Besides building from the source, Arch Linux and Fedora users may need to wait for their distribution updates, while the last 1.5.0 version is already available in their system repositories.</p>
<p>For Ubuntu, there&#8217;s a community <a href="https://launchpad.net/~hepp3n/+archive/ubuntu/cosmic-epoch" target="_blank">maintained PPA</a> that contains the COSMIC 1.6.0 for the current Ubuntu 26.04 LTS. See <a href="https://ubuntuhandbook.org/index.php/2025/12/install-pop_os-cosmic-desktop-ubuntu-24-04/" target="_blank">this guide</a> for how to install instruction.</p>]]></content:encoded>
					
					<wfw:commentRss>https://ubuntuhandbook.org/index.php/2026/08/cosmic-epoch-1-6-0-released-with-per-app-basis-volume-control/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>VirtualBox 7.2.16 Released with Intel FRED Support</title>
		<link>https://ubuntuhandbook.org/index.php/2026/08/virtualbox-7-2-16-released-with-intel-fred-support/</link>
					<comments>https://ubuntuhandbook.org/index.php/2026/08/virtualbox-7-2-16-released-with-intel-fred-support/#respond</comments>
		
		<dc:creator><![CDATA[Ji m]]></dc:creator>
		<pubDate>Wed, 19 Aug 2026 08:04:21 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Virtualbox]]></category>
		<guid isPermaLink="false">https://ubuntuhandbook.org/?p=51886</guid>

					<description><![CDATA[Oracle VirtualBox 7.2.16, the eighth maintenance update for the 7.2 series, was released on Tuesday. The new version of this virtualization software contains only some fixes and performance improvements. For Linux host running on recent Intel platform with FRED (Flexible Return and Event Delivery) enabled (e.g., Fedora 44 on Core Ultra Series 3 laptops), there [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" class="alignleft size-thumbnail wp-image-47225" src="https://ubuntuhandbook.org/wp-content/uploads/2024/09/virtualbox-newlogo-250x250.webp" alt="" width="250" height="250" srcset="https://ubuntuhandbook.org/wp-content/uploads/2024/09/virtualbox-newlogo-250x250.webp 250w, https://ubuntuhandbook.org/wp-content/uploads/2024/09/virtualbox-newlogo-300x300.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2024/09/virtualbox-newlogo-700x700.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2024/09/virtualbox-newlogo-768x768.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2024/09/virtualbox-newlogo.webp 1200w" sizes="auto, (max-width: 250px) 100vw, 250px" /></p>
<p>Oracle VirtualBox 7.2.16, the eighth maintenance update for the 7.2 series, was released on Tuesday.</p>
<p>The new version of this virtualization software contains only some fixes and performance improvements.</p>
<p><span id="more-51886"></span></p>
<p><img loading="lazy" decoding="async" src="https://ubuntuhandbook.org/wp-content/uploads/2026/08/vbox7216-700x481.webp" alt="" width="610" height="419" class="aligncenter size-large wp-image-51887" srcset="https://ubuntuhandbook.org/wp-content/uploads/2026/08/vbox7216-700x481.webp 700w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/vbox7216-300x206.webp 300w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/vbox7216-768x527.webp 768w, https://ubuntuhandbook.org/wp-content/uploads/2026/08/vbox7216.webp 1056w" sizes="auto, (max-width: 610px) 100vw, 610px" /></p>
<p>For Linux host running on recent Intel platform with FRED (Flexible Return and Event Delivery) enabled (e.g., Fedora 44 on Core Ultra Series 3 laptops), there was and incompatibility causing the host system freeze.</p>
<p>It was because Virtualbox used the old x86 mechanism to pass NMI (Non-Maskable Interrupt) to host kernel, but the host kernel uses FRED and rejects causing kernel panic.</p>
<p>The 7.2.16 version fixed the issue by adding a patch that detects whether the host CPU is currently using FRED, and in that case, use Linux&#8217;s FRED-specific mechanism to re-deliver a NMI instead of the old x86 mechanism.</p>
<p>For RHEL 9.8 and its based distributions such as AlmaLinux running in virtual machines, VirtualBox 7.2.16 also fixed the guest addition install failure issue due to kernel internal API change.</p>
<p>Other changes include build failure in Linux host with OpenSSL 4.0, such as the next Ubuntu 26.10 and Fedora 45, as well as:</p>
<ul>
<li>Improve clipboard share handling in Linux Wayland.</li>
<li>Fix a hang in video recording.</li>
<li>Improve VMSVGA 3D performance.</li>
<li>Add graceful handling of inaccessible VMs.</li>
<li>Fix OVF import warning visibility.</li>
</ul>
<p>For more about VirtualBox 7.2.16, see the official <a href="https://www.virtualbox.org/wiki/Changelog" target="_blank" rel="noopener">ChangeLog page</a>.</p>
<h3>Get VirtualBox 7.2.16</h3>
<p>The installer packages for Linux, Windows, macOS, and Solaris hosts, as well as the extension pack are available in VirtualBox website via the link below:</p>
<div class="wp-block-buttons aligncenter">
<div class="wp-block-button is-style-fill"><a class="wp-block-button__link has-vivid-cyan-blue-to-vivid-purple-gradient-background has-text-color has-background" href="https://www.virtualbox.org/wiki/Downloads" target="_blank" rel="noreferrer noopener">Download VirtualBox</a></div>
</div>]]></content:encoded>
					
					<wfw:commentRss>https://ubuntuhandbook.org/index.php/2026/08/virtualbox-7-2-16-released-with-intel-fred-support/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>