Adding a hildon test
[gc-dialer] / support / builddeb.py
index de750de..6b3da48 100755 (executable)
@@ -1,15 +1,53 @@
 #!/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.2"
-__build__ = 1
-__changelog__ = '''\
+__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
+ * 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
+ * Now the phone selector is used always, even if there is just one phone number
+ * Added a Messages Tab, which displays SMS and Voicemail messages
+ * Added option to send SMS messages
+
+0.9.5
+ * Fixed a login issue due to Google changing their webpage
+
+0.9.4 - ""
+ * Misc Bug fixes and experiments
+
+0.9.3 - ""
+ * Removed the much disliked contact source ID
+ * Added saving of callback number when using GoogleVoice
+ * Got proper formatting on things ("&" rather than "&")
+ * Misc Bug fixes
+
 0.9.2 - "Two heads are better than one"
  * Adding of UI to switch between GC and GV
  * Minimized flashing the dial button between grayed out and not on startup
@@ -81,17 +119,17 @@ if __name__ == "__main__":
        except:
                pass
 
-       p = Py2deb(__appname__)
+       p = py2deb.Py2deb(__appname__)
        p.description = __description__
        p.author = __author__
        p.mail = __email__
        p.license = "lgpl"
-       p.depends = "python2.5, python2.5-gtk2"
+       p.depends = "python2.5, python2.5-gtk2, python2.5-xml"
        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"