diff --git a/VERSION b/VERSION
index f5eb46413fa..26dc50d001e 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-50.2
\ No newline at end of file
+51.0
\ No newline at end of file
diff --git a/bottles/frontend/main.py b/bottles/frontend/main.py
index fc59cbf7e23..01beb9c6fc5 100644
--- a/bottles/frontend/main.py
+++ b/bottles/frontend/main.py
@@ -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 = """
+
Major change: Redesign New Bottle interface
+ Quality of life improvements:
+
+ - Replace emote-love icon with library in library page
+ - Add toast for "Run Executable"
+
+ Bug fixes:
+
+ - Adding shortcut to Steam resulted an error
+ - Importing backups resulted an error
+ - Steam Runtime automatically enabled when using wine-ge-custom
+ - Various library related fixes, like empty covers, and crashes related to missing entries
+ - Fix various issues related to text encoding
+
+ """
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))
@@ -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()
diff --git a/data/com.usebottles.bottles.metainfo.xml.in b/data/com.usebottles.bottles.metainfo.xml.in
index 5a55e9459d6..4245affd1c5 100644
--- a/data/com.usebottles.bottles.metainfo.xml.in
+++ b/data/com.usebottles.bottles.metainfo.xml.in
@@ -79,6 +79,24 @@
768
+
+
+ Major change: Redesign New Bottle interface
+ Quality of life improvements:
+
+ - Replace emote-love icon with library in library page
+ - Add toast for "Run Executable"
+
+ Bug fixes:
+
+ - Adding shortcut to Steam resulted an error
+ - Importing backups resulted an error
+ - Steam Runtime automatically enabled when using wine-ge-custom
+ - Various library related fixes, like empty covers, and crashes related to missing entries
+ - Fix various issues related to text encoding
+
+
+
diff --git a/meson.build b/meson.build
index 35b4748a462..1d853c5ec18 100644
--- a/meson.build
+++ b/meson.build
@@ -1,6 +1,6 @@
project(
'bottles',
- version: '50.2',
+ version: '51.0',
meson_version: '>= 0.59.0',
default_options: [
'warning_level=2',