diff --git a/README.md b/README.md index 7b4b976..b83f818 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.1/faugus-launcher_1.14.1-1_all.deb +wget -P ~/faugus-launcher https://github.com/Faugus/faugus-launcher/releases/download/1.14.2/faugus-launcher_1.14.2-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 b20171b..069a946 100644 --- a/data/faugus-launcher.metainfo.xml +++ b/data/faugus-launcher.metainfo.xml @@ -81,15 +81,12 @@ - +
    -
  • Updated Dutch translation
  • -
  • Updated Portuguese translation
  • -
  • Added support to Asahi Linux
  • -
  • Fix allow protonfixes for Steam games
  • -
  • Added a message when SLR download fails due to internet connection error
  • -
  • Added global settings for new entries
  • +
  • Fixed GE-Proton being redownloaded every time
  • +
  • Fixed permissions for Python executables
  • +
  • Improved search performance
diff --git a/data/io.github.Faugus.faugus-launcher.metainfo.xml b/data/io.github.Faugus.faugus-launcher.metainfo.xml index cc9f1d9..6a7f3c1 100644 --- a/data/io.github.Faugus.faugus-launcher.metainfo.xml +++ b/data/io.github.Faugus.faugus-launcher.metainfo.xml @@ -87,15 +87,12 @@ - +
    -
  • Updated Dutch translation
  • -
  • Updated Portuguese translation
  • -
  • Added support to Asahi Linux
  • -
  • Fix allow protonfixes for Steam games
  • -
  • Added a message when SLR download fails due to internet connection error
  • -
  • Added global settings for new entries
  • +
  • Fixed GE-Proton being redownloaded every time
  • +
  • Fixed permissions for Python executables
  • +
  • Improved search performance
diff --git a/faugus_launcher.py b/faugus_launcher.py index a88f47b..4006529 100644 --- a/faugus_launcher.py +++ b/faugus_launcher.py @@ -26,7 +26,7 @@ from filelock import FileLock, Timeout from faugus.config_manager import * from faugus.dark_theme import * -VERSION = "1.14.1" +VERSION = "1.14.2" 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 f301f10..f426342 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project( 'faugus-launcher', - version: '1.14.1', + version: '1.14.2', meson_version: '>=1.2.0', license: 'MIT', license_files: 'LICENSE',