Imported Upstream version 0.0.5
authorPali Rohár <pali.rohar@gmail.com>
Fri, 22 Jun 2012 12:11:04 +0000 (14:11 +0200)
committerPali Rohár <pali.rohar@gmail.com>
Fri, 22 Jun 2012 12:11:04 +0000 (14:11 +0200)
debian/changelog
debian/control
debian/copyright
debian/postinst
debian/postrm
src/usr/lib/hildon-desktop/CallNotify.py

index 3464c6b..49554c9 100644 (file)
@@ -1,7 +1,8 @@
-callnotify (0.0.4-1) stable; urgency=low
+callnotify (0.0.5-1) stable; urgency=low
 
-  * A very simple and ugly GUI has been added to the status menu. 
-  * User can define sound and vibration notification in a set interval 
-  * Config file at /home/user/.config/CallNotify/conf.txt
+  * Fixed notification disappear too quickly
+  * Added dependencies for python2.5-gtk and python2.5-hildon.
+  * Sending SMS to yourself will NOT cause a notification
+  * SMS correspondence in Conversation app will not cause notification,
 
- -- Omer Agmon <omeriko9@gmail.com>  Tue, 30 Mar 2010 21:43:31 +0000
+ -- Omer Agmon <omeriko9@gmail.com>  Wed, 31 Mar 2010 14:34:55 +0000
index 04aa18a..5486108 100644 (file)
@@ -7,7 +7,7 @@ Standards-Version: 3.7.2
 
 Package: callnotify
 Architecture: all
-Depends: python2.5, python-osso, python-dbus, python2.5-gtk2, python-hildondesktop
+Depends: python2.5, python-osso, python-dbus, python2.5-gtk, python2.5-hildon, python2.5-gtk2, python-hildondesktop
 Description: Missed calls and SMS notifier.
  Will display a small status bar icon for missed Calls and SMS.
  The icon will disappear after closing the yellow notification or viewing the SMS.
index d11d616..dafd5af 100644 (file)
@@ -1,5 +1,5 @@
 This package was py2debianized(0.5.3) by Omer Agmon <omeriko9@gmail.com> on
-Tue, 30 Mar 2010 21:43:31 +0000.
+Wed, 31 Mar 2010 14:34:55 +0000.
 
 It was downloaded from 
 
index d313abf..7bfe1fd 100644 (file)
@@ -1,3 +1,4 @@
 #!/bin/sh
        killall -9 hildon-status-menu
+       sleep 2
        killall hildon-status-menu
\ No newline at end of file
index d313abf..7bfe1fd 100644 (file)
@@ -1,3 +1,4 @@
 #!/bin/sh
        killall -9 hildon-status-menu
+       sleep 2
        killall hildon-status-menu
\ No newline at end of file
index 798b1df..6ebbabc 100644 (file)
@@ -256,7 +256,7 @@ class CallNotify(hildondesktop.StatusMenuItem):
                
        # Method to define the way to add dbus signal receiver
 
-    def smsrec(self):
+    def smsRead2(self, a):
                self.dbg('smsrec started')
                self.stop_notification(self)
 
@@ -269,7 +269,7 @@ class CallNotify(hildondesktop.StatusMenuItem):
                #bus.add_signal_receiver(self.handleMissedCall, "MembersChanged", None, None, None)
                bus.add_signal_receiver(self.smsReceived, "MessageReceived", None, None, None)
                bus.add_signal_receiver(self.smsRead, "NotificationClosed", "org.freedesktop.Notifications", None, "/org/freedesktop/Notifications")
-               bus.add_signal_receiver(self.smsrec, "Closed", None, None, None)
+               bus.add_signal_receiver(self.smsRead2, "PendingMessagesRemoved", None, None, None)
 
                 self.mainLoop = gobject.MainLoop()
                self.mainLoop.run()