"),
@@ -487,6 +489,14 @@ bz_application_about_action (GSimpleAction *action,
window = gtk_application_get_active_window (GTK_APPLICATION (self));
dialog = adw_about_dialog_new ();
+ release_notes_bytes = g_resources_lookup_data (
+ "/io/github/kolunmi/Bazaar/release-notes.xml",
+ G_RESOURCE_LOOKUP_FLAGS_NONE,
+ NULL);
+
+ if (release_notes_bytes != NULL)
+ release_notes_text = g_bytes_get_data (release_notes_bytes, NULL);
+
g_object_set (
dialog,
"application-name", "Bazaar",
@@ -500,6 +510,7 @@ bz_application_about_action (GSimpleAction *action,
"license-type", GTK_LICENSE_GPL_3_0,
"website", "https://github.com/kolunmi/bazaar",
"issue-url", "https://github.com/kolunmi/bazaar/issues",
+ "release-notes", release_notes_text,
NULL);
adw_dialog_present (dialog, GTK_WIDGET (window));
diff --git a/src/release-notes.xml b/src/release-notes.xml
new file mode 100644
index 00000000..22cf698b
--- /dev/null
+++ b/src/release-notes.xml
@@ -0,0 +1,8 @@
+This release comes with the following improvements:
+
+ - Add "On the go" section and mobile category
+ - Greatly decrease reported memory usage
+ - Rework search UI
+ - Rework page stack navigation
+ - Change screenshot dialog to page
+