Moved history to the (app)menu
[quicknote] / support / builddeb.py
index f696e04..d71587d 100755 (executable)
@@ -21,6 +21,17 @@ __email__ = "n800@axique.net"
 __version__ = constants.__version__
 __build__ = constants.__build__
 __changelog__ = """
+0.7.10
+ * Moved history to the menu/appmenu
+ * Ctrl+w/q to quit
+
+0.7.9
+ * UI Tweak: Removed "New Note..." due to weirdness and duplicated behavior
+ * UI Tweak: Added App Menu to access some category functionality
+ * Bugfix: Move To Category
+ * Bugfix: Removed carriage return on Ctrl+Enter
+ * Added .deb package support
+
 0.7.8
  * Spell checking
  * Fixing the application title
@@ -116,7 +127,7 @@ def build_package(distribution):
                "mer": maemoSpecificDepends + ", python-glade2",
        }[distribution]
        p.section = {
-               "debian": "accessories",
+               "debian": "editors",
                "chinook": "accessories",
                "diablo": "user/office",
                "fremantle": "user/office",
@@ -159,16 +170,28 @@ def build_package(distribution):
        p["/usr/share/icons/hicolor/48x48/hildon"] = ["48x48-quicknote.png|quicknote.png"]
        p["/usr/share/icons/hicolor/scalable/hildon"] = ["scale-quicknote.png|quicknote.png"]
 
-       print p
-       print p.generate(
-               version="%s-%s" % (__version__, __build__),
-               changelog=__changelog__,
-               build=False,
-               tar=True,
-               changes=True,
-               dsc=True,
-       )
-       print "Building for %s finished" % distribution
+       if distribution == "debian":
+               print p
+               print p.generate(
+                       version="%s-%s" % (__version__, __build__),
+                       changelog=__changelog__,
+                       build=True,
+                       tar=False,
+                       changes=False,
+                       dsc=False,
+               )
+               print "Building for %s finished" % distribution
+       else:
+               print p
+               print p.generate(
+                       version="%s-%s" % (__version__, __build__),
+                       changelog=__changelog__,
+                       build=False,
+                       tar=True,
+                       changes=True,
+                       dsc=True,
+               )
+               print "Building for %s finished" % distribution
 
 
 if __name__ == "__main__":