Skip to content

Commit 810c258

Browse files
[script.moviequiz] -v0.4.5
1 parent 1b3de5e commit 810c258

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

script.moviequiz/addon.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
22
<addon id="script.moviequiz"
33
name="Movie Quiz"
4-
version="0.4.4"
4+
version="0.4.5"
55
provider-name="twinther [tommy@winther.nu]">
66
<requires>
77
<import addon="xbmc.python" version="1.0"/>

script.moviequiz/changelog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
[B]Version 0.4.5 - 2012-06-27[/B]
2+
- Online highscores are now located at http://tommy.winther.nu/moviequiz/
3+
- the old URL will expire in a couple of months
4+
15
[B]Version 0.4.4 - 2011-09-27[/B]
26
- Improved checks for invalid settings that could cause lock-ups and crashes
37
- Improved question logic error handling

script.moviequiz/quizlib/db.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ def getTVShows(self, maxResults = None, excludeTVShowId = None, excludeSpecials
466466
query = """
467467
SELECT tv.idShow, tv.c00 AS title, tv.strPath AS tvShowPath
468468
FROM tvshowview tv
469-
WHERE 1=1
469+
WHERE tv.idShow IN (SELECT idShow FROM tvshowlinkepisode)
470470
"""
471471
else:
472472
query = """

script.moviequiz/quizlib/highscore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def getHighscoresNear(self, game, highscoreId):
3333

3434
class GlobalHighscoreDatabase(HighscoreDatabase):
3535
STATUS_OK = 'OK'
36-
SERVICE_URL = 'http://moviequiz.xbmc.info/service.json.php'
36+
SERVICE_URL = 'http://tommy.winther.nu/moviequiz/service.json.php'
3737

3838
def __init__(self, addonVersion):
3939
self.addonVersion = addonVersion

0 commit comments

Comments
 (0)