diff --git a/data/io.github.giantpinkrobots.varia.metainfo.xml.in b/data/io.github.giantpinkrobots.varia.metainfo.xml.in index 5b5ea7c..bd9cb12 100644 --- a/data/io.github.giantpinkrobots.varia.metainfo.xml.in +++ b/data/io.github.giantpinkrobots.varia.metainfo.xml.in @@ -59,12 +59,11 @@ Using Varia is very easy and straightforward, and with its aria2 backend it can - + -

- Support for Firefox and Chromium extension.

-

- Initial torrenting support.

-

- Remote mode that allows connection to a remote aria2 instance.

-

- Background mode that allows the window to be hidden while still downloading.

+

- Shutdown after completion option added.

+

- Update to GNOME 46 and Libadwaita 1.5.

+

- Japanese language support.

- Bug fixes and adjustments.

diff --git a/io.github.giantpinkrobots.varia.json b/io.github.giantpinkrobots.varia.json index 466fddf..fa388b6 100644 --- a/io.github.giantpinkrobots.varia.json +++ b/io.github.giantpinkrobots.varia.json @@ -1,7 +1,7 @@ { "app-id" : "io.github.giantpinkrobots.varia", "runtime" : "org.gnome.Platform", - "runtime-version" : "master", + "runtime-version" : "46", "sdk" : "org.gnome.Sdk", "command" : "varia", "//": "Justifications for the permissions: This program utilizes aria2c, and aria2c requires the networking permission and the xdg-download directory in order to download files. It also has a 'shut down once all downloads are completed' feature that requires access to org.freedesktop.login1.", diff --git a/meson.build b/meson.build index 012b278..f81c75d 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('varia', - version: 'v2024.2.29-2', + version: 'v2024.3.20', meson_version: '>= 0.62.0', default_options: [ 'warning_level=2', 'werror=false', ], ) diff --git a/src/variamain.py b/src/variamain.py index 5fbf53e..8101287 100644 --- a/src/variamain.py +++ b/src/variamain.py @@ -1,4 +1,4 @@ -variaVersion = "v2024.2.29-2" +variaVersion = "v2024.3.20" import gi import sys diff --git a/src/window/sidebar.py b/src/window/sidebar.py index 60aceba..a56600a 100644 --- a/src/window/sidebar.py +++ b/src/window/sidebar.py @@ -167,22 +167,12 @@ def show_about(app, variaapp, self, variaVersion): dialog.set_application_icon("io.github.giantpinkrobots.varia") dialog.set_translator_credits(_("translator-credits")) dialog.set_artists(["Jakub Steiner"]) - dialog.set_release_notes_version("v2024.2.29-2") - dialog.set_release_notes('''

v2024.2.29:

- -

v2024.2.29-1:

- -

v2024.2.29-2:

- ''') + dialog.set_release_notes_version("v2024.3.20") + dialog.set_release_notes('''

v2024.3.20:

+ ''') dialog.present(self)