From 5568bbc6bf505c4f8ea93fc460dbeff6f4d36e15 Mon Sep 17 00:00:00 2001 From: Marvin W Date: Tue, 7 Feb 2023 21:03:55 +0100 Subject: [PATCH] Prepare for 0.4 release --- README.md | 2 +- main/src/ui/application.vala | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8d1bf18c..c253c37e 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Contribute License ------- Dino - Modern Jabber/XMPP Client using GTK+/Vala - Copyright (C) 2016-2022 Dino contributors + Copyright (C) 2016-2023 Dino contributors 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 diff --git a/main/src/ui/application.vala b/main/src/ui/application.vala index 6f0fdf62..36f08f60 100644 --- a/main/src/ui/application.vala +++ b/main/src/ui/application.vala @@ -264,14 +264,16 @@ public class Dino.Ui.Application : Adw.Application, Dino.Application { string? version = Dino.get_version().strip().length == 0 ? null : Dino.get_version(); if (version != null && !version.contains("git")) { switch (version.substring(0, 3)) { - case "0.2": version = @"$version - Mexican Caribbean Coral Reefs"; break; - case "0.3": version = @"$version - Theikenmeer"; break; + case "0.2": version = @"$version - Mexican Caribbean Coral Reefs"; break; + case "0.3": version = @"$version - Theikenmeer"; break; + case "0.4": version = @"$version - Ilulissat"; break; } } #if Adw_1_2 Adw.AboutWindow about_window = new Adw.AboutWindow(); about_window.application_icon = "im.dino.Dino"; about_window.application_name = "Dino"; + about_window.issue_url = "https://github.com/dino/dino/issues"; #else Gtk.AboutDialog about_window = new Gtk.AboutDialog(); about_window.logo_icon_name = "im.dino.Dino"; @@ -283,9 +285,8 @@ public class Dino.Ui.Application : Adw.Application, Dino.Application { about_window.modal = true; about_window.title = _("About Dino"); about_window.version = version; - about_window.comments = "Dino. Communicating happiness."; about_window.website = "https://dino.im/"; - about_window.copyright = "Copyright © 2016-2022 - Dino Team"; + about_window.copyright = "Copyright © 2016-2023 - Dino Team"; about_window.license_type = License.GPL_3_0; if (!use_csd()) {