From 25578e4fc6bd07efac47e64d575fe1bba26d2fd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Cort=C3=A9z?= Date: Fri, 7 Aug 2015 09:05:59 -0500 Subject: [PATCH] Fixed #59 --- doc/strings.py | 2 +- src/application.py | 2 +- src/main.py | 2 +- src/update/update.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/strings.py b/doc/strings.py index cba373bf..caf1826a 100644 --- a/doc/strings.py +++ b/doc/strings.py @@ -163,7 +163,7 @@ documentation.append(_(u"""* Lists Manager: This dialogue box allows you to mana documentation.append(_(u"""* Edit keystrokes: this opens a dialogue where you can see and edit the shortcuts used in the invisible interface.""")) documentation.append(_(u"""* Account settings: Opens a dialogue box which lets you customize settings for the current account.""")) documentation.append(_(u"""* Global settings: Opens a dialogue which lets you configure settings for the entire application.""")) -documentation.append(_(u"""* Quit: asks whether you want to exit the program. If the answer is yes, it closes the application. If you do not want to be asked for confirmation before exiting, uncheck the checkbox from the global settings dialogue box.""")) +documentation.append(_(u"""* Exit: asks whether you want to exit the program. If the answer is yes, it closes the application. If you do not want to be asked for confirmation before exiting, uncheck the checkbox from the global settings dialogue box.""")) documentation.append(_(u""" """)) documentation.append(_(u"""##### Tweet menu""")) diff --git a/src/application.py b/src/application.py index c31ba9dc..b7b06579 100644 --- a/src/application.py +++ b/src/application.py @@ -5,7 +5,7 @@ if snapshot == False: version = "0.80" update_url = 'http://twblue.es/updates/twblue_ngen.json' else: - version = "10.0" + version = "10.1" update_url = 'http://twblue.es/updates/snapshots_ngen.json' author = u"Manuel Cortéz, Bill Dengler" authorEmail = "manuel@manuelcortez.net" diff --git a/src/main.py b/src/main.py index 5968fb30..dc5a1b8d 100644 --- a/src/main.py +++ b/src/main.py @@ -89,7 +89,7 @@ def setup(): def donation(): dlg = commonMessageDialogs.donation() if dlg == widgetUtils.YES: - webbrowser.open_new_tab("http://twblue.es/donate") + webbrowser.open_new_tab("http://twblue.es/?q=donate") config.app["app-settings"]["donation_dialog_displayed"] = True setup() diff --git a/src/update/update.py b/src/update/update.py index 0153ac5e..151f1716 100644 --- a/src/update/update.py +++ b/src/update/update.py @@ -122,4 +122,4 @@ def call_callback(callback, *args, **kwargs): def donation(): dlg = commonMessageDialogs.donation() if dlg == widgetUtils.YES: - webbrowser.open_new_tab("http://twblue.es/donate") \ No newline at end of file + webbrowser.open_new_tab("http://twblue.es/?q=donate") \ No newline at end of file