Updating changelog
[gc-dialer] / support / builddeb.py
index f373c47..3cf09de 100755 (executable)
@@ -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])