The branch, dharma has been updated
via c1b33d9b48453fe15647d181bd1107fa542412a6 (commit)
via d4a67bde5242e63818ce9f5f950eb88d34215278 (commit)
from 1e94b18375db8bfc1a388557f0f4aaa86fcc118d (commit)
- Log -----------------------------------------------------------------
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/plugins;a=commit;h=c1b33d9b48453fe15647d181bd1107fa542412a6
commit c1b33d9b48453fe15647d181bd1107fa542412a6
Author: spiff <[email protected]>
Date: Tue May 10 09:57:08 2011 +0200
[plugin.video.xbmcflicks] updated to version 1.0.20
diff --git a/plugin.video.xbmcflicks/addon.xml
b/plugin.video.xbmcflicks/addon.xml
index 7ffd3a0..59d4eb6 100644
--- a/plugin.video.xbmcflicks/addon.xml
+++ b/plugin.video.xbmcflicks/addon.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.xbmcflicks"
name="XBMC Flicks - Netflix for XBMC"
- version="1.0.19"
+ version="1.0.20"
provider-name="TeamUMX">
<requires>
<import addon="xbmc.python" version="1.0"/>
diff --git a/plugin.video.xbmcflicks/changelog.txt
b/plugin.video.xbmcflicks/changelog.txt
index da16e41..09b12e5 100644
--- a/plugin.video.xbmcflicks/changelog.txt
+++ b/plugin.video.xbmcflicks/changelog.txt
@@ -12,4 +12,5 @@
1.0.16 - fixed issue with tv episodes where some shows would no longer show
any episodes (the format changed from netflix), fixed issue with OSX launching
firefox for initial auth (requires firefox to be installed on your system to
the apps folder)
1.0.17 - fixed issue with episodes when pilot is listed, fixed .ca links for
Canada Netflix, fixed menu items for Canada Users.. Thanks to qumip for code
fixes
1.0.18 - fixed issue with not all instant queues showing up, fixed write issue
with some os's (w+ used now), fixed issue with title's being cut off at the
first quote, fixed synopsis not always being parsed if only a short synopsis is
available, fixed " and & in title
-1.0.19 - fixed issue with single quote in title name, fixed script error with
season number parsing
\ No newline at end of file
+1.0.19 - fixed issue with single quote in title name, fixed script error with
season number parsing
+1.0.20 - fixed issue with instant queue browse by genre
\ No newline at end of file
diff --git a/plugin.video.xbmcflicks/resources/lib/iqueue.py
b/plugin.video.xbmcflicks/resources/lib/iqueue.py
index 88adfa9..5019883 100644
--- a/plugin.video.xbmcflicks/resources/lib/iqueue.py
+++ b/plugin.video.xbmcflicks/resources/lib/iqueue.py
@@ -678,7 +678,7 @@ def getMovieDataFromFeed(curX, curQueueItem, bIsEpisode,
netflix, instantAvail,
curX.ID = matchIds2.group(2)
else:
#print "didn't match matchIds2"
- matchIds3 = re.search(r'"media_src":
"http://.*?.nflximg.com/us/boxshots/(small|tiny|large|ghd|small_epx|ghd_epx|large_epx|88_epx|tiny_epx)/(\d{1,15}).jpg"',
curQueueItem, re.DOTALL | re.IGNORECASE | re.MULTILINE)
+ matchIds3 = re.search(r'"media_src":
"http://.*?.nflximg.com/[^/]*?/boxshots/(small|tiny|large|ghd|small_epx|ghd_epx|large_epx|88_epx|tiny_epx)/(\d{1,15}).jpg"',
curQueueItem, re.DOTALL | re.IGNORECASE | re.MULTILINE)
if matchIds3:
#print "id regex: matched matchIds3"
curX.FullId = matchIds3.group(1)
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/plugins;a=commit;h=d4a67bde5242e63818ce9f5f950eb88d34215278
commit d4a67bde5242e63818ce9f5f950eb88d34215278
Author: spiff <[email protected]>
Date: Tue May 10 09:56:00 2011 +0200
[plugin.video.animeftw] updated to version 1.6.7
diff --git a/plugin.video.animeftw/addon.xml b/plugin.video.animeftw/addon.xml
index 57c1ce3..fc00606 100644
--- a/plugin.video.animeftw/addon.xml
+++ b/plugin.video.animeftw/addon.xml
@@ -1,11 +1,10 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.animeftw"
name="AnimeFTW.tv"
- version="1.5.5"
+ version="1.6.7"
provider-name="maruchan">
<requires>
<import addon="xbmc.python" version="1.0"/>
- <import addon="script.module.simplejson" version="2.0.10"/>
<import addon="script.module.beautifulsoup" version="3.0.8"/>
</requires>
<extension point="xbmc.python.pluginsource"
diff --git a/plugin.video.animeftw/changelog.txt
b/plugin.video.animeftw/changelog.txt
index 94b6644..2c90092 100644
--- a/plugin.video.animeftw/changelog.txt
+++ b/plugin.video.animeftw/changelog.txt
@@ -1,3 +1,12 @@
+[B]Version 1.6.7[/B]
+- More bug fixes.
+
+[B]Version 1.6.6[/B]
+- Fixed a few bugs.
+
+[B]Version 1.6.5[/B]
+- Completely revised; based on new API
+
[B]Version 1.5.5[/B]
- Fixed compatibility with new site changes
- Added disclaimer about new policy regarding free users
diff --git a/plugin.video.animeftw/default.py b/plugin.video.animeftw/default.py
index ecec34c..7e01622 100644
--- a/plugin.video.animeftw/default.py
+++ b/plugin.video.animeftw/default.py
@@ -9,13 +9,12 @@ import xbmcaddon
#plugin constants
__plugin__ = "AnimeFTW"
__author__ = "maruchan"
-__version__ = "1.5.5"
__settings__ = xbmcaddon.Addon(id='plugin.video.animeftw')
-print "[PLUGIN] '%s: version %s' initialized!" % (__plugin__, __version__)
+print "[PLUGIN] '%s: version initialized!" % (__plugin__)
if __name__ == "__main__":
- from resources.lib import main_ftw
- main_ftw.Main()
+ from resources.lib import main_ftw2
+ main_ftw2.Main()
sys.modules.clear()
\ No newline at end of file
diff --git a/plugin.video.animeftw/resources/settings.xml
b/plugin.video.animeftw/resources/settings.xml
index 412d86f..f879c2b 100644
--- a/plugin.video.animeftw/resources/settings.xml
+++ b/plugin.video.animeftw/resources/settings.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<settings>
- <setting id="crunchy_username" type="text" label="20002" default=""/>
- <setting id="crunchy_password" type="text" label="20003" option="hidden"
default=""/>
+ <setting id="username_ftw" type="text" label="20002" default=""/>
+ <setting id="password_ftw" type="text" label="20003" option="hidden"
default=""/>
<setting type="sep" />
<setting id="get_ext" type="bool" label="20004" default="false"/>
</settings>
-----------------------------------------------------------------------
Summary of changes:
plugin.video.animeftw/addon.xml | 3 +-
plugin.video.animeftw/changelog.txt | 9 +
plugin.video.animeftw/default.py | 7 +-
plugin.video.animeftw/resources/lib/main_ftw2.py | 281 ++++++++++++++++++++++
plugin.video.animeftw/resources/settings.xml | 4 +-
plugin.video.xbmcflicks/addon.xml | 2 +-
plugin.video.xbmcflicks/changelog.txt | 3 +-
plugin.video.xbmcflicks/resources/lib/iqueue.py | 2 +-
8 files changed, 300 insertions(+), 11 deletions(-)
create mode 100644 plugin.video.animeftw/resources/lib/main_ftw2.py
hooks/post-receive
--
Plugins
------------------------------------------------------------------------------
Achieve unprecedented app performance and reliability
What every C/C++ and Fortran developer should know.
Learn how Intel has extended the reach of its next-generation tools
to help boost performance applications - inlcuding clusters.
http://p.sf.net/sfu/intel-dev2devmay
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons