Skip to content

Commit

Permalink
Version v2024.3.20
Browse files Browse the repository at this point in the history
App metadata information changed for the new version, and set the runtime-version to 46 for GNOME 46.
  • Loading branch information
giantpinkrobots committed Mar 20, 2024
1 parent 4f4af13 commit a175291
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 24 deletions.
9 changes: 4 additions & 5 deletions data/io.github.giantpinkrobots.varia.metainfo.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,11 @@ Using Varia is very easy and straightforward, and with its aria2 backend it can
</screenshots>

<releases>
<release version="v2024.2.29-2" date="2024-03-03">
<release version="v2024.3.20" date="2024-03-20">
<description translatable="yes">
<p>- Support for Firefox and Chromium extension.</p>
<p>- Initial torrenting support.</p>
<p>- Remote mode that allows connection to a remote aria2 instance.</p>
<p>- Background mode that allows the window to be hidden while still downloading.</p>
<p>- Shutdown after completion option added.</p>
<p>- Update to GNOME 46 and Libadwaita 1.5.</p>
<p>- Japanese language support.</p>
<p>- Bug fixes and adjustments.</p>
</description>
</release>
Expand Down
2 changes: 1 addition & 1 deletion io.github.giantpinkrobots.varia.json
Original file line number Diff line number Diff line change
@@ -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.",
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -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', ],
)
Expand Down
2 changes: 1 addition & 1 deletion src/variamain.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
variaVersion = "v2024.2.29-2"
variaVersion = "v2024.3.20"

import gi
import sys
Expand Down
22 changes: 6 additions & 16 deletions src/window/sidebar.py
Original file line number Diff line number Diff line change
Expand Up @@ -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('''<p>v2024.2.29:</p>
<ul><li>Support for Firefox and Chromium extension.</li>
<li>Initial torrenting support.</li>
<li>Remote mode that allows connection to a remote aria2 instance.</li>
<li>Background mode that allows the window to be hidden while still downloading.</li>
<li>Bug fixes and adjustments.</li></ul>
<p>v2024.2.29-1:</p>
<ul><li>Hotfix: an error that prevented the app from running in the Flathub release.</li>
<li>German translation updates.</li>
<li>Dutch translation updates.</li></ul>
<p>v2024.2.29-2:</p>
<ul><li>Hotfix: an error in the browser extension integration.</li>
<li>Tiny UI adjustments.</li>
<li>Russian translation updates.</li>
<li>New Norwegian (Bokmål) translation.</li></ul>''')
dialog.set_release_notes_version("v2024.3.20")
dialog.set_release_notes('''<p>v2024.3.20:</p>
<ul><li>Shutdown after completion option added.</li>
<li>Update to GNOME 46 and Libadwaita 1.5.</li>
<li>Japanese language support.</li>
<li>Bug fixes and adjustments.</li></ul>''')

dialog.present(self)

Expand Down

0 comments on commit a175291

Please sign in to comment.