Fixed bug with Move To Category
[quicknote] / support / builddeb.py
index 6234f03..a24960c 100755 (executable)
@@ -21,9 +21,17 @@ __email__ = "n800@axique.net"
 __version__ = constants.__version__
 __build__ = constants.__build__
 __changelog__ = """
+0.7.9
+ * UI Tweak: Removed "New Note..." due to weirdness and duplicated behavior
+ * Bugfix: Move To Category
+
 0.7.8
  * Spell checking
  * Fixing the application title
+ * Fremantle Support
+ * Ctrl+i and Ctrl+o to zoom in/out the interface
+ * Ctrl+enter to fullscreen app
+ * Ctrl+l to copy to clipboard the application debug log
 
 0.7.7
  * Slight modifications to the note history and SQL dialogs
@@ -93,11 +101,11 @@ def build_package(distribution):
        p = py2deb.Py2deb(__appname__)
        p.prettyName = constants.__pretty_app_name__
        p.description = __description__
-       p.bugTracker = "https://bugs.maemo.org/enter_bug.cgi?product=ejpi"
-       p.upgradeDescription = __changelog__.split("\n\n", 1)[0]
+       p.bugTracker = "https://bugs.maemo.org/enter_bug.cgi?product=quicknote"
+       #p.upgradeDescription = __changelog__.split("\n\n", 1)[0]
        p.author = __author__
        p.mail = __email__
-       p.license = "lgpl"
+       p.license = "gpl"
        p.depends = ", ".join([
                "python2.6 | python2.5",
                "python-gtk2 | python2.5-gtk2",
@@ -128,8 +136,8 @@ def build_package(distribution):
                "debian": "26x26-quicknote.png",
                "chinook": "26x26-quicknote.png",
                "diablo": "26x26-quicknote.png",
-               "fremantle": "64x64-quicknote.png", # Fremantle natively uses 48x48
-               "mer": "64x64-quicknote.png",
+               "fremantle": "48x48-quicknote.png", # Fremantle natively uses 48x48
+               "mer": "48x48-quicknote.png",
        }[distribution]
        p["/usr/bin"] = [ "quicknote.py" ]
        for relPath, files in unflatten_files(find_files(".", "locale")).iteritems():