diff -Nru timeshift-btrfs-1.1.2~16~ubuntu15.10.1/debian/bzr-builder.manifest timeshift-btrfs-1.1.3~18~ubuntu15.10.1/debian/bzr-builder.manifest --- timeshift-btrfs-1.1.2~16~ubuntu15.10.1/debian/bzr-builder.manifest 2015-09-08 01:02:00.000000000 +0000 +++ timeshift-btrfs-1.1.3~18~ubuntu15.10.1/debian/bzr-builder.manifest 2015-10-21 13:02:07.000000000 +0000 @@ -1,2 +1,2 @@ -# bzr-builder format 0.3 deb-version {debupstream}~16 -lp:timeshift-btrfs-tool revid:tony.george.kol@gmail.com-20150908005800-3d2n80lje18xx8jz +# bzr-builder format 0.3 deb-version {debupstream}~18 +lp:timeshift-btrfs-tool revid:tony.george.kol@gmail.com-20151021124911-5dfo6o68ftezk6gf diff -Nru timeshift-btrfs-1.1.2~16~ubuntu15.10.1/debian/changelog timeshift-btrfs-1.1.3~18~ubuntu15.10.1/debian/changelog --- timeshift-btrfs-1.1.2~16~ubuntu15.10.1/debian/changelog 2015-09-08 01:02:00.000000000 +0000 +++ timeshift-btrfs-1.1.3~18~ubuntu15.10.1/debian/changelog 2015-10-21 13:02:07.000000000 +0000 @@ -1,13 +1,11 @@ -timeshift-btrfs (1.1.2~16~ubuntu15.10.1) wily; urgency=low +timeshift-btrfs (1.1.3~18~ubuntu15.10.1) wily; urgency=low * Auto build. - -- Tony George Tue, 08 Sep 2015 01:02:00 +0000 + -- Tony George Wed, 21 Oct 2015 13:02:07 +0000 -timeshift-btrfs (1.1.2) trusty; urgency=low +timeshift-btrfs (1.1.3) trusty; urgency=low - * Fixed ambiguous references to Gtk.ListStore + * Minor changes - * Use libgee-0.8 and valac-0.26; - - -- Tony George Mon, 09 Sep 2015 10:00:00 +0530 + -- Tony George Wed, 21 Oct 2015 10:00:00 +0530 diff -Nru timeshift-btrfs-1.1.2~16~ubuntu15.10.1/src/DonationWindow.vala timeshift-btrfs-1.1.3~18~ubuntu15.10.1/src/DonationWindow.vala --- timeshift-btrfs-1.1.2~16~ubuntu15.10.1/src/DonationWindow.vala 2015-09-08 01:01:59.000000000 +0000 +++ timeshift-btrfs-1.1.3~18~ubuntu15.10.1/src/DonationWindow.vala 2015-10-21 13:02:07.000000000 +0000 @@ -34,16 +34,16 @@ public class DonationWindow : Dialog { public DonationWindow() { set_title(_("Donate")); - window_position = WindowPosition.CENTER_ON_PARENT; + window_position = WindowPosition.CENTER_ON_PARENT; set_destroy_with_parent (true); set_modal (true); set_deletable(true); - set_skip_taskbar_hint(false); - set_default_size (400, 20); + set_skip_taskbar_hint(false); + set_default_size (400, 20); icon = get_app_icon(16); //vbox_main - Box vbox_main = get_content_area(); + Box vbox_main = get_content_area(); vbox_main.margin = 6; vbox_main.homogeneous = false; @@ -51,25 +51,32 @@ //lbl_message Label lbl_message = new Gtk.Label(""); - string msg = _("Did you find this software useful?\n\nYou can buy me a coffee or make a donation via PayPal to show your support. Or just drop me an email and say Hi.\n\nThis application is completely free and will continue to remain that way. Your contributions will help in keeping this project alive and to develop it further.\n\nFeel free to drop me an email if you find any issues or if you have suggestions for improvement.\n\nRegards,\nTony George\nteejeetech@gmail.com"); + string msg = _("Did you find this software useful?\n\nYou can buy me a coffee or make a donation via PayPal to show your support. Or just drop me an email and say Hi. This application is completely free and will continue to remain that way. Your contributions will help in keeping this project alive and improving it further.\n\nFeel free to send me an email if you find any issues in this application or if you need any changes. Suggestions and feedback are always welcome.\n\nThanks,\nTony George\n(teejeetech@gmail.com)"); lbl_message.label = msg; lbl_message.wrap = true; vbox_main.pack_start(lbl_message,true,true,0); //vbox_actions - Box vbox_actions = new Box (Orientation.VERTICAL, 6); + Box vbox_actions = new Box (Orientation.VERTICAL, 6); vbox_actions.margin_left = 50; vbox_actions.margin_right = 50; vbox_actions.margin_top = 20; vbox_main.pack_start(vbox_actions,false,false,0); - //btn_donate - Button btn_donate = new Button.with_label(" " + _("Donate via PayPal") + " "); - vbox_actions.add(btn_donate); - btn_donate.clicked.connect(()=>{ - xdg_open("https://www.paypal.com/cgi-bin/webscr?business=teejee2009@gmail.com&cmd=_xclick¤cy_code=USD&amount=10&item_name=Selene%20Donation"); + //btn_donate_paypal + Button btn_donate_paypal = new Button.with_label(" " + _("Donate with PayPal") + " "); + vbox_actions.add(btn_donate_paypal); + btn_donate_paypal.clicked.connect(()=>{ + xdg_open("https://www.paypal.com/cgi-bin/webscr?business=teejeetech@gmail.com&cmd=_xclick¤cy_code=USD&amount=10&item_name=Timeshift%20Donation"); }); + //btn_donate_wallet + Button btn_donate_wallet = new Button.with_label(" " + _("Donate with Google Wallet") + " "); + vbox_actions.add(btn_donate_wallet); + btn_donate_wallet.clicked.connect(()=>{ + xdg_open("https://support.google.com/mail/answer/3141103?hl=en"); + }); + //btn_send_email Button btn_send_email = new Button.with_label(" " + _("Send Email") + " "); vbox_actions.add(btn_send_email); diff -Nru timeshift-btrfs-1.1.2~16~ubuntu15.10.1/src/Main.vala timeshift-btrfs-1.1.3~18~ubuntu15.10.1/src/Main.vala --- timeshift-btrfs-1.1.2~16~ubuntu15.10.1/src/Main.vala 2015-09-08 01:01:59.000000000 +0000 +++ timeshift-btrfs-1.1.3~18~ubuntu15.10.1/src/Main.vala 2015-10-21 13:02:07.000000000 +0000 @@ -39,7 +39,7 @@ public Main App; public const string AppName = "Timeshift BTRFS"; public const string AppShortName = "timeshift-btrfs"; -public const string AppVersion = "1.1.2"; +public const string AppVersion = "1.1.3"; public const string AppAuthor = "Tony George"; public const string AppAuthorEmail = "teejee2008@gmail.com"; diff -Nru timeshift-btrfs-1.1.2~16~ubuntu15.10.1/timeshift-btrfs.pot timeshift-btrfs-1.1.3~18~ubuntu15.10.1/timeshift-btrfs.pot --- timeshift-btrfs-1.1.2~16~ubuntu15.10.1/timeshift-btrfs.pot 2015-09-08 01:01:59.000000000 +0000 +++ timeshift-btrfs-1.1.3~18~ubuntu15.10.1/timeshift-btrfs.pot 2015-10-21 13:02:07.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: timeshift-btrfs 1.6\n" "Report-Msgid-Bugs-To: teejee2008@gmail.com\n" -"POT-Creation-Date: 2015-09-07 20:56-0400\n" +"POT-Creation-Date: 2015-10-21 18:16+0530\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -339,18 +339,16 @@ "Did you find this software useful?\n" "\n" "You can buy me a coffee or make a donation via PayPal to show your support. " -"Or just drop me an email and say Hi.\n" +"Or just drop me an email and say Hi. This application is completely free and " +"will continue to remain that way. Your contributions will help in keeping " +"this project alive and improving it further.\n" "\n" -"This application is completely free and will continue to remain that way. " -"Your contributions will help in keeping this project alive and to develop it " -"further.\n" +"Feel free to send me an email if you find any issues in this application or " +"if you need any changes. Suggestions and feedback are always welcome.\n" "\n" -"Feel free to drop me an email if you find any issues or if you have " -"suggestions for improvement.\n" -"\n" -"Regards,\n" +"Thanks,\n" "Tony George\n" -"teejeetech@gmail.com" +"(teejeetech@gmail.com)" msgstr "" #: Main.vala:1895 @@ -382,8 +380,12 @@ msgid "Donate" msgstr "" +#: DonationWindow.vala:74 +msgid "Donate with Google Wallet" +msgstr "" + #: DonationWindow.vala:67 -msgid "Donate via PayPal" +msgid "Donate with PayPal" msgstr "" #: AboutWindow.vala:354 @@ -768,7 +770,7 @@ msgid "Num" msgstr "" -#: DonationWindow.vala:88 Utility.vala:2212 +#: DonationWindow.vala:95 Utility.vala:2212 msgid "OK" msgstr "" @@ -915,7 +917,7 @@ msgid "Select the snapshot to restore" msgstr "" -#: DonationWindow.vala:74 +#: DonationWindow.vala:81 msgid "Send Email" msgstr "" @@ -1127,7 +1129,7 @@ msgid "View TimeShift Logs" msgstr "" -#: DonationWindow.vala:81 +#: DonationWindow.vala:88 msgid "Visit Website" msgstr ""