The branch, frodo has been updated
       via  6e5badaf1646528c933baa85df3df874ecc457fd (commit)
      from  4793cd6715769e29bd1cf4abfd39fb17486a730d (commit)

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

commit 6e5badaf1646528c933baa85df3df874ecc457fd
Author: beenje <bee...@xbmc.org>
Date:   Thu Nov 28 15:37:25 2013 +0100

    [plugin.audio.cherrymusic] updated to version 0.0.4

diff --git a/plugin.audio.cherrymusic/addon.xml 
b/plugin.audio.cherrymusic/addon.xml
index 130c6f6..c8a58a9 100644
--- a/plugin.audio.cherrymusic/addon.xml
+++ b/plugin.audio.cherrymusic/addon.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
-<addon id="plugin.audio.cherrymusic" name="CherryMusic" version="0.0.3" 
provider-name="Sets">
+<addon id="plugin.audio.cherrymusic" name="CherryMusic" version="0.0.4" 
provider-name="Sets">
        <requires>
                <import addon="xbmc.python" version="2.1.0"/>
        </requires>
diff --git a/plugin.audio.cherrymusic/changelog.txt 
b/plugin.audio.cherrymusic/changelog.txt
index 2328acb..bfeef36 100644
--- a/plugin.audio.cherrymusic/changelog.txt
+++ b/plugin.audio.cherrymusic/changelog.txt
@@ -1,3 +1,6 @@
+[B]0.0.4[/B]
+Fixed: Error if never configured
+
 [B]0.0.3[/B]
 Added: Fanart
 Added: Inform if no connection
diff --git a/plugin.audio.cherrymusic/cherrymusic.py 
b/plugin.audio.cherrymusic/cherrymusic.py
index 15fbdd9..8538c23 100644
--- a/plugin.audio.cherrymusic/cherrymusic.py
+++ b/plugin.audio.cherrymusic/cherrymusic.py
@@ -10,7 +10,7 @@ import urlparse
 import json
 
 # Set global values.
-version = "0.0.3"
+version = "0.0.4"
 plugin = 'CherryMusic-' + version
 author = 'Sets'
 
@@ -149,7 +149,6 @@ class Main(object):
         self.username = username
         self.password = password
 
-        self.login(self.host, self.username, self.password)
 
     def main(self):
 
@@ -162,6 +161,7 @@ class Main(object):
         if not self.username and not self.password and not self.host:
             UI().show_message(translated(30017), translated(30018), 10000)
             return None
+        self.login(self.host, self.username, self.password)
         if self.session_id is None:
             return None
 

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

Summary of changes:
 plugin.audio.cherrymusic/addon.xml      |    2 +-
 plugin.audio.cherrymusic/changelog.txt  |    3 +++
 plugin.audio.cherrymusic/cherrymusic.py |    4 ++--
 3 files changed, 6 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
Plugins

------------------------------------------------------------------------------
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349351&iu=/4140/ostg.clktrk
_______________________________________________
Xbmc-addons mailing list
Xbmc-addons@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Reply via email to