X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=support%2Fbuilddeb.py;h=3cf09deb4a03b44a14bb5245aabfcbc2197ddc9f;hb=f4db2198c039e3c7eeba0975dce4db8a55d8d52e;hp=f373c47e465e425a21ee04a24ccc0d3b67167aa1;hpb=1690b0a78e002a0d99b504e5b702b1771aa0f96c;p=gc-dialer diff --git a/support/builddeb.py b/support/builddeb.py index f373c47..3cf09de 100755 --- a/support/builddeb.py +++ b/support/builddeb.py @@ -18,6 +18,23 @@ __email__ = "eopage@byu.net" __version__ = constants.__version__ __build__ = 0 __changelog__ = ''' +1.0.4 +* Fixed the duplicate title on Maemo + +1.0.3 +* Holding down a tab for a second will now force a refresh +* Fixed a bug dealing with overzealously refreshing the contacts tab +* Finding some undescriptive errors and made them more descriptive +* Swapped the order GrandCentral and GoogleVoice appear in login window +* Fixed the "Recent" and "Message" tabs, google changed things on me again + +1.0.2 +* Random bug fixes +* Random performance improvements + +1.0.1 +* Fixed a voicemail transcripts due to a GoogleVoice change + 1.0.0 * Added names to the recent tab for GoogleVoice @@ -136,11 +153,11 @@ def build_package(distribution): p.depends = { "diablo": "python2.5, python2.5-gtk2, python2.5-xml", "mer": "python2.6, python-gtk2, python-xml, python-glade2", - } - p.section = "user/utilities" + }[distribution] + p.section = "user/communication" p.arch = "all" p.urgency = "low" - p.distribution = "chinook diablo fremantle" + p.distribution = "chinook diablo fremantle mer" p.repository = "extras" p.changelog = __changelog__ p.postinstall = __postinstall__ @@ -164,6 +181,7 @@ def build_package(distribution): __version__, __build__, changelog=__changelog__, tar=True, dsc=True, changes=True, build=False, src=True ) + print "Building for %s finished" % distribution if __name__ == "__main__": @@ -179,4 +197,4 @@ if __name__ == "__main__": else: commandArgs = None commandArgs = ["diablo"] - build_package() + build_package(commandArgs[0])