From 83041e542ed81e35bed87e7f1c250da78434e436 Mon Sep 17 00:00:00 2001 From: Faugus Date: Thu, 19 Feb 2026 20:53:21 -0300 Subject: [PATCH] Version 1.14.4 --- README.md | 2 +- data/faugus-launcher.metainfo.xml | 8 ++++---- data/io.github.Faugus.faugus-launcher.metainfo.xml | 8 ++++---- faugus_launcher.py | 2 +- meson.build | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index b7fcbdc..0da7a81 100644 --- a/README.md +++ b/README.md @@ -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.14.3/faugus-launcher_1.14.3-1_all.deb +wget -P ~/faugus-launcher https://github.com/Faugus/faugus-launcher/releases/download/1.14.4/faugus-launcher_1.14.4-1_all.deb sudo apt install -y ~/faugus-launcher/*.deb sudo rm -r ~/faugus-launcher ``` diff --git a/data/faugus-launcher.metainfo.xml b/data/faugus-launcher.metainfo.xml index 886b47a..13a958e 100644 --- a/data/faugus-launcher.metainfo.xml +++ b/data/faugus-launcher.metainfo.xml @@ -81,12 +81,12 @@ - +
    -
  • Fixed duplicating an entry without giving a title
  • -
  • Fixed LSFG Performance Mode and HDR Mode
  • -
  • Added Present Mode to LSFG
  • +
  • Added support to JXL images for icons and banners
  • +
  • Now prevents non latin characters in title
  • +
  • A backup system was added for the games.json file to prevent data loss and protect the user’s library
diff --git a/data/io.github.Faugus.faugus-launcher.metainfo.xml b/data/io.github.Faugus.faugus-launcher.metainfo.xml index fdfc025..1e66711 100644 --- a/data/io.github.Faugus.faugus-launcher.metainfo.xml +++ b/data/io.github.Faugus.faugus-launcher.metainfo.xml @@ -87,12 +87,12 @@ - +
    -
  • Fixed duplicating an entry without giving a title
  • -
  • Fixed LSFG Performance Mode and HDR Mode
  • -
  • Added Present Mode to LSFG
  • +
  • Added support to JXL images for icons and banners
  • +
  • Now prevents non latin characters in title
  • +
  • A backup system was added for the games.json file to prevent data loss and protect the user’s library
diff --git a/faugus_launcher.py b/faugus_launcher.py index 4bf2350..c0976d0 100644 --- a/faugus_launcher.py +++ b/faugus_launcher.py @@ -27,7 +27,7 @@ from filelock import FileLock, Timeout from faugus.config_manager import * from faugus.dark_theme import * -VERSION = "1.14.3" +VERSION = "1.14.4" print(f"Faugus Launcher {VERSION}") IS_FLATPAK = 'FLATPAK_ID' in os.environ or os.path.exists('/.flatpak-info') diff --git a/meson.build b/meson.build index ff06759..4e5c798 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project( 'faugus-launcher', - version: '1.14.3', + version: '1.14.4', meson_version: '>=1.2.0', license: 'MIT', license_files: 'LICENSE',