Skip to content

Commit

Permalink
release candidate
Browse files Browse the repository at this point in the history
  • Loading branch information
elParaguayo committed Jan 12, 2015
1 parent 942aa87 commit 2ef7e00
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
4 changes: 2 additions & 2 deletions addon.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="service.bbclivefootballscores"
name="BBC Football Scores"
version="0.1.2"
version="0.2.0"
provider-name="elParaguayo">
<requires>
<import addon="xbmc.addon" version="12.0.0"/>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup" version="3.2.1"/>
<import addon="script.module.beautifulsoup" version="3.2.1"/>
<import addon="script.module.simplejson" version="2.0.10" />
<import addon="script.module.pyxbmct" version="1.1.4"/>
</requires>
Expand Down
10 changes: 9 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -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
- Match detail
4 changes: 2 additions & 2 deletions live_scores_detail.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 2ef7e00

Please sign in to comment.