The branch, frodo has been updated
       via  7a8ccd3dc51d9ddec5334fd3237201997a0fee4e (commit)
       via  9a25d4fb6528a4c50474092a6c013f315f1f5042 (commit)
      from  16a0ccdbfabba817735f2586a38730fbf5d26bfe (commit)

- Log -----------------------------------------------------------------
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/plugins;a=commit;h=7a8ccd3dc51d9ddec5334fd3237201997a0fee4e

commit 7a8ccd3dc51d9ddec5334fd3237201997a0fee4e
Author: beenje <[email protected]>
Date:   Fri Feb 1 22:21:01 2013 +0100

    [plugin.video.synopsi] updated to version 1.0.2

diff --git a/plugin.video.synopsi/addon.py b/plugin.video.synopsi/addon.py
index 92d6a08..e1b007c 100644
--- a/plugin.video.synopsi/addon.py
+++ b/plugin.video.synopsi/addon.py
@@ -280,6 +280,7 @@ try:
 except ShutdownRequestedException:
        xbmcplugin.endOfDirectory(dirhandle)
        xbmc.executebuiltin('RestartApp')
+       xbmc.executebuiltin('Quit')
 except:
        log(traceback.format_exc())
        xbmcplugin.endOfDirectory(dirhandle)
diff --git a/plugin.video.synopsi/addon.xml b/plugin.video.synopsi/addon.xml
index f827307..634042f 100644
--- a/plugin.video.synopsi/addon.xml
+++ b/plugin.video.synopsi/addon.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 <addon id="plugin.video.synopsi"
        name="SynopsiTV"
-       version="1.0.1"
+       version="1.0.2"
        provider-name="Synopsi.TV">
        <requires>
                <import addon="xbmc.python" version="2.1.0" />
diff --git a/plugin.video.synopsi/changelog.txt 
b/plugin.video.synopsi/changelog.txt
index 915f162..0618026 100644
--- a/plugin.video.synopsi/changelog.txt
+++ b/plugin.video.synopsi/changelog.txt
@@ -1,16 +1,24 @@
+[B]Version 1.0.2[/B]
+
+- Fixed: sending checkins wrong api usage
+- Fixed: restart fails on OSX, trying quit after restart
+
 [B]Version 1.0.1[/B]
+
 - Added: season 'on-disk' strips in tvshow detail 
 - Improved: idetification, send filenames without xbmc's source path part
 
 [B]Version 1.0.0[/B]
+
 - Fixed: Frodo version requirements
 - Fixed: Empty list exception for "Local movies"
 
 [B]Version 0.4.6[/B]
+
 - Fixed: addon.xml to get into official repository
 - Added: Show "watched" stripes in tvshow detail
 - Fixed: few bugs
 
-[B]0.0.1[/B]
+[B]Version 0.0.1[/B]
 
 - Initial addon
diff --git a/plugin.video.synopsi/scrobbler.py 
b/plugin.video.synopsi/scrobbler.py
index 1800fac..815e4e4 100644
--- a/plugin.video.synopsi/scrobbler.py
+++ b/plugin.video.synopsi/scrobbler.py
@@ -210,7 +210,7 @@ class SynopsiPlayerDecor(SynopsiPlayer):
                # prepare timestamp if avail
                pe = self.playerEvents
                if len(pe) > 0 and pe[0]['event'] == 'start':
-                       data['timestamp'] = pe[0]['timestamp']
+                       data['created_time'] = pe[0]['timestamp']
 
                # prepare rating if requested
                if rate:
diff --git a/plugin.video.synopsi/utilities.py 
b/plugin.video.synopsi/utilities.py
index 84252d3..18cd901 100644
--- a/plugin.video.synopsi/utilities.py
+++ b/plugin.video.synopsi/utilities.py
@@ -182,10 +182,8 @@ def check_first_run():
                reloadSkin = True                       
                __addon__.setSetting('FIRSTRUN', "false")
 
-       if addon_getSetting('ADDON_SERVICE_FIRSTRUN') != "false":
-               #~ 
xbmc.executebuiltin("RunPlugin('plugin://plugin.video.synopsi/?action=restart')")
-               #~ return
-               
+
+       if addon_getSetting('ADDON_SERVICE_FIRSTRUN') != "false":               
                if dialog_need_restart():
                        raise ShutdownRequestedException('User requested 
shutdown')
                else:

http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/plugins;a=commit;h=9a25d4fb6528a4c50474092a6c013f315f1f5042


-----------------------------------------------------------------------

Summary of changes:
 .../LICENSE.txt                                    |    0
 plugin.image.xzen/addon.xml                        |   20 +
 plugin.image.xzen/changelog.txt                    |    3 +
 plugin.image.xzen/default.py                       |  599 ++++++++++
 plugin.image.xzen/fanart.jpg                       |  Bin 0 -> 74323 bytes
 plugin.image.xzen/icon.png                         |  Bin 0 -> 31674 bytes
 plugin.image.xzen/resources/__init__.py            |    1 +
 .../resources/language/English/strings.xml         |   33 +
 .../resources/lib/b808common/__init__.py           |    2 +
 .../resources/lib/b808common/b808common.py         |  160 +++
 plugin.image.xzen/resources/lib/zenapi/__init__.py |   21 +
 plugin.image.xzen/resources/lib/zenapi/_zapi.py    | 1150 ++++++++++++++++++++
 .../resources/lib/zenapi/snapshots.py              |   20 +
 plugin.image.xzen/resources/lib/zenapi/updaters.py |   21 +
 plugin.image.xzen/resources/settings.xml           |   12 +
 plugin.video.synopsi/addon.py                      |    1 +
 plugin.video.synopsi/addon.xml                     |    2 +-
 plugin.video.synopsi/changelog.txt                 |   10 +-
 plugin.video.synopsi/scrobbler.py                  |    2 +-
 plugin.video.synopsi/utilities.py                  |    6 +-
 20 files changed, 2056 insertions(+), 7 deletions(-)
 copy {plugin.audio.abradio.cz => plugin.image.xzen}/LICENSE.txt (100%)
 create mode 100644 plugin.image.xzen/addon.xml
 create mode 100644 plugin.image.xzen/changelog.txt
 create mode 100644 plugin.image.xzen/default.py
 create mode 100644 plugin.image.xzen/fanart.jpg
 create mode 100644 plugin.image.xzen/icon.png
 create mode 100644 plugin.image.xzen/resources/__init__.py
 create mode 100644 plugin.image.xzen/resources/language/English/strings.xml
 create mode 100644 plugin.image.xzen/resources/lib/b808common/__init__.py
 create mode 100644 plugin.image.xzen/resources/lib/b808common/b808common.py
 create mode 100644 plugin.image.xzen/resources/lib/zenapi/__init__.py
 create mode 100644 plugin.image.xzen/resources/lib/zenapi/_zapi.py
 create mode 100644 plugin.image.xzen/resources/lib/zenapi/snapshots.py
 create mode 100644 plugin.image.xzen/resources/lib/zenapi/updaters.py
 create mode 100644 plugin.image.xzen/resources/settings.xml


hooks/post-receive
-- 
Plugins

------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Reply via email to