bump version and gnome sdk
Some checks failed
Publish Release / Publish binaries (push) Has been cancelled

This commit is contained in:
Dvlv 2024-05-03 18:03:54 +01:00
parent 5b73b2d743
commit aca80f60cd
No known key found for this signature in database
GPG key ID: 1F4BD7220B7FDCFA
3 changed files with 9 additions and 3 deletions

View file

@ -1,7 +1,7 @@
{ {
"app-id": "io.github.dvlv.boxbuddyrs", "app-id": "io.github.dvlv.boxbuddyrs",
"runtime": "org.gnome.Platform", "runtime": "org.gnome.Platform",
"runtime-version": "45", "runtime-version": "46",
"sdk": "org.gnome.Sdk", "sdk": "org.gnome.Sdk",
"sdk-extensions": [ "sdk-extensions": [
"org.freedesktop.Sdk.Extension.rust-stable" "org.freedesktop.Sdk.Extension.rust-stable"

View file

@ -40,6 +40,12 @@
<url type="help">https://dvlv.github.io/BoxBuddyRS</url> <url type="help">https://dvlv.github.io/BoxBuddyRS</url>
<releases> <releases>
<release version="2.2.3" date="2024-05-03">
<description>
<p>Translation Updates</p>
<p>SDK Version Update</p>
</description>
</release>
<release version="2.2.2" date="2024-04-03"> <release version="2.2.2" date="2024-04-03">
<description> <description>
<p>Added Hindi Translations</p> <p>Added Hindi Translations</p>

View file

@ -858,7 +858,7 @@ fn show_about_popup(window: &ApplicationWindow) {
let d = adw::AboutWindow::new(); let d = adw::AboutWindow::new();
d.set_transient_for(Some(window)); d.set_transient_for(Some(window));
d.set_application_name("BoxBuddy"); d.set_application_name("BoxBuddy");
d.set_version("2.2.2"); d.set_version("2.2.3");
d.set_developer_name("Dvlv"); d.set_developer_name("Dvlv");
d.set_license_type(gtk::License::MitX11); d.set_license_type(gtk::License::MitX11);
d.set_comments( d.set_comments(
@ -872,7 +872,7 @@ fn show_about_popup(window: &ApplicationWindow) {
d.set_developers(&["Dvlv", "VortexAcherontic"]); d.set_developers(&["Dvlv", "VortexAcherontic"]);
d.set_application_icon("io.github.dvlv.boxbuddyrs"); d.set_application_icon("io.github.dvlv.boxbuddyrs");
d.set_translator_credits( d.set_translator_credits(
"Vovkiv - RU and UK\nalbanobattistella - IT\nVortexAcherontic - DE\nLuiz-C-Lima - pt_BR", "Vovkiv - RU and UK\nalbanobattistella - IT\nVortexAcherontic - DE\nLuiz-C-Lima - pt_BR\nPyrofanis - EL\nSebrice - ES\nScrambled777 - Hi\nMLSci - CN"
); );
d.present(); d.present();
} }