X-Git-Url: http://git.maemo.org/git/?p=gc-dialer;a=blobdiff_plain;f=support%2Fbuilddeb.py;h=f9e1a27acee41c206c6fbe9d4ce427ef70e49612;hp=c11c39d2c7308f06541e12cf0518e91270e49c2b;hb=f0b4b9997f71aa02363f4c631a37450b4327ba79;hpb=4645aaf4de19d8d4dcc4504974de114e556edb2d diff --git a/support/builddeb.py b/support/builddeb.py index c11c39d..f9e1a27 100755 --- a/support/builddeb.py +++ b/support/builddeb.py @@ -30,6 +30,43 @@ __email__ = "eopage@byu.net" __version__ = constants.__version__ __build__ = constants.__build__ __changelog__ = """ +1.1.8 +* Bugfix: Error when parsing time when the user's locale didn't match googles +1.1.7 +* Adjusting how numbers are normalized +1.1.6 +* Added back in separate call/sms buttons +1.1.5 +* Bugfix from 1.1.2: Was not displaying errors in SMS window +1.1.4 +* Bugfix from 1.1.0: Scroll to bottom when removing a recipient +* Bugfix from 1.1.3: Maemo 5 fix was incomplete +1.1.3 +* Broadcast SMS: Increased the spacing between contacts +* SMS: Added Ctrl+h shortcut to hide the window for adding more recipients to the SMS +* Bugfix from 1.1.0: In "Messages" if "Texts" was selected, you saw nothing +* Bugfix from 1.1.0: Issues with SMS window on Maemo +* Bugfix from 1.1.0: Maemo 5 SMS dialog is not working +1.1.2 +* Broadcast SMS: Added names to the rows +* Broadcast SMS: Disabled changing number when there weren't numbers to change to +* SMS: Reformatted the SMS window a tad +* SMS: Added a proper non-modal error box to the SMS window +* Bugfix from 1.1.0: hildonizing the SMS Entry Window +* Bugfix from 1.1.0: Race condition in creating SMS Entry Window +1.1.1 +* SMS: Added icons to the SMS window buttons +* SMS: When selecting a number in the history tab, the call history is now shown in the SMS window +* Bugfix from 1.1.0: "Letters Left:" is now "Letters:" +* Bugfix from 1.1.0: When looking for alt numbers, there were issues +1.1.0 +* Dialpad: Support for "+" in numbers, including on Dialpad by holding "0". I'm hoping this makes both international and Gizmo users happier +* SMS: Added support for multi-part SMS messages (just like the GV site) +* SMS: Switching the sms entry dialog to a window with some key combos +* Broadcast SMS: Added it +* Contacts: Unofficial support for importing of contacts files through Ctrl+i +* Bugfixes carried over from TOR work + 1.0.10 * Renamed Recent to History * Sped up GV contacts @@ -278,33 +315,27 @@ def build_package(distribution): maemoSpecificDepends = ", python-osso | python2.5-osso, python-hildon | python2.5-hildon" p.depends += { "debian": ", python-glade2", - "chinook": maemoSpecificDepends, - "diablo": maemoSpecificDepends, + "diablo": maemoSpecificDepends + ", python2.5-conic", "fremantle": maemoSpecificDepends + ", python-glade2, python-alarm", - "mer": maemoSpecificDepends + ", python-glade2", }[distribution] p.recommends = ", ".join([ ]) p.section = { "debian": "comm", - "chinook": "communication", "diablo": "user/network", "fremantle": "user/network", - "mer": "user/network", }[distribution] p.arch = "all" p.urgency = "low" - p.distribution = "chinook diablo fremantle mer debian" + p.distribution = "diablo fremantle debian" p.repository = "extras" p.changelog = __changelog__ p.postinstall = __postinstall__ p.preremove = __preremove__ p.icon = { "debian": "26x26-dialcentral.png", - "chinook": "26x26-dialcentral.png", "diablo": "26x26-dialcentral.png", "fremantle": "64x64-dialcentral.png", # Fremantle natively uses 48x48 - "mer": "64x64-dialcentral.png", }[distribution] p["/usr/bin"] = [ "dialcentral.py" ] for relPath, files in unflatten_files(find_files(".")).iteritems():