From ff089a09250cfd0c59e0c4867b3720a8292cae6d Mon Sep 17 00:00:00 2001 From: Tony George Date: Sun, 15 Nov 2020 14:29:24 +0530 Subject: [PATCH] Cleanup --- src/Console/AppConsole.vala | 2 +- src/Utility/Gtk/DonationWindow.vala | 11 ++++------- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index fdff544..3790697 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -56,7 +56,7 @@ public class AppConsole : GLib.Object { set_locale(); LOG_TIMESTAMP = false; - + if (args.length > 1) { switch (args[1].down()) { case "--help": diff --git a/src/Utility/Gtk/DonationWindow.vala b/src/Utility/Gtk/DonationWindow.vala index 6a446be..f98456f 100755 --- a/src/Utility/Gtk/DonationWindow.vala +++ b/src/Utility/Gtk/DonationWindow.vala @@ -82,23 +82,20 @@ public class DonationWindow : Gtk.Window { add_label(msg); - msg = _("Since this a free application there is no dedicated support for this app. You can use the GitHub issue tracker for reporting issues, or post your questions on the Linux Mint forums. Please avoid reporting issues by email."); + msg = _("This a free application that is provided without warranty or support. You can use the GitHub issue tracker for reporting issues, or post your questions on the Linux Mint forums. Please avoid reporting issues by email."); add_label(msg); hbox = add_vbox(); - add_button(hbox, _("GitHub"), - "https://github.com/teejee2008/%s/issues".printf(appname.down())); + add_button(hbox, _("GitHub"), "https://github.com/teejee2008/%s/issues".printf(appname.down())); if (has_wiki){ - add_button(hbox, _("Wiki"), - "https://github.com/teejee2008/%s/wiki".printf(appname.down())); + add_button(hbox, _("Wiki"), "https://github.com/teejee2008/%s/wiki".printf(appname.down())); } - add_button(hbox, _("Website"), - "https://teejeetech.in/"); + add_button(hbox, _("Website"), "https://teejeetech.in/"); // close window ---------------------------------------------------------