The branch, eden-pre has been updated
       via  0b5a8ca6d9f6325acdf6ebed1e69e034b50a16ee (commit)
      from  862aa4a5566102080478bda3e9ceb3f9ecc282ec (commit)

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

commit 0b5a8ca6d9f6325acdf6ebed1e69e034b50a16ee
Author: spiff <[email protected]>
Date:   Tue Dec 20 12:45:48 2011 +0100

    [plugin.video.leafstv] updated to version 1.0.4

diff --git a/plugin.video.leafstv/addon.xml b/plugin.video.leafstv/addon.xml
index 2d4f8fb..40b5ade 100644
--- a/plugin.video.leafstv/addon.xml
+++ b/plugin.video.leafstv/addon.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
-<addon id="plugin.video.leafstv" name="LeafsTV Interactive" version="1.0.2" 
provider-name="Micah Galizia">
+<addon id="plugin.video.leafstv" name="LeafsTV Interactive" version="1.0.4" 
provider-name="Micah Galizia">
   <requires>
     <import addon="xbmc.python" version="2.0"/>
   </requires>
diff --git a/plugin.video.leafstv/changelog.txt 
b/plugin.video.leafstv/changelog.txt
index 5e2a2db..359a2bb 100644
--- a/plugin.video.leafstv/changelog.txt
+++ b/plugin.video.leafstv/changelog.txt
@@ -1,3 +1,16 @@
+[B]Version 1.0.4[/B]
+
+- fix LA Kings team abbreviation
+
+[B]Version 1.0.3[/B]
+
+- remove "Live " from obviously live game (its under the "Live Games" menu).
+- remote "Live" string from the string table 
+
+[B]Version 1.0.2[/B]
+
+- bump for pre-eden branch 
+
 [B]Version 0.0.2[/B]
 
 - localized team names and warning messages
diff --git a/plugin.video.leafstv/default.py b/plugin.video.leafstv/default.py
index d3bbe5e..9c8670b 100644
--- a/plugin.video.leafstv/default.py
+++ b/plugin.video.leafstv/default.py
@@ -36,7 +36,7 @@ team_images = {"ANA" : 
"http://1.cdn.nhle.com/ducks/images/logos/extralarge.png";
                "DET" : 
"http://1.cdn.nhle.com/redwings/images/logos/extralarge.png";,
                "EDM" : 
"http://1.cdn.nhle.com/oilers/images/logos/extralarge.png";,
                "FLA" : 
"http://1.cdn.nhle.com/panthers/images/logos/extralarge.png";,
-               "LAK" : 
"http://1.cdn.nhle.com/kings/images/logos/extralarge.png";,
+               "LOS" : 
"http://1.cdn.nhle.com/kings/images/logos/extralarge.png";,
                "MIN" : 
"http://1.cdn.nhle.com/wild/images/logos/extralarge.png";,
                "MTL" : 
"http://1.cdn.nhle.com/canadiens/images/logos/extralarge.png";,
                "NJD" : 
"http://1.cdn.nhle.com/devils/images/logos/extralarge.png";,
@@ -67,7 +67,7 @@ team_strings = {"ANA" : 30970,
                 "DET" : 30979,
                 "EDM" : 30980,
                 "FLA" : 30981,
-                "LAK" : 30982,
+                "LOS" : 30982,
                 "MIN" : 30983,
                 "MTL" : 30984,
                 "NJD" : 30985, 
@@ -256,7 +256,7 @@ def addLiveGame(game, ltv):
     # get the away team string
     away_team = __language__(team_strings[game['away_team']])
     home_team = __language__(team_strings[game['home_team']])
-    game_name = __language__(30014) + " " + away_team + " " + 
__language__(30013) + " " + home_team
+    game_name = away_team + " " + __language__(30013) + " " + home_team
         
     try:
         game_url = ltv.getLiveGame()
diff --git a/plugin.video.leafstv/resources/language/English/strings.xml 
b/plugin.video.leafstv/resources/language/English/strings.xml
index 40d30fc..e8ede71 100644
--- a/plugin.video.leafstv/resources/language/English/strings.xml
+++ b/plugin.video.leafstv/resources/language/English/strings.xml
@@ -15,7 +15,6 @@
   <string id="30011">No game ID specified</string>
   <string id="30012">Unable to parse returned archive</string>
   <string id="30013">at</string>
-  <string id="30014">Live</string>
 
   <!-- Team Strings -->
   <string id="30970">Anaheim Ducks</string>

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

Summary of changes:
 plugin.video.leafstv/addon.xml                     |    2 +-
 plugin.video.leafstv/changelog.txt                 |   13 +++++++++++++
 plugin.video.leafstv/default.py                    |    6 +++---
 .../resources/language/English/strings.xml         |    1 -
 4 files changed, 17 insertions(+), 5 deletions(-)


hooks/post-receive
-- 
Plugins

------------------------------------------------------------------------------
Write once. Port to many.
Get the SDK and tools to simplify cross-platform app development. Create 
new or port existing apps to sell to consumers worldwide. Explore the 
Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join
http://p.sf.net/sfu/intel-appdev
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Reply via email to