Skip to content

Commit

Permalink
release: 51.0 (#2702)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheEvilSkeleton authored Feb 20, 2023
1 parent ac2fdb3 commit 723133c
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
50.2
51.0
17 changes: 17 additions & 0 deletions bottles/frontend/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,22 @@ def __show_importer_view(self, widget=False, *args):
self.win.main_leaf.set_visible_child(self.win.page_importer)

def __show_about_window(self, *_args):
release_notes = """
<p>Major change: Redesign New Bottle interface</p>
<p>Quality of life improvements:</p>
<ul>
<li>Replace emote-love icon with library in library page</li>
<li>Add toast for "Run Executable"</li>
</ul>
<p>Bug fixes:</p>
<ul>
<li>Adding shortcut to Steam resulted an error</li>
<li>Importing backups resulted an error</li>
<li>Steam Runtime automatically enabled when using wine-ge-custom</li>
<li>Various library related fixes, like empty covers, and crashes related to missing entries</li>
<li>Fix various issues related to text encoding</li>
</ul>
"""
builder = Gtk.Builder.new_from_resource("/com/usebottles/bottles/about.ui")
about_window = builder.get_object("about_window")
about_window.set_debug_info(HealthChecker().get_results(plain=True))
Expand Down Expand Up @@ -312,6 +328,7 @@ def __show_about_window(self, *_args):
"Community ❤️ https://usebottles.com/funding"
]
)
about_window.set_release_notes(release_notes)
about_window.set_transient_for(self.win)
about_window.present()

Expand Down
18 changes: 18 additions & 0 deletions data/com.usebottles.bottles.metainfo.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,24 @@
<display_length compare="ge">768</display_length>
</requires>
<releases>
<release version="51.0" date="2023-02-20">
<description>
<p>Major change: Redesign New Bottle interface</p>
<p>Quality of life improvements:</p>
<ul>
<li>Replace emote-love icon with library in library page</li>
<li>Add toast for "Run Executable"</li>
</ul>
<p>Bug fixes:</p>
<ul>
<li>Adding shortcut to Steam resulted an error</li>
<li>Importing backups resulted an error</li>
<li>Steam Runtime automatically enabled when using wine-ge-custom</li>
<li>Various library related fixes, like empty covers, and crashes related to missing entries</li>
<li>Fix various issues related to text encoding</li>
</ul>
</description>
</release>
<release version="50.2" date="2023-01-18">
<description>
<ul>
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: '50.2',
version: '51.0',
meson_version: '>= 0.59.0',
default_options: [
'warning_level=2',
Expand Down

0 comments on commit 723133c

Please sign in to comment.