consistently use iServiceHandler instead of eServiceCenter to use properly wrapped...
[enigma2.git] / lib / python / Screens / About.py
index ae3ce394265b9cb858bd26b3a9ae892ddbeef068..2e32e7d70d0a61db25fb599ffdc3f23988008950 100644 (file)
@@ -1,20 +1,22 @@
 from Screen import Screen
 from Components.ActionMap import ActionMap
 from Components.Label import Label
-
+from Components.Harddisk import Harddisk
 
 class About(Screen):
        def __init__(self, session):
                Screen.__init__(self, session)
                
-               self["text"] = Label("Enigma v2.0a")
+               self["text"] = Label("Enigma v2.0b")
 
                self["tuner"] = Label("Detected NIMs:")
-               self["tunerA"] = Label("   Tuner A: Fujitsu QST (DVB-S)")
-               self["tunerB"] = Label("   Tuner B: Fujitsu QST (DVB-S)")
+               self["tunerA"] = Label("   Tuner A: Alps BSBE1 (DVB-S)")
+               self["tunerB"] = Label("   Tuner B: Alps BSBE1 (DVB-S)")
 
                self["hdd"] = Label("Detected HDD:")
-               self["hddA"] = Label("   not found")
+               hdd = Harddisk(0)
+               #self["hddA"] = Label("%s (%s, %d MB free)" % (hdd.model(), hdd.capacity(),hdd.free()))
+               self["hddA"] = Label("Seagate 398 GByte (323 GByte free)")
 
                self["actions"] = ActionMap(["SetupActions"], 
                        {