X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=support%2Fbuilddeb.py;h=aa06f271063ae836e0aad916e7d916f94e5025c9;hb=e81cc672a8e6829fe7c13621ce6dfbff37ee4e74;hp=7f00e484ee414e7525ac54b659ba5ccdbd318e64;hpb=6ba7868eb3907585a6dce28e11511fad9008a17c;p=gc-dialer diff --git a/support/builddeb.py b/support/builddeb.py index 7f00e48..aa06f27 100755 --- a/support/builddeb.py +++ b/support/builddeb.py @@ -19,20 +19,24 @@ __version__ = constants.__version__ __build__ = constants.__build__ __changelog__ = """ 1.0.6 -* Fixing some dependencies for Diablo -* Fixed error on refreshing tabs when not logged in * Adding seperator between dialcentral launches in log -* Fixed Bug #4471 Notification Checkbox Won't Stay Checked (hour roll over error) * Implemented a work around for https://bugs.maemo.org/show_bug.cgi?id=4957 -* Fixing a bug where phone numbers in texts wouldn't appear -* Deletes notifications on uninstall -* Fixed category for Fremantle/Diablo -* Fixed needing to manually create "~/.dialcentral" due to earlier logging changes -* Fixed dependencies for fremantle -* Including a vastly improved py2deb +* Disables notifications on uninstall +* Including a vastly improved py2deb for better packages (icons on package, etc) * Tweaked sizes of stuff on recent tab * Starting some work on rotation support for fremantle * Made startup more error resistant +* Simplified menus +* Fremantle: Making various areas pannable +* Bug Fix: some dependencies for Diablo +* Bug Fix: Error on refreshing tabs when not logged in +* Bug Fix: #4471 Notification Checkbox Won't Stay Checked (hour roll over error) +* Bug Fix: Phone numbers in voicemails wouldn't appear +* Bug Fix: category for Fremantle/Diablo +* Bug Fix: needing to manually create "~/.dialcentral" due to earlier logging changes +* Bug Fix: dependencies for fremantle +* Bug Fix: Issues when trying to stack error messages +* Bug Fix: Python2.6 deprecates some stuff I did 1.0.5 * Contacts Tab remembers the last address book viewed on restart @@ -195,11 +199,11 @@ def build_package(distribution): ]) maemoSpecificDepends = ", python-osso | python2.5-osso, python-hildon | python2.5-hildon" p.depends += { - "debian": "", + "debian": ", python-glade2", "chinook": maemoSpecificDepends, "diablo": maemoSpecificDepends, - "fremantle": maemoSpecificDepends, - "mer": maemoSpecificDepends, + "fremantle": maemoSpecificDepends + ", python-glade2", + "mer": maemoSpecificDepends + ", python-glade2", }[distribution] p.recommends = ", ".join([ ])