Version 1.10.3

This commit is contained in:
Faugus
2025-11-13 09:35:02 -03:00
parent f365c9afea
commit 1c61d14f21
5 changed files with 8 additions and 14 deletions

View File

@@ -38,7 +38,7 @@ sudo dpkg --add-architecture i386
sudo apt update
sudo apt install -y wget
mkdir -p ~/faugus-launcher
wget -P ~/faugus-launcher https://github.com/Faugus/faugus-launcher/releases/download/1.10.2/faugus-launcher_1.10.2-1_all.deb
wget -P ~/faugus-launcher https://github.com/Faugus/faugus-launcher/releases/download/1.10.3/faugus-launcher_1.10.3-1_all.deb
sudo apt install -y ~/faugus-launcher/*.deb
sudo rm -r ~/faugus-launcher
```

View File

@@ -81,13 +81,10 @@
</screenshot>
</screenshots>
<releases>
<release version="1.10.2-1" date="2025-11-11">
<release version="1.10.3-1" date="2025-11-13">
<description>
<ul>
<li>Fixed app store not fully recognizing Faugus Launcher system installation</li>
<li>Replaced the filepicker with the xdg portal</li>
<li>Backup filename now has the current date</li>
<li>Added support for Proton-CachyOS system package</li>
<li>Hotfix: Proton-CachyOS was not being exposed properly</li>
</ul>
</description>
</release>

View File

@@ -87,13 +87,10 @@
</screenshot>
</screenshots>
<releases>
<release version="1.10.2-1" date="2025-11-11">
<release version="1.10.3-1" date="2025-11-13">
<description>
<ul>
<li>Fixed app store not fully recognizing Faugus Launcher system installation</li>
<li>Replaced the filepicker with the xdg portal</li>
<li>Backup filename now has the current date</li>
<li>Added support for Proton-CachyOS system package</li>
<li>Hotfix: Proton-CachyOS was not being exposed properly</li>
</ul>
</description>
</release>

View File

@@ -3501,7 +3501,7 @@ class Settings(Gtk.Dialog):
self.combobox_runner.append_text("GE-Proton Latest (default)")
self.combobox_runner.append_text("UMU-Proton Latest")
self.combobox_runner.append_text("Proton-EM Latest")
if os.path.exists("/usr/share/steam/compatibilitytools.d/proton-cachyos/"):
if os.path.exists("/usr/share/steam/compatibilitytools.d/proton-cachyos-slr/"):
self.combobox_runner.append_text("Proton-CachyOS")
# Path to the directory containing the folders
@@ -5412,7 +5412,7 @@ class AddGame(Gtk.Dialog):
self.combobox_runner.append_text("GE-Proton Latest (default)")
self.combobox_runner.append_text("UMU-Proton Latest")
self.combobox_runner.append_text("Proton-EM Latest")
if os.path.exists("/usr/share/steam/compatibilitytools.d/proton-cachyos/"):
if os.path.exists("/usr/share/steam/compatibilitytools.d/proton-cachyos-slr/"):
self.combobox_runner.append_text("Proton-CachyOS")
# Path to the directory containing the folders

View File

@@ -1,6 +1,6 @@
project(
'faugus-launcher',
version: '1.10.2',
version: '1.10.3',
meson_version: '>=1.2.0',
license: 'MIT',
license_files: 'LICENSE',