0.5.2
authorYves <ymarcoz@n900-sdk.(none)>
Tue, 16 Mar 2010 14:06:34 +0000 (07:06 -0700)
committerYves <ymarcoz@n900-sdk.(none)>
Tue, 16 Mar 2010 14:06:34 +0000 (07:06 -0700)
debian/changelog
debian/control
src/FeedingIt.py
src/config.py
src/feedingitdbus.py

index bea1f2f..b95c796 100644 (file)
@@ -1,3 +1,17 @@
+feedingit (0.5.2-0) unstable; urgency=low
+
+  * Fixed AddFeed from dbus (feedhandler)
+  * Added python2.5-webkit as dependency
+  
+ -- Yves <yves@marcoz.org>  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 <yves@marcoz.org>  Mon, 08 Mar 2010 22:38:19 -0800
+
 feedingit (0.5.1-0) unstable; urgency=low
 
   * Added caching of images for Archived Articles
index af7030a..8b1fd87 100644 (file)
@@ -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:
index b1227a2..56e9d17 100644 (file)
@@ -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"
index 805a66f..fbfb365 100644 (file)
@@ -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)
         
index fee9d7e..c6875e6 100644 (file)
@@ -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')