Skip to content

Commit

Permalink
2022.11.14
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkobrombin committed Nov 13, 2022
1 parent fbe9f20 commit 40d6c6f
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 35 deletions.
2 changes: 1 addition & 1 deletion AppImageBuilder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2022.10.14.1
2022.11.14
2 changes: 1 addition & 1 deletion bottles/backend/managers/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down
4 changes: 2 additions & 2 deletions bottles/frontend/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion bottles/frontend/ui/about.blp
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
51 changes: 23 additions & 28 deletions data/com.usebottles.bottles.metainfo.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -97,38 +97,33 @@
<display_length compare="ge">768</display_length>
</requires>
<releases>
<release version="2022.10.14.1" date="2022-10-14">
<release version="2022.11.14" date="2022-11-14">
<description>
<p>News</p>
<ul>
<li>The PulseAudio Latency setting is now deprecated and enabled by default</li>
<li>Add portal support for setting custom Bottles path thanks to @fries1234</li>
<li>Preferences now uses Generic names for better understanding</li>
<li>Improved Gamescope support</li>
<li>General improvements</li>
</ul>

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

<p>Translations</p>
<ul>
<li>French translations thanks to Thibaut Colin, @jay-tau</li>
<li>Dutch translations thanks to @flipflop97</li>
<li>Turkish translations thanks to @Zayria</li>
<li>Croatian translations thanks to @milotype</li>
<li>Bulgarian translations thanks to @RacerBG</li>
<li>Russian translations thanks to @lenemter</li>
<li>Bengali translations thanks to Anubis</li>
<li>Bottle details automatically show on bottle creation</li>
<li>Bottles now complies with GNOME Circle guidelines</li>
<li>Disable pulseaudio_latency by default.</li>
<li>Fixed a crash during startup due to uninstaller.</li>
<li>Implemented a queue for installing components.</li>
<li>Fixed bottle deletion not working sometimes.</li>
<li>Support for latest dxvk @Blisto91</li>
<li>Fix for DLSS</li>
<li>Added tooltips for program gades</li>
<li>Fix installer completion @jntesteves</li>
<li>Fix gamescope arguments @jntesteves</li>
<li>Added Ctrl + W shortcut for closing windows @A6GibKm</li>
<li>Fixed bottles unsetting XDG_DATA_HOME</li>
<li>French translations thanks to @julroy and @tymmsyde</li>
<li>Turkish translations thanks to @54linux-ea and @ruizlenato</li>
<li>Russian translations thanks to @lenemter and @Smoque</li>
<li>Catalan translations thanks to @rogervc</li>
<li>Arabic tran*slations thanks to @TheDarkEvil</li>
<li>Korean translations thanks to @MarongHappy</li>
<li>Protuguese translations thanks to @davipatricio, @SantosSi and @vitorhcl</li>
<li>Galician translations thanks to @NicoSGF64</li>
<li>Hebrew translations thanks to @itayweb</li>
<li>Polish translations thanks to @Mikutut</li>
</ul>
</description>
</release>
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -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',
Expand Down

0 comments on commit 40d6c6f

Please sign in to comment.