From: richard Date: Wed, 2 Jun 2010 22:59:07 +0000 (-0500) Subject: Fixed issue with reading signal level. Updated changelog. Possibly fixed icon in... X-Git-Url: http://git.maemo.org/git/?p=oldschool;a=commitdiff_plain;h=HEAD Fixed issue with reading signal level. Updated changelog. Possibly fixed icon in control. --- diff --git a/oldschool-0.9.0/debian/changelog b/oldschool-0.9.0/debian/changelog index d13ff07..fe2913c 100644 --- a/oldschool-0.9.0/debian/changelog +++ b/oldschool-0.9.0/debian/changelog @@ -1,3 +1,9 @@ +oldschool (0.9.0-2) unstable; urgency=low + + * fixed problem with bad dbus call keeping signal level from working properly + + -- Richard Merren Wed, 2 Jun 2010 17:56:00 -0500 + oldschool (0.9.0-1) unstable; urgency=low * Initial release diff --git a/oldschool-0.9.0/debian/control b/oldschool-0.9.0/debian/control index 235a0b1..a522f6f 100644 --- a/oldschool-0.9.0/debian/control +++ b/oldschool-0.9.0/debian/control @@ -11,7 +11,6 @@ Depends: python2.5, python-dbus, python2.5-qt4-core, python2.5-qt4-gui Description: Downgrade your N900 back to the 1990s. Shows an old-school style green screen complete with working power and signal-level bars. Touch on QUIT to exit. XB-Maemo-Icon-26: - begin-base64 644 old_school_icon.png iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAAXNSR0IArs4c 6QAAAAZiS0dEALgA7wBgNvgObwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0 SU1FB9oGARUIMlJuvT8AAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJ diff --git a/oldschool-0.9.0/src/opt/oldschool/n900_levels.py b/oldschool-0.9.0/src/opt/oldschool/n900_levels.py index 04ea8c6..005bb70 100755 --- a/oldschool-0.9.0/src/opt/oldschool/n900_levels.py +++ b/oldschool-0.9.0/src/opt/oldschool/n900_levels.py @@ -40,7 +40,7 @@ class LevelReader(QtCore.QObject): #Set up signal level dbus interface as class-level variable try: phone_net_obj = bus.get_object('com.nokia.phone.net','/com/nokia/phone/net', introspect=False) - self.phone_net_intf = dbus.Interface(self.phone_net_obj,'Phone.Net') + self.phone_net_intf = dbus.Interface(phone_net_obj,'Phone.Net') except dbus.DBusException: print "ERROR: Unable to connect to signal level dbus object" self.phone_net_intf = None