The branch, frodo has been updated
via e98e20da59770d4eeaed46f7fa22ab1edcd13fd8 (commit)
via ab84162b3451fbd0d9ff3ce3967090d1445d0023 (commit)
from ceaec183d6e6d163bd54fb09e6690a9800c5c16f (commit)
- Log -----------------------------------------------------------------
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/scripts;a=commit;h=e98e20da59770d4eeaed46f7fa22ab1edcd13fd8
commit e98e20da59770d4eeaed46f7fa22ab1edcd13fd8
Author: Martijn Kaijser <[email protected]>
Date: Sun Jan 6 20:35:03 2013 +0100
[script.xbmc.debug.log] -12.0.0
diff --git a/script.xbmc.debug.log/addon.py b/script.xbmc.debug.log/addon.py
index 90bb7d9..c737399 100644
--- a/script.xbmc.debug.log/addon.py
+++ b/script.xbmc.debug.log/addon.py
@@ -3,29 +3,36 @@ import re
import sys
import urllib
import urllib2
-import xbmc
+from xbmc import getCondVisibility as condtition, translatePath as translate
import xbmcaddon
import xbmcgui
-ADDON_ID = 'script.xbmc.debug.log'
-Addon = xbmcaddon.Addon(id=ADDON_ID)
-ADDON_TITLE = Addon.getAddonInfo('name')
+addon = xbmcaddon.Addon(id='script.xbmc.debug.log')
+ADDON_TITLE = addon.getAddonInfo('name')
DEBUG = False
+STRINGS = {
+ 'do_upload': 30000,
+ 'upload_id': 30001,
+ 'upload_url': 30002,
+ 'no_email_set': 30003,
+ 'email_sent': 30004
+}
+UPLOAD_LINK = 'http://xbmclogs.com/show.php?id=%s'
+UPLOAD_URL = 'http://xbmclogs.com/'
-class LogUploader(object):
- STR_DO_UPLOAD = 30000
- STR_UPLOADED_ID = 30001
- STR_UPLOADED_URL = 30002
- STR_NO_EMAIL_SET = 30003
- STR_EMAIL_SENT_TO = 30004
- STR_UPLOAD_LINK = 'http://xbmclogs.com/show.php?id=%s'
+# Open Settings on first run
+if not addon.getSetting('already_shown') == 'true':
+ addon.openSettings()
+ addon.setSetting('already_shown', 'true')
+
+
+class LogUploader(object):
def __init__(self):
self.__log('started')
- self.first_run()
self.get_settings()
found_logs = self.__get_logs()
uploaded_logs = []
@@ -41,18 +48,12 @@ class LogUploader(object):
pass
def get_settings(self):
- self.email_address = Addon.getSetting('email')
+ self.email_address = addon.getSetting('email')
self.__log('settings: len(email)=%d' % len(self.email_address))
- self.skip_oldlog = Addon.getSetting('skip_oldlog') == 'true'
+ self.skip_oldlog = addon.getSetting('skip_oldlog') == 'true'
self.__log('settings: skip_oldlog=%s' % self.skip_oldlog)
- def first_run(self):
- if not Addon.getSetting('already_shown') == 'true':
- Addon.openSettings()
- Addon.setSetting('already_shown', 'true')
-
def upload_file(self, filepath):
- url = 'http://xbmclogs.com/'
self.__log('reading log...')
file_content = open(filepath, 'r').read()
self.__log('starting upload "%s"...' % filepath)
@@ -64,7 +65,7 @@ class LogUploader(object):
elif filepath.endswith('.xml'):
post_dict['paste_lang'] = 'advancedsettings'
post_data = urllib.urlencode(post_dict)
- req = urllib2.Request(url, post_data)
+ req = urllib2.Request(UPLOAD_URL, post_data)
response = urllib2.urlopen(req).read()
self.__log('upload done.')
r_id = re.compile('<id>([0-9]+)</id>', re.DOTALL)
@@ -78,19 +79,18 @@ class LogUploader(object):
def ask_upload(self, logfile):
Dialog = xbmcgui.Dialog()
- msg1 = Addon.getLocalizedString(self.STR_DO_UPLOAD) % logfile
+ msg1 = _('do_upload') % logfile
if self.email_address:
- msg2 = (Addon.getLocalizedString(self.STR_EMAIL_SENT_TO)
- % self.email_address)
+ msg2 = _('email_sent') % self.email_address
else:
- msg2 = Addon.getLocalizedString(self.STR_NO_EMAIL_SET)
+ msg2 = _('no_email_set')
return Dialog.yesno(ADDON_TITLE, msg1, '', msg2)
def report_msg(self, paste_id):
- url = self.STR_UPLOAD_LINK % paste_id
+ url = UPLOAD_LINK % paste_id
Dialog = xbmcgui.Dialog()
- msg1 = Addon.getLocalizedString(self.STR_UPLOADED_ID) % paste_id
- msg2 = Addon.getLocalizedString(self.STR_UPLOADED_URL) % url
+ msg1 = _('upload_id') % paste_id
+ msg2 = _('upload_url') % url
return Dialog.ok(ADDON_TITLE, msg1, '', msg2)
def report_mail(self, mail_address, uploaded_logs):
@@ -114,30 +114,21 @@ class LogUploader(object):
print response
def __get_logs(self):
- if xbmc.getCondVisibility('system.platform.osx'):
- if xbmc.getCondVisibility('system.platform.atv2'):
- log_path = '/var/mobile/Library/Preferences'
- else:
- log_path = os.path.join(os.path.expanduser('~'),
'Library/Logs')
- crashlog_path = os.path.join(os.path.expanduser('~'),
- 'Library/Logs/CrashReporter')
- crashfile_match = 'XBMC'
- elif xbmc.getCondVisibility('system.platform.ios'):
- log_path = '/var/mobile/Library/Preferences'
- crashlog_path = os.path.join(os.path.expanduser('~'),
- 'Library/Logs/CrashReporter')
+ log_path = translate('special://logpath')
+ crashlog_path = None
+ crashfile_match = None
+ if condtition('system.platform.osx') or
condtition('system.platform.ios'):
+ crashlog_path = os.path.join(
+ os.path.expanduser('~'),
+ 'Library/Logs/CrashReporter'
+ )
crashfile_match = 'XBMC'
- elif xbmc.getCondVisibility('system.platform.windows'):
- log_path = xbmc.translatePath('special://home')
+ elif condtition('system.platform.windows'):
crashlog_path = log_path
crashfile_match = '.dmp'
- elif xbmc.getCondVisibility('system.platform.linux'):
- log_path = xbmc.translatePath('special://home/temp')
+ elif condtition('system.platform.linux'):
crashlog_path = os.path.expanduser('~')
crashfile_match = 'xbmc_crashlog'
- else:
- # we are on an unknown OS and need to fix that here
- raise Exception('UNHANDLED OS')
# get fullpath for xbmc.log and xbmc.old.log
log = os.path.join(log_path, 'xbmc.log')
log_old = os.path.join(log_path, 'xbmc.old.log')
@@ -153,15 +144,21 @@ class LogUploader(object):
crashlog_files)
log_crash = os.path.join(crashlog_path, crashlog_files[-1])
found_logs = []
- if log and os.path.isfile(log):
- found_logs.append({'title': 'xbmc.log',
- 'path': log})
- if not self.skip_oldlog and log_old and os.path.isfile(log_old):
- found_logs.append({'title': 'xbmc.old.log',
- 'path': log_old})
+ if os.path.isfile(log):
+ found_logs.append({
+ 'title': 'xbmc.log',
+ 'path': log
+ })
+ if not self.skip_oldlog and os.path.isfile(log_old):
+ found_logs.append({
+ 'title': 'xbmc.old.log',
+ 'path': log_old
+ })
if log_crash and os.path.isfile(log_crash):
- found_logs.append({'title': 'crash.log',
- 'path': log_crash})
+ found_logs.append({
+ 'title': 'crash.log',
+ 'path': log_crash
+ })
return found_logs
def __sort_files_by_date(self, path, files):
@@ -169,7 +166,15 @@ class LogUploader(object):
return files
def __log(self, msg):
- xbmc.log('%s: %s' % (ADDON_TITLE, msg))
+ xbmc.log(u'%s: %s' % (ADDON_TITLE, msg))
+
+
+def _(string_id):
+ if string_id in STRINGS:
+ return addon.getLocalizedString(STRINGS[string_id])
+ else:
+ self.__log('String is missing: %s' % string_id)
+ return string_id
if __name__ == '__main__':
diff --git a/script.xbmc.debug.log/addon.xml b/script.xbmc.debug.log/addon.xml
index 6296c71..0917499 100644
--- a/script.xbmc.debug.log/addon.xml
+++ b/script.xbmc.debug.log/addon.xml
@@ -1,20 +1,49 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.xbmc.debug.log"
name="XBMC Log Uploader"
- version="11.0.6"
+ version="12.0.0"
provider-name="Tristan Fischer ([email protected])">
<requires>
- <import addon="xbmc.python" version="2.0"/>
+ <import addon="xbmc.python" version="2.1.0"/>
</requires>
<extension point="xbmc.python.script" library="addon.py"/>
<extension point="xbmc.addon.metadata">
<language></language>
+ <summary lang="be">Uploads your logs to xbmclogs.com</summary>
+ <summary lang="ca">Puja els vostres registres a xbmclogs.com</summary>
+ <summary lang="da">Indsender dine logfiler til xbmclogs.com</summary>
<summary lang="de">Lädt logs zu xbmclogs.com hoch</summary>
+ <summary lang="el">ÎνεβάÏÏε Ïα αÏÏεία
καÏαγÏαÏÎ®Ï ÏÎ±Ï ÏÏο xbmclogs.com</summary>
<summary lang="en">Uploads your logs to xbmclogs.com</summary>
- <summary lang="da">Indsender dine logfiler til xbmclogs.com</summary>
+ <summary lang="es">Enviar tus logs a xbmclogs.com</summary>
+ <summary lang="fr">Envoyer vos logs vers xbmclogs.com</summary>
+ <summary lang="hu">Feltölti a naplófájljait az
xbmclogs.com-ra</summary>
+ <summary lang="it">Carica i tuoi log su xbmclogs.com</summary>
+ <summary lang="ko">ë¡ê·¸ë¥¼ xbmclogs.comì ì
ë¡ë</summary>
+ <summary lang="lt">Galite atsiusti žurnalus iš xbmclogs.com</summary>
+ <summary lang="pl">PrzeÅlij swoje logi na xbmclogs.com</summary>
+ <summary lang="pt">Envia os seus logs para xbmclogs.com</summary>
+ <summary lang="pt_BR">Upload seus logs para xbmclogs.com</summary>
+ <summary lang="ru">ÐÑгÑÑÐ¶Ð°ÐµÑ ÐаÑи логи на
xbmclogs.com</summary>
+ <summary lang="sv">Laddar upp dina loggar till xbmclogs.com</summary>
+ <summary lang="zh">ä¸ä¼ æ¨çæ¥å¿å°xbmclogs.com</summary>
+ <description lang="be">This Addon uploads your logs to
xbmclogs.com[CR]You will receive an email with seperate links to the uploaded
logfiles</description>
+ <description lang="ca">Aquest afegitó puja els vostres registres a
xbmclogs.com[CR]Rebreu un correu amb diferents enllaços als registres
pujats</description>
+ <description lang="da">Denne add-on indsender dine logfiler til
xbmclogs.com[CR]Du vil modtage en email med direkte links til de indsendte
logfiler.</description>
<description lang="de">Dieses Add-on lädt deine Logfiles auf
www.xbmclogs.com hoch[CR]Du wirst eine Email mit Links zu deinen Logfiles
erhalten.</description>
+ <description lang="el">ÎÏ
ÏÏ Ïο Î ÏÏÏθεÏο ανεβάζει
Ïα αÏÏεία καÏαγÏαÏÎ®Ï ÏÎ±Ï ÏÏο xbmclogs.com[CR]Îα
λάβεÏε Îνα email με ξεÏÏÏιÏÏοÏÏ ÏÏ
νδÎÏμοÏ
Ï
για Ïα ανεβαÏμÎνα αÏÏεία</description>
<description lang="en">This Addon uploads your logs to
xbmclogs.com[CR]You will receive an email with seperate links to the uploaded
logfiles</description>
- <description lang="da">Denne addon indsender dine logfiler til
xbmclogs.com[CR]Du vil modtage en email med direkte links til de indsendte
logfiler.</description>
+ <description lang="es">Este complemento envÃa tus logs a
xbmclogs.com[CR]Recibirás un email con los diferentes enlaces a tus logs
enviados</description>
+ <description lang="fr">Cette extension envoie vos logs vers
xbmclogs.com[CR]Vous recevrez un email avec les liens pour les fichiers de
log.</description>
+ <description lang="hu">Ez a kiegészÃtÅ feltölti a naplófájljait
az xbmclogs.com-ra[CR]Kapni fog egy levelet külön-külön linkekkel a
feltöltött naplókra.</description>
+ <description lang="ko">ì´ ì ëì¨ì ë¡ê·¸ë¥¼ xbmclogs.comì ì
ë¡ë í©ëë¤.[CR]ì
ë¡ëë ë¡ê·¸íì¼ë¤ì ê° ë§í¬ë¥¼ ì´ë©ì¼ë¡
ë°ê² ë©ëë¤.</description>
+ <description lang="lt">Å is priedas įkelia/atsiunÄia žurnalus iÅ¡
xbmclogs.com[Cr]JÅ«s gausite elektroninį laiÅ¡kÄ
su nuorodomis į
(-at)nusiųstų žurnalų rinkmenas</description>
+ <description lang="pl">Wtyczka ta przesyÅa twoje logi na
xbmclogs.com[CR]Otrzymasz email z oddzielnymi linkami do przesÅanych
logów</description>
+ <description lang="pt">Este Addon envia os seus logs para
xbmclogs.com[CR]Receberá um email com ligações para os ficheiros log
enviados.</description>
+ <description lang="pt_BR">Este Addon envia seus registros para
xbmclogs.com [CR] Você receberá um e-mail com os links separados para os
arquivos de log enviados</description>
+ <description lang="ru">ÐÑÐ¾Ñ Ð¿Ð»Ð°Ð³Ð¸Ð½ вÑгÑÑÐ·Ð¸Ñ ÐаÑи
логи на xbmclogs.com[CR]ÐÑ Ð¿Ð¾Ð»ÑÑиÑе по поÑÑе
ÑазделÑнÑе ÑÑÑлки на загÑÑженнÑе
лог-ÑайлÑ</description>
+ <description lang="sv">Detta tillägg laddar upp dina loggar till
xbmclogs.com[CR]DU får ett epostmeddelande med separata länkar till dom
uppladdade loggfilerna</description>
+ <description lang="zh">æ¤æä»¶å°ä¸ä¼
æ¨çæ¥å¿å°xbmclogs.com[CR]ä½ ä¼æ¶å°ä¸ä»½é®ä»¶å
嫿¨ä¸ä¼
æ¥å¿æä»¶ç龿¥</description>
<platform>all</platform>
</extension>
</addon>
diff --git a/script.xbmc.debug.log/changelog.txt
b/script.xbmc.debug.log/changelog.txt
index 4ef2f81..8adeae7 100644
--- a/script.xbmc.debug.log/changelog.txt
+++ b/script.xbmc.debug.log/changelog.txt
@@ -1,3 +1,9 @@
+12.0.0
+ - use new method for log-file path retrieval
+ - updated translations
+11.0.7
+ - add android support
+ - added Korean translation
11.0.6
- fixed log uploading on atv2 (thx jbeluch)
- added crashfile uploading for windows
diff --git a/script.xbmc.debug.log/resources/language/Danish/strings.xml
b/script.xbmc.debug.log/resources/language/Danish/strings.xml
index 5b8692a..5146dfd 100644
--- a/script.xbmc.debug.log/resources/language/Danish/strings.xml
+++ b/script.xbmc.debug.log/resources/language/Danish/strings.xml
@@ -1,18 +1,23 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<!-- Translated using Transifex web application. For support, or if you would
like to to help out, please visit your language team! -->
+<!-- Danish language-Team URL:
http://www.transifex.com/projects/p/xbmc-addons/language/da/ -->
+<!-- Report language file syntax bugs at: [email protected] -->
+
<strings>
- <!-- Usage help strings in settings dialog -->
- <string id="32000">Denne addon indsender dine logfiler til
xbmclogs.com</string>
- <string id="32001">Hvis du vil have en email med direkte links til
dine</string>
- <string id="32002">indsendte logfiler skal du indstille din
emailadresse.</string>
- <string id="32003"></string>
- <string id="32004">Logfilerne kan indeholde brugernavne eller
adgangskoder!</string>
- <!-- Settings -->
- <string id="31000">Emailadresse</string>
- <string id="31001">Indsend aldrig xbmc.old.log (logfil fra tidligere
kørsel)</string>
<!-- Dialog strings -->
<string id="30000">Vil du indsende "%s"?</string>
<string id="30001">Indsendt som ID: %s</string>
<string id="30002">URL: %s</string>
<string id="30003">Ingen email sendes (Ingen emailadresse
indstillet)</string>
<string id="30004">Email sendes til: %s</string>
+
+ <!-- Settings -->
+ <string id="31000">Email-adresse</string>
+ <string id="31001">Indsend aldrig xbmc.old.log (logfil fra tidligere
kørsel)</string>
+
+ <!-- Usage help strings in settings dialog -->
+ <string id="32000">Denne add-on indsender dine logfiler til
xbmclogs.com</string>
+ <string id="32001">Hvis du vil have en email med direkte links til
dine</string>
+ <string id="32002">indsendte logfiler, skal du vælge din
emailadresse.</string>
+ <string id="32004">Logfilerne kan indeholde brugernavne eller
adgangskoder!</string>
</strings>
diff --git a/script.xbmc.debug.log/resources/language/English/strings.xml
b/script.xbmc.debug.log/resources/language/English/strings.xml
index 3d30412..4c2896f 100644
--- a/script.xbmc.debug.log/resources/language/English/strings.xml
+++ b/script.xbmc.debug.log/resources/language/English/strings.xml
@@ -1,18 +1,23 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<!-- Translated using Transifex web application. For support, or if you would
like to to help out, please visit your language team! -->
+<!-- English language-Team URL:
http://www.transifex.com/projects/p/xbmc-addons/language/en/ -->
+<!-- Report language file syntax bugs at: [email protected] -->
+
<strings>
- <!-- Usage help strings in settings dialog -->
- <string id="32000">This Addon uploads your logs to xbmclogs.com</string>
- <string id="32001">If you want to receive an email containing direct
links</string>
- <string id="32002">to your uploaded logs you have to set your email
address</string>
- <string id="32003"></string>
- <string id="32004">Debug Logs may contain usernames or passwords!</string>
- <!-- Settings -->
- <string id="31000">Email address</string>
- <string id="31001">Always skip xbmc.old.log (log from previous
run)</string>
<!-- Dialog strings -->
<string id="30000">Do you want to upload "%s"?</string>
<string id="30001">Uploaded with ID: %s</string>
<string id="30002">URL: %s</string>
<string id="30003">No email will be sent (No email is configured)</string>
<string id="30004">Email will be sent to: %s</string>
+
+ <!-- Settings -->
+ <string id="31000">Email address</string>
+ <string id="31001">Always skip xbmc.old.log (log from previous
run)</string>
+
+ <!-- Usage help strings in settings dialog -->
+ <string id="32000">This Addon uploads your logs to xbmclogs.com</string>
+ <string id="32001">If you want to receive an email containing direct
links</string>
+ <string id="32002">to your uploaded logs you have to set your email
address</string>
+ <string id="32004">Debug Logs may contain usernames or passwords!</string>
</strings>
diff --git a/script.xbmc.debug.log/resources/language/German/strings.xml
b/script.xbmc.debug.log/resources/language/German/strings.xml
index 7cb6934..580fd02 100644
--- a/script.xbmc.debug.log/resources/language/German/strings.xml
+++ b/script.xbmc.debug.log/resources/language/German/strings.xml
@@ -1,18 +1,23 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
+<!-- Translated using Transifex web application. For support, or if you would
like to to help out, please visit your language team! -->
+<!-- German language-Team URL:
http://www.transifex.com/projects/p/xbmc-addons/language/de/ -->
+<!-- Report language file syntax bugs at: [email protected] -->
+
<strings>
- <!-- Usage help strings in settings dialog -->
- <string id="32000">Dieses Add-on lädt deine Logs auf www.xbmclogs.com
hoch.</string>
- <string id="32001">Wenn du eine Email mit Links zu deinen Logs
erhalten</string>
- <string id="32002">möchtest, musst du deine Email eintragen.</string>
- <string id="32003"></string>
- <string id="32004">Debug Logs könnten Passwörter enthalten!</string>
- <!-- Settings -->
- <string id="31000">Email Adresse</string>
- <string id="31001">xbmc.old.log immer auslassen (log aus der vorherigen
Sitzung)</string>
<!-- Dialog strings -->
<string id="30000">Möchtest du "%s" hochladen?</string>
<string id="30001">Hochgeladen unter der ID: %s</string>
<string id="30002">URL: %s</string>
<string id="30003">Es wird keine Email gesendet - keine Addr.
gesetzt</string>
<string id="30004">Email wird gesendet an: %s</string>
+
+ <!-- Settings -->
+ <string id="31000">Email Adresse</string>
+ <string id="31001">xbmc.old.log immer auslassen (log aus der vorherigen
Sitzung)</string>
+
+ <!-- Usage help strings in settings dialog -->
+ <string id="32000">Dieses Add-on lädt deine Logs auf www.xbmclogs.com
hoch.</string>
+ <string id="32001">Wenn du eine Email mit Links zu deinen Logs
erhalten</string>
+ <string id="32002">möchtest, musst du deine Email eintragen.</string>
+ <string id="32004">Debug Logs könnten Passwörter enthalten!</string>
</strings>
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/scripts;a=commit;h=ab84162b3451fbd0d9ff3ce3967090d1445d0023
commit ab84162b3451fbd0d9ff3ce3967090d1445d0023
Author: Martijn Kaijser <[email protected]>
Date: Sun Jan 6 20:34:17 2013 +0100
[script.common.plugin.cache] -2.5.1
diff --git a/script.common.plugin.cache/addon.xml
b/script.common.plugin.cache/addon.xml
index e744fc4..d5e7cb5 100644
--- a/script.common.plugin.cache/addon.xml
+++ b/script.common.plugin.cache/addon.xml
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
-<addon id="script.common.plugin.cache" name="Common plugin cache"
provider-name="TheCollective" version="2.5.0">
+<addon id="script.common.plugin.cache" name="Common plugin cache"
provider-name="TheCollective" version="2.5.1">
<requires>
<import addon="xbmc.python" version="2.1.0" />
</requires>
diff --git a/script.common.plugin.cache/changelog.txt
b/script.common.plugin.cache/changelog.txt
index a598a2b..a96a7db 100644
--- a/script.common.plugin.cache/changelog.txt
+++ b/script.common.plugin.cache/changelog.txt
@@ -1,4 +1,7 @@
-[B]Version 1.5.0[/B]
+[B]Version 2.5.1[/B]
+- Fixed: Rverted changes to socketfile locations since the long pathlenght
caused issues on some OS
+
+[B]Version 2.5.0[/B]
- Changed: Version bump since team-xbmc decided to pull partial release before
we could address their concerns with 1.4
- Fixed: Move position of socket and database file
diff --git a/script.common.plugin.cache/lib/StorageServer.py
b/script.common.plugin.cache/lib/StorageServer.py
index 084a366..f04cb8f 100644
--- a/script.common.plugin.cache/lib/StorageServer.py
+++ b/script.common.plugin.cache/lib/StorageServer.py
@@ -136,7 +136,7 @@ class StorageServer():
self.socket = ("127.0.0.1", port)
else:
self._log("POSIX", 4)
- self.socket =
os.path.join(self.xbmc.translatePath(self.settings.getAddonInfo("profile")).decode("utf-8"),
'commoncache.socket')
+ self.socket =
os.path.join(self.xbmc.translatePath('special://temp/').decode("utf-8"),
'commoncache.socket')
if self.xbmcvfs.exists(self.socket) and check_stale:
self._log("Deleting stale socket file : " + self.socket)
self.xbmcvfs.delete(self.socket)
-----------------------------------------------------------------------
Summary of changes:
script.common.plugin.cache/addon.xml | 2 +-
script.common.plugin.cache/changelog.txt | 5 +-
script.common.plugin.cache/lib/StorageServer.py | 2 +-
script.xbmc.debug.log/addon.py | 117 ++++++++++----------
script.xbmc.debug.log/addon.xml | 37 ++++++-
script.xbmc.debug.log/changelog.txt | 6 +
.../resources/language/Belarusian/strings.xml | 23 ++++
.../resources/language/Catalan/strings.xml | 23 ++++
.../language/Chinese (Simple)/strings.xml | 23 ++++
.../resources/language/Danish/strings.xml | 23 +++--
.../resources/language/English/strings.xml | 23 +++--
.../resources/language/French/strings.xml | 23 ++++
.../resources/language/German/strings.xml | 23 +++--
.../resources/language/Greek/strings.xml | 23 ++++
.../resources/language/Hungarian/strings.xml | 23 ++++
.../resources/language/Italian/strings.xml | 18 +++
.../resources/language/Korean/strings.xml | 23 ++++
.../resources/language/Lithuanian/strings.xml | 23 ++++
.../resources/language/Polish/strings.xml | 23 ++++
.../language/Portuguese (Brazil)/strings.xml | 23 ++++
.../resources/language/Portuguese/strings.xml | 23 ++++
.../resources/language/Russian/strings.xml | 23 ++++
.../resources/language/Spanish/strings.xml | 23 ++++
.../resources/language/Swedish/strings.xml | 23 ++++
24 files changed, 488 insertions(+), 90 deletions(-)
create mode 100644
script.xbmc.debug.log/resources/language/Belarusian/strings.xml
create mode 100644 script.xbmc.debug.log/resources/language/Catalan/strings.xml
create mode 100644 script.xbmc.debug.log/resources/language/Chinese
(Simple)/strings.xml
create mode 100644 script.xbmc.debug.log/resources/language/French/strings.xml
create mode 100644 script.xbmc.debug.log/resources/language/Greek/strings.xml
create mode 100644
script.xbmc.debug.log/resources/language/Hungarian/strings.xml
create mode 100644 script.xbmc.debug.log/resources/language/Italian/strings.xml
create mode 100644 script.xbmc.debug.log/resources/language/Korean/strings.xml
create mode 100644
script.xbmc.debug.log/resources/language/Lithuanian/strings.xml
create mode 100644 script.xbmc.debug.log/resources/language/Polish/strings.xml
create mode 100644 script.xbmc.debug.log/resources/language/Portuguese
(Brazil)/strings.xml
create mode 100644
script.xbmc.debug.log/resources/language/Portuguese/strings.xml
create mode 100644 script.xbmc.debug.log/resources/language/Russian/strings.xml
create mode 100644 script.xbmc.debug.log/resources/language/Spanish/strings.xml
create mode 100644 script.xbmc.debug.log/resources/language/Swedish/strings.xml
hooks/post-receive
--
Scripts
------------------------------------------------------------------------------
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_123012
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons