X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=support%2Fbuilddeb.py;h=6b3da48c0146dda0573429e09609ae030c944b5e;hb=d3e670ad6992917336d210ea77439423b10eaf3f;hp=57a8930a5d08073d55b33421442285971fba3dd3;hpb=a48fc9382617937b23f7451eaf6691d80d8ddf56;p=gc-dialer diff --git a/support/builddeb.py b/support/builddeb.py index 57a8930..6b3da48 100755 --- a/support/builddeb.py +++ b/support/builddeb.py @@ -1,19 +1,34 @@ #!/usr/bin/python2.5 -from py2deb import * +import os +import sys +import py2deb -__appname__ = "dialcentral" +import constants + + +__appname__ = constants.__app_name__ __description__ = "Simple interface to Google's GrandCentral(tm) service" __author__ = "Ed Page" __email__ = "eopage@byu.net" -__version__ = "0.9.7" +__version__ = constants.__version__ __build__ = 0 __changelog__ = ''' +0.9.9 + +0.9.8 + * Added columns to recent view and messages view to help seperate messages + * Attempted refreshing session on dial/sms send + * Fixed a GC Bug + * Minor bug fixes as usual + 0.9.7 - * Force Refresh for when wanting to check for more messages + * Switched to Force Refresh for when wanting to check for more messages * Removed timeouts that forced refreshes on various tabs * Added support for a settings file, fairly primitive right now + * Fixed Maemo Support + * Lots of major and minor bug fixes 0.9.6 * Experimenting with the tabs being on the side @@ -104,7 +119,7 @@ if __name__ == "__main__": except: pass - p = Py2deb(__appname__) + p = py2deb.Py2deb(__appname__) p.description = __description__ p.author = __author__ p.mail = __email__ @@ -113,8 +128,8 @@ if __name__ == "__main__": p.section = "user/communication" p.arch = "all" p.urgency = "low" - p.distribution = "chinook diablo" - p.repository = "extras-devel" + p.distribution = "chinook diablo fremantle" + p.repository = "extras" p.changelog = __changelog__ p.postinstall = __postinstall__ p.icon="26x26-dialcentral.png"