This commit is contained in:
Tony George 2020-11-15 14:29:24 +05:30
parent aeb130e840
commit ff089a0925
2 changed files with 5 additions and 8 deletions

View File

@ -56,7 +56,7 @@ public class AppConsole : GLib.Object {
set_locale();
LOG_TIMESTAMP = false;
if (args.length > 1) {
switch (args[1].down()) {
case "--help":

View File

@ -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 ---------------------------------------------------------