Changes on snapshot 4; audio uploader fixes

This commit is contained in:
Manuel Cortez 2014-11-29 11:07:06 -06:00
parent acb8c5acd3
commit acb3cce1d6
7 changed files with 11 additions and 10 deletions

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
name = 'TW Blue' name = 'TW Blue'
snapshot = False snapshot = True
if snapshot == False: if snapshot == False:
version = "0.48" version = "0.48"
update_url = 'http://twblue.com.mx/updates/tw_blue.json' update_url = 'http://twblue.com.mx/updates/tw_blue.json'
@ -8,13 +8,13 @@ else:
version = "4" version = "4"
update_url = 'http://twblue.com.mx/updates/snapshots.json' update_url = 'http://twblue.com.mx/updates/snapshots.json'
author = u"Manuel Cortéz" author = u"Manuel Cortéz"
authorEmail = "info@twblue.com.mx" authorEmail = "manuel@manuelcortez.net"
copyright = u"copyright (C) 2013-2014, Manuel cortéz" 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 its running. With this app youll have access to most twitter features." 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 its running. With this app youll 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)"] 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" 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 # Tokens
app_key = '8pDLbyOW3saYnvSZ4uLFg' app_key = '8pDLbyOW3saYnvSZ4uLFg'
app_secret = 'YsgdrzY9B4yyYvYsyee78rKI3GshjHpenVS9LnFJXY' app_secret = 'YsgdrzY9B4yyYvYsyee78rKI3GshjHpenVS9LnFJXY'

View File

@ -68,8 +68,8 @@ class audioDialog(wx.Dialog):
services = [] services = []
if config.main["services"]["dropbox_token"] != "": if config.main["services"]["dropbox_token"] != "":
services.append("Dropbox") services.append("Dropbox")
service.append("TwUp") services.append("TwUp")
services.append("SNDUp") services.append("SNDUp")
return services return services
def onPause(self, ev): def onPause(self, ev):

View File

@ -3,7 +3,7 @@ import wx
class autocompletionSettingsDialog(wx.Dialog): class autocompletionSettingsDialog(wx.Dialog):
def __init__(self): 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) panel = wx.Panel(self)
sizer = wx.BoxSizer(wx.VERTICAL) sizer = wx.BoxSizer(wx.VERTICAL)
self.followers_buffer = wx.CheckBox(panel, -1, _(u"Add users from followers buffer")) self.followers_buffer = wx.CheckBox(panel, -1, _(u"Add users from followers buffer"))

View File

@ -51,7 +51,7 @@ class general(wx.Panel):
langBox.Add(language, 0, wx.ALL, 5) langBox.Add(language, 0, wx.ALL, 5)
langBox.Add(self.language, 0, wx.ALL, 5) langBox.Add(self.language, 0, wx.ALL, 5)
sizer.Add(langBox, 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.Bind(wx.EVT_BUTTON, self.autocompletion, au)
self.ask_at_exit = wx.CheckBox(self, -1, _(U"ask before exiting TwBlue?")) self.ask_at_exit = wx.CheckBox(self, -1, _(U"ask before exiting TwBlue?"))
self.ask_at_exit.SetValue(config.main["general"]["ask_at_exit"]) self.ask_at_exit.SetValue(config.main["general"]["ask_at_exit"])

View File

@ -315,7 +315,7 @@ class reply(tweet):
super(reply, self).__init__(message, title, text, parent) super(reply, self).__init__(message, title, text, parent)
self.in_reply_to = parent.db.settings[parent.name_buffer][parent.list.get_selected()]["id"] self.in_reply_to = parent.db.settings[parent.name_buffer][parent.list.get_selected()]["id"]
self.text.SetInsertionPoint(len(self.text.GetValue())) 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.Disable()
self.mentionAll.Bind(wx.EVT_BUTTON, self.mentionAllUsers) self.mentionAll.Bind(wx.EVT_BUTTON, self.mentionAllUsers)
self.buttonsBox1.Add(self.mentionAll, 0, wx.ALL, 5) self.buttonsBox1.Add(self.mentionAll, 0, wx.ALL, 5)

View File

@ -42,6 +42,7 @@ if hasattr(sys, 'frozen'):
sys.stdout = open(paths.logs_path("stdout.log"), 'w') sys.stdout = open(paths.logs_path("stdout.log"), 'w')
app = wx.App() app = wx.App()
#app = wx.App(redirect=True, useBestVisual=True, filename=paths.logs_path('tracebacks.log'))
configured = False configured = False
configs = [] configs = []
for i in os.listdir(paths.config_path()): for i in os.listdir(paths.config_path()):

View File

@ -34,7 +34,7 @@ def get_architecture_files():
("Microsoft.VC90.MFC", glob("../windows-dependencies/x86/Microsoft.VC90.MFC/*")),] ("Microsoft.VC90.MFC", glob("../windows-dependencies/x86/Microsoft.VC90.MFC/*")),]
elif platform.architecture()[0][:2] == "64": elif platform.architecture()[0][:2] == "64":
return [ 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.CRT", glob("../windows-dependencies/x64/Microsoft.VC90.CRT/*")),
("Microsoft.VC90.MFC", glob("../windows-dependencies/x64/Microsoft.VC90.MFC/*")),] ("Microsoft.VC90.MFC", glob("../windows-dependencies/x64/Microsoft.VC90.MFC/*")),]