version bump, fixed an error with GetValue in mythboxee.py

This commit is contained in:
Erik Kristensen 2010-07-25 11:44:55 -04:00
parent 67a281845c
commit 503d23e5c7
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
<app>
<id>com.erikkristensen.mythboxee</id>
<name>MythBoxee Beta</name>
<version>3.23.0.beta</version>
<version>3.23.1.beta</version>
<description>Watch all your MythTV recordings from Boxee.</description>
<thumb>http://erikkristensen.com/project/mythboxee/mythboxee_logo.jpg</thumb>
<media>video</media>

View File

@ -6,9 +6,9 @@ from xml.dom import minidom
config = mc.GetApp().GetLocalConfig()
if not config.GetValue("SortBy"):
config.GetValue("SortBy", "Original Air Date")
config.SetValue("SortBy", "Original Air Date")
if not config.GetValue("SortDir"):
config.GetValue("SortDir", "Descending")
config.SetValue("SortDir", "Descending")
titles = []