diff --git a/src/application.py b/src/application.py index 400182d3..cccec26b 100644 --- a/src/application.py +++ b/src/application.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- name = 'TW Blue' -snapshot = False +snapshot = True if snapshot == False: version = "0.48" update_url = 'http://twblue.com.mx/updates/tw_blue.json' @@ -8,13 +8,13 @@ else: version = "4" update_url = 'http://twblue.com.mx/updates/snapshots.json' author = u"Manuel Cortéz" -authorEmail = "info@twblue.com.mx" +authorEmail = "manuel@manuelcortez.net" copyright = u"copyright (C) 2013-2014, Manuel cortéz" description = u"TW Blue is an app designed to use Twitter in a simple and fast way and avoiding, as far as possible, the consumtion of excessive resources of the machine where it’s running. With this app you’ll have access to most twitter features." translators = [u"Bryner Villalobos (English)", u"Mohammed Al Shara (Arabic)", u"Salva Doménech, Juan Carlos Rivilla(Catalan)", u"Manuel cortéz(Spanish)", u"Sukil Etxenike Arizaleta(Basque)", u"Jani Kinnunen(finnish)", u"Javier Currás, José Manuel Delicado, Alba Quinteiro(Galician)", u"Robert Osztolykan(Hungarian)", u"Paweł Masarczyk(Polish)", u"Odenilton Júnior Santos(Portuguese)", u"Alexander Jaszyn(Russian)", u"Burak (Turkish)"] url = u"http://twblue.com.mx" -#report_bugs_url = "http://twblue.com.mx/errores/api/soap/mantisconnect.php?wsdl" +report_bugs_url = "http://twblue.com.mx/bugs/api/soap/mantisconnect.php?wsdl" # Tokens app_key = '8pDLbyOW3saYnvSZ4uLFg' -app_secret = 'YsgdrzY9B4yyYvYsyee78rKI3GshjHpenVS9LnFJXY' \ No newline at end of file +app_secret = 'YsgdrzY9B4yyYvYsyee78rKI3GshjHpenVS9LnFJXY' \ No newline at end of file diff --git a/src/extra/AudioUploader/gui.py b/src/extra/AudioUploader/gui.py index ec21dc88..eaacd59f 100644 --- a/src/extra/AudioUploader/gui.py +++ b/src/extra/AudioUploader/gui.py @@ -68,8 +68,8 @@ class audioDialog(wx.Dialog): services = [] if config.main["services"]["dropbox_token"] != "": services.append("Dropbox") - service.append("TwUp") - services.append("SNDUp") + services.append("TwUp") + services.append("SNDUp") return services def onPause(self, ev): diff --git a/src/extra/autocompletionUsers/wx_settings.py b/src/extra/autocompletionUsers/wx_settings.py index 03e99c82..0add21f8 100644 --- a/src/extra/autocompletionUsers/wx_settings.py +++ b/src/extra/autocompletionUsers/wx_settings.py @@ -3,7 +3,7 @@ import wx class autocompletionSettingsDialog(wx.Dialog): def __init__(self): - super(autocompletionSettingsDialog, self).__init__(parent=None, id=-1, title=_(u"Autocompletion settings")) + super(autocompletionSettingsDialog, self).__init__(parent=None, id=-1, title=_(u"Autocomplete users’ settings")) panel = wx.Panel(self) sizer = wx.BoxSizer(wx.VERTICAL) self.followers_buffer = wx.CheckBox(panel, -1, _(u"Add users from followers buffer")) diff --git a/src/gui/dialogs/configuration.py b/src/gui/dialogs/configuration.py index ff9a5741..95bc12c1 100644 --- a/src/gui/dialogs/configuration.py +++ b/src/gui/dialogs/configuration.py @@ -51,7 +51,7 @@ class general(wx.Panel): langBox.Add(language, 0, wx.ALL, 5) langBox.Add(self.language, 0, wx.ALL, 5) sizer.Add(langBox, 0, wx.ALL, 5) - self.au = wx.Button(self, -1, u"Configure autocompltion") + self.au = wx.Button(self, -1, _(u"Set the autocomplete function")) # self.Bind(wx.EVT_BUTTON, self.autocompletion, au) self.ask_at_exit = wx.CheckBox(self, -1, _(U"ask before exiting TwBlue?")) self.ask_at_exit.SetValue(config.main["general"]["ask_at_exit"]) diff --git a/src/gui/dialogs/message.py b/src/gui/dialogs/message.py index 3a2ae1f5..c4d670b7 100644 --- a/src/gui/dialogs/message.py +++ b/src/gui/dialogs/message.py @@ -315,7 +315,7 @@ class reply(tweet): super(reply, self).__init__(message, title, text, parent) self.in_reply_to = parent.db.settings[parent.name_buffer][parent.list.get_selected()]["id"] self.text.SetInsertionPoint(len(self.text.GetValue())) - self.mentionAll = wx.Button(self, -1, _(u"Mention to all"), size=wx.DefaultSize) + self.mentionAll = wx.Button(self, -1, _(u"Mention &to all"), size=wx.DefaultSize) self.mentionAll.Disable() self.mentionAll.Bind(wx.EVT_BUTTON, self.mentionAllUsers) self.buttonsBox1.Add(self.mentionAll, 0, wx.ALL, 5) diff --git a/src/main.py b/src/main.py index 7cf5f49c..18c65793 100644 --- a/src/main.py +++ b/src/main.py @@ -42,6 +42,7 @@ if hasattr(sys, 'frozen'): sys.stdout = open(paths.logs_path("stdout.log"), 'w') app = wx.App() +#app = wx.App(redirect=True, useBestVisual=True, filename=paths.logs_path('tracebacks.log')) configured = False configs = [] for i in os.listdir(paths.config_path()): diff --git a/src/setup.py b/src/setup.py index 2b7eed40..e4c02dde 100644 --- a/src/setup.py +++ b/src/setup.py @@ -34,7 +34,7 @@ def get_architecture_files(): ("Microsoft.VC90.MFC", glob("../windows-dependencies/x86/Microsoft.VC90.MFC/*")),] elif platform.architecture()[0][:2] == "64": return [ - ("", ["../windows-dependencies/x64/oggenc2.exe", "../windows-dependencies/x86/bootstrap.exe"]), + ("", ["../windows-dependencies/x64/oggenc2.exe", "../windows-dependencies/x64/bootstrap.exe"]), ("Microsoft.VC90.CRT", glob("../windows-dependencies/x64/Microsoft.VC90.CRT/*")), ("Microsoft.VC90.MFC", glob("../windows-dependencies/x64/Microsoft.VC90.MFC/*")),]