Fixed issue with reading signal level. Updated changelog. Possibly fixed icon in... master
authorrichard <richard@rbm-sbox.(none)>
Wed, 2 Jun 2010 22:59:07 +0000 (17:59 -0500)
committerrichard <richard@rbm-sbox.(none)>
Wed, 2 Jun 2010 22:59:07 +0000 (17:59 -0500)
oldschool-0.9.0/debian/changelog
oldschool-0.9.0/debian/control
oldschool-0.9.0/src/opt/oldschool/n900_levels.py

index d13ff07..fe2913c 100644 (file)
@@ -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 <richard@merren.net>  Wed,  2 Jun 2010 17:56:00 -0500
+
 oldschool (0.9.0-1) unstable; urgency=low
 
   * Initial release 
index 235a0b1..a522f6f 100644 (file)
@@ -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
index 04ea8c6..005bb70 100755 (executable)
@@ -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