added nims to the about box
[enigma2.git] / lib / python / Screens / About.py
index 36b908361797be22618ed2b504ae39622d377211..542bee6a02199eff30b7a2c7181adb0ee1a2f532 100644 (file)
@@ -2,20 +2,27 @@ from Screen import Screen
 from Components.ActionMap import ActionMap
 from Components.Label import Label
 from Components.Harddisk import Harddisk
+from Components.NimManager import nimmanager
+from Components.MenuList import MenuList
 
 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)")
+               
+               nims = nimmanager.nimList()
+               count = 0
+               for i in nims:
+                       self["tuner" + str(count)] = Label(i[0])
+                       count += 1
 
                self["hdd"] = Label("Detected HDD:")
                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"], 
                        {