diff --git a/README.md b/README.md index 168dd26..e03596b 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.13.10/faugus-launcher_1.13.10-1_all.deb +wget -P ~/faugus-launcher https://github.com/Faugus/faugus-launcher/releases/download/1.13.11/faugus-launcher_1.13.11-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 0d499fb..cd5bb11 100644 --- a/data/faugus-launcher.metainfo.xml +++ b/data/faugus-launcher.metainfo.xml @@ -81,11 +81,13 @@ - +
    -
  • Fixed the Proton Manager showing new releases even without assets
  • -
  • Fixed GE-Proton Latest being downloaded every time you run a game
  • +
  • Added prevent sleep as an option
  • +
  • Fixed banner from URL not being loaded
  • +
  • Pressing delete now removes a global envar
  • +
  • Updated Portuguese translation
diff --git a/data/io.github.Faugus.faugus-launcher.metainfo.xml b/data/io.github.Faugus.faugus-launcher.metainfo.xml index cff0773..9963e2b 100644 --- a/data/io.github.Faugus.faugus-launcher.metainfo.xml +++ b/data/io.github.Faugus.faugus-launcher.metainfo.xml @@ -87,11 +87,13 @@ - +
    -
  • Fixed the Proton Manager showing new releases even without assets
  • -
  • Fixed GE-Proton Latest being downloaded every time you run a game
  • +
  • Added prevent sleep as an option
  • +
  • Fixed banner from URL not being loaded
  • +
  • Pressing delete now removes a global envar
  • +
  • Updated Portuguese translation
diff --git a/faugus_launcher.py b/faugus_launcher.py index 340a1b6..a4e5969 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.13.10" +VERSION = "1.13.11" 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 d944560..6035b92 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project( 'faugus-launcher', - version: '1.13.10', + version: '1.13.11', meson_version: '>=1.2.0', license: 'MIT', license_files: 'LICENSE',