Version 1.12.1

This commit is contained in:
Faugus
2026-01-05 19:28:51 -03:00
parent b69fb20594
commit dccd4519dc
5 changed files with 15 additions and 15 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.11.8/faugus-launcher_1.11.8-1_all.deb
wget -P ~/faugus-launcher https://github.com/Faugus/faugus-launcher/releases/download/1.12.1/faugus-launcher_1.12.1-1_all.deb
sudo apt install -y ~/faugus-launcher/*.deb
sudo rm -r ~/faugus-launcher
```

View File

@@ -81,14 +81,14 @@
</screenshot>
</screenshots>
<releases>
<release version="1.11.8-1" date="2025-12-26">
<release version="1.12.1-1" date="2026-01-05">
<description>
<ul>
<li>Disabled the Wayland driver for some launchers</li>
<li>Fixed UMU-Proton Latest not being used properly</li>
<li>Now the app prints the version on the terminal for easier debugging</li>
<li>Fixed broken prefix when using / at the end</li>
<li>Updated Dutch translation</li>
<li>Now it prevents the system from sleeping when a game is running</li>
<li>Fixed games not running when having single quotes on the path</li>
<li>Now removes the additional application file when deleting a game</li>
<li>Small changes for the button play behavior</li>
<li>Some code restructuring</li>
</ul>
</description>
</release>

View File

@@ -87,14 +87,14 @@
</screenshot>
</screenshots>
<releases>
<release version="1.11.8-1" date="2025-12-26">
<release version="1.12.1-1" date="2026-01-05">
<description>
<ul>
<li>Disabled the Wayland driver for some launchers</li>
<li>Fixed UMU-Proton Latest not being used properly</li>
<li>Now the app prints the version on the terminal for easier debugging</li>
<li>Fixed broken prefix when using / at the end</li>
<li>Updated Dutch translation</li>
<li>Now it prevents the system from sleeping when a game is running</li>
<li>Fixed games not running when having single quotes on the path</li>
<li>Now removes the additional application file when deleting a game</li>
<li>Small changes for the button play behavior</li>
<li>Some code restructuring</li>
</ul>
</description>
</release>

View File

@@ -26,7 +26,7 @@ from filelock import FileLock, Timeout
from faugus.config_manager import *
from faugus.dark_theme import *
VERSION = "1.11.8"
VERSION = "1.12.1"
print(f"Faugus Launcher {VERSION}")
IS_FLATPAK = 'FLATPAK_ID' in os.environ or os.path.exists('/.flatpak-info')

View File

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