From 920949e4391c3aa4d7ad7ac48d5a60144a4239c7 Mon Sep 17 00:00:00 2001 From: Yves Date: Tue, 16 Mar 2010 07:06:34 -0700 Subject: [PATCH] 0.5.2 --- debian/changelog | 14 ++++++++++++++ debian/control | 3 +-- src/FeedingIt.py | 6 +++--- src/config.py | 6 +++--- src/feedingitdbus.py | 2 +- 5 files changed, 22 insertions(+), 9 deletions(-) diff --git a/debian/changelog b/debian/changelog index bea1f2f..b95c796 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,17 @@ +feedingit (0.5.2-0) unstable; urgency=low + + * Fixed AddFeed from dbus (feedhandler) + * Added python2.5-webkit as dependency + + -- Yves Wed, 10 Mar 2010 19:05:19 -0800 + +feedingit (0.5.1-1) unstable; urgency=low + + * Fixed read/unread issue when updating feeds + * Unread messages are shown in SkyBlue colour + + -- Yves Mon, 08 Mar 2010 22:38:19 -0800 + feedingit (0.5.1-0) unstable; urgency=low * Added caching of images for Archived Articles diff --git a/debian/control b/debian/control index af7030a..8b1fd87 100644 --- a/debian/control +++ b/debian/control @@ -10,8 +10,7 @@ XSBC-Bugtracker: https://garage.maemo.org/tracker/?func=browse&group_id=1202&ati Package: feedingit Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, python-gtkhtml2, python, python-hildon, - libgtkhtml2-0, python-dbus, python-osso, python-gconf, python-beautifulsoup -Recommends: python2.5-webkit + libgtkhtml2-0, python-dbus, python-osso, python-gconf, python-beautifulsoup, python2.5-webkit Description: RSS Reader Its main features are: diff --git a/src/FeedingIt.py b/src/FeedingIt.py index b1227a2..56e9d17 100644 --- a/src/FeedingIt.py +++ b/src/FeedingIt.py @@ -446,10 +446,10 @@ class DisplayArticle(hildon.StackableWindow): x = self.coords[0] - event.x y = self.coords[1] - event.y - if (abs(y) < 20): - if (x > 30): + if (abs(y) < 30): + if (x > 15): self.emit("article-previous", self.index) - elif (x<-30): + elif (x<-15): self.emit("article-next", self.index) #print x, y #print "Released" diff --git a/src/config.py b/src/config.py index 805a66f..fbfb365 100644 --- a/src/config.py +++ b/src/config.py @@ -62,20 +62,20 @@ class Config(): picker.set_name('HildonButton-finger') picker.set_alignment(0,0,1,1) self.buttons[setting] = picker - vbox.pack_start(picker) + vbox.pack_start(picker, expand=False) button = hildon.CheckButton(gtk.HILDON_SIZE_FINGER_HEIGHT) button.set_label("Auto-update Enabled") button.set_active(self.config["autoupdate"]) button.connect("toggled", self.button_toggled, "autoupdate") - vbox.pack_start(button) + vbox.pack_start(button, expand=False) if self.has_webkit: button = hildon.CheckButton(gtk.HILDON_SIZE_FINGER_HEIGHT) button.set_label("Webkit Articles Enabled") button.set_active(self.config["webkit"]) button.connect("toggled", self.button_toggled, "webkit") - vbox.pack_start(button) + vbox.pack_start(button, expand=False) panArea.add_with_viewport(vbox) diff --git a/src/feedingitdbus.py b/src/feedingitdbus.py index fee9d7e..c6875e6 100644 --- a/src/feedingitdbus.py +++ b/src/feedingitdbus.py @@ -37,7 +37,7 @@ class ServerObject(dbus.service.Object): # Here the interface name, and the method is named same as on dbus. @dbus.service.method('org.maemo.feedingit') def AddFeed(self, url): - self.app.addFeed(None, url) + self.app.addFeed(url) return "Done" @dbus.service.method('org.maemo.feedingit') -- 1.7.9.5