Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions data/io.github.halfmexican.Mingle.metainfo.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,16 @@
</screenshot>
</screenshots>
<releases>
<release version="0.30" date="2026-4-9">
<description>
<p>What's New</p>
<ul>
<li>10x installation size reduction</li>
<li>Various Fixes</li>
</ul>
<p>Thank you @v1993 for your contributions</p>
</description>
</release>
<release version="0.20" date="2025-2-17">
<description>
<p>What's New</p>
Expand Down
2 changes: 1 addition & 1 deletion io.github.halfmexican.Mingle.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"app-id" : "io.github.halfmexican.Mingle",
"runtime" : "org.gnome.Platform",
"runtime-version" : "48",
"runtime-version" : "50",
"sdk" : "org.gnome.Sdk",
"command" : "mingle",
"finish-args" : [
Expand Down
9 changes: 5 additions & 4 deletions src/application.vala
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* application.vala
*
* Copyright 2023-2024 José Hunter
* Copyright 2023-2026 José Hunter
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -62,17 +62,18 @@ namespace Mingle {
string[] developers = {
"José Hunter https://github.com/halfmexican",
"kramo https://kramo.page",
"QuazarOmega https://github.com/quazar-omega"
"QuazarOmega https://github.com/quazar-omega",
"Valeri https://github.com/v1993"
};
var about = new Adw.AboutDialog () {
application_name = "mingle",
application_icon = "io.github.halfmexican.Mingle",
website = "https://github.com/halfmexican/mingle",
issue_url = "https://github.com/halfmexican/mingle/issues",
developer_name = "José Hunter",
version = "0.20",
version = "0.3",
developers = developers,
copyright = "© 2025 José Hunter",
copyright = "© 2026 José Hunter",
license_type = Gtk.License.GPL_3_0,
};
about.present (this.active_window);
Expand Down
Loading