diff --git a/addon.xml b/addon.xml index fb14ee5..315fa47 100644 --- a/addon.xml +++ b/addon.xml @@ -1,12 +1,12 @@ - + diff --git a/changelog.txt b/changelog.txt index 845c213..6b9abe5 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,6 +1,14 @@ +v0.2.0 Release Candidate +- This version should incorporate bug fixes and features from forum + - Fix unicode error when debugging + - Fix additional functionality for python 2.6 users + - Allow customisation of notification display time + - View additional windows from settings +- If this version is stable then it will be submitted to official repo + v0.1.2 - Trying to make Kodi compatible structure so can be installed from zip file - Fixed import requirements - Added additional functionality - League table - - Match detail \ No newline at end of file + - Match detail diff --git a/live_scores_detail.py b/live_scores_detail.py index fc4a217..167a265 100644 --- a/live_scores_detail.py +++ b/live_scores_detail.py @@ -261,8 +261,8 @@ def showMatchDetail(self, match): #self.prog.update(94) - homelabel = Label("[B]{0}[/B]".format(match.HomeTeam), alignment=ALIGN_CENTER) - awaylabel = Label("[B]{0}[/B]".format(match.AwayTeam), alignment=ALIGN_CENTER) + homelabel = Label(u"[B]{0}[/B]".format(match.HomeTeam), alignment=ALIGN_CENTER) + awaylabel = Label(u"[B]{0}[/B]".format(match.AwayTeam), alignment=ALIGN_CENTER) scorelabel = Label("[B]{homescore} - {awayscore}[/B]".format(**match.matchdict), alignment=ALIGN_CENTER) window.placeControl(homelabel, 0, 0, columnspan=5)