From 40d6c6f7393d5bb0e608632078b720b9eda7f84a Mon Sep 17 00:00:00 2001 From: Mirko Brombin Date: Sun, 13 Nov 2022 22:35:54 +0100 Subject: [PATCH] 2022.11.14 --- AppImageBuilder.yml | 2 +- VERSION | 2 +- bottles/backend/managers/manager.py | 2 +- bottles/frontend/params.py | 4 +- bottles/frontend/ui/about.blp | 2 +- data/com.usebottles.bottles.metainfo.xml.in | 51 ++++++++++----------- meson.build | 2 +- 7 files changed, 30 insertions(+), 35 deletions(-) diff --git a/AppImageBuilder.yml b/AppImageBuilder.yml index 9b5571c96a..ca7bbfc4d0 100644 --- a/AppImageBuilder.yml +++ b/AppImageBuilder.yml @@ -82,7 +82,7 @@ AppDir: id: com.usebottles.bottles name: Bottles icon: com.usebottles.bottles - version: 2022.10.14.1 + version: 2022.11.14 # Set the python executable as entry point exec: usr/bin/python3.10 diff --git a/VERSION b/VERSION index cca098c112..2fc3756dd5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2022.10.14.1 \ No newline at end of file +2022.11.14 \ No newline at end of file diff --git a/bottles/backend/managers/manager.py b/bottles/backend/managers/manager.py index 04a2a9dd59..fc4369c193 100644 --- a/bottles/backend/managers/manager.py +++ b/bottles/backend/managers/manager.py @@ -763,7 +763,7 @@ def process_bottle(bottle): conf_file_yaml["run_in_terminal"] = False # Migrate old programs to [id] and [name] - # TODO: remove this migration after 2022.10.14.1 + # TODO: remove this migration after 2022.11.14 _temp = {} _changed = False for k, v in conf_file_yaml.get("External_Programs").items(): diff --git a/bottles/frontend/params.py b/bottles/frontend/params.py index 86e88ac5f2..2890646036 100644 --- a/bottles/frontend/params.py +++ b/bottles/frontend/params.py @@ -2,8 +2,8 @@ APP_NAME = "Bottles" APP_NAME_LOWER = APP_NAME.lower() APP_ID = "com.usebottles.bottles" -VERSION = "2022.10.14.1" -VERSION_NUM = "2022.10.14.1" +VERSION = "2022.11.14" +VERSION_NUM = "2022.11.14" BUILD_TYPE = "prod" # Internal settings not user editable diff --git a/bottles/frontend/ui/about.blp b/bottles/frontend/ui/about.blp index b0019ff102..929d3f0578 100644 --- a/bottles/frontend/ui/about.blp +++ b/bottles/frontend/ui/about.blp @@ -3,7 +3,7 @@ using Gtk 4.0; .AdwAboutWindow about_window { application-name: "Bottles"; modal: true; - version: "2022.10.14.1"; + version: "2022.11.14"; copyright: _("Copyright © 2017 Bottles Developers"); website: "https://usebottles.com"; issue-url: "https://github.com/bottlesdevs/Bottles/issues"; diff --git a/data/com.usebottles.bottles.metainfo.xml.in b/data/com.usebottles.bottles.metainfo.xml.in index 00ba1cfd2c..1dbbed7068 100644 --- a/data/com.usebottles.bottles.metainfo.xml.in +++ b/data/com.usebottles.bottles.metainfo.xml.in @@ -97,38 +97,33 @@ 768 - + -

News

  • The PulseAudio Latency setting is now deprecated and enabled by default
  • -
  • Add portal support for setting custom Bottles path thanks to @fries1234
  • -
  • Preferences now uses Generic names for better understanding
  • -
  • Improved Gamescope support
  • -
  • General improvements
  • -
- -

Fixes

-
    -
  • Fix components mismatch on switching bottle
  • -
  • Fix unsafe access to the program"dict" keys
  • -
  • Fix unreachable newly-added programs
  • -
  • Fix for XDG_* vars being read by the runner even when not applicable
  • -
  • Fix charset error parsing acf files
  • -
  • Fix bottles list not being updated when removing a bottle
  • -
  • Fix empty secion in the Run Executable menu
  • -
- -

Translations

-
    -
  • French translations thanks to Thibaut Colin, @jay-tau
  • -
  • Dutch translations thanks to @flipflop97
  • -
  • Turkish translations thanks to @Zayria
  • -
  • Croatian translations thanks to @milotype
  • -
  • Bulgarian translations thanks to @RacerBG
  • -
  • Russian translations thanks to @lenemter
  • -
  • Bengali translations thanks to Anubis
  • +
  • Bottle details automatically show on bottle creation
  • +
  • Bottles now complies with GNOME Circle guidelines
  • +
  • Disable pulseaudio_latency by default.
  • +
  • Fixed a crash during startup due to uninstaller.
  • +
  • Implemented a queue for installing components.
  • +
  • Fixed bottle deletion not working sometimes.
  • +
  • Support for latest dxvk @Blisto91
  • +
  • Fix for DLSS
  • +
  • Added tooltips for program gades
  • +
  • Fix installer completion @jntesteves
  • +
  • Fix gamescope arguments @jntesteves
  • +
  • Added Ctrl + W shortcut for closing windows @A6GibKm
  • +
  • Fixed bottles unsetting XDG_DATA_HOME
  • +
  • French translations thanks to @julroy and @tymmsyde
  • +
  • Turkish translations thanks to @54linux-ea and @ruizlenato
  • +
  • Russian translations thanks to @lenemter and @Smoque
  • Catalan translations thanks to @rogervc
  • +
  • Arabic tran*slations thanks to @TheDarkEvil
  • +
  • Korean translations thanks to @MarongHappy
  • +
  • Protuguese translations thanks to @davipatricio, @SantosSi and @vitorhcl
  • +
  • Galician translations thanks to @NicoSGF64
  • +
  • Hebrew translations thanks to @itayweb
  • +
  • Polish translations thanks to @Mikutut
diff --git a/meson.build b/meson.build index 513dfb0dcb..0bb270c2c3 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project( 'bottles', - version: '2022.10.14.1', + version: '2022.11.14', meson_version: '>= 0.59.0', default_options: [ 'warning_level=2',