Switching to a new icon that is only slightly better
[multilist] / support / builddeb.py
index 72f777c..0171b46 100755 (executable)
@@ -21,36 +21,8 @@ __email__ = "n800@axique.net"
 __version__ = constants.__version__
 __build__ = constants.__build__
 __changelog__ = """
-0.3.6
-* Adding filtering for new and complete in addition to all and active
-
-0.3.5
-* Bugfix: Fixing the application launcher
-
-0.3.4
-* Making rotation configurable in the Settings window
-* Persisting full-screen / rotation settings
-
-0.3.3
-* Rotation support
-* Turned the settings dialog into a window
-
-0.3.2
-* Massive code cleanup
-* Re-arrangement of GTK Menus
-* Added Maemo 5 Menu
-* Moved Active/All filter to menu
-* Moved Checkout All to menu
-* Improved Search bar
-* Removed unnesary UI elements
-* Switched to real inconsistent check boxes for tasks
-* Switching the settings dialog to be more Maemo 5 like
-
-0.3.1
-* I18N, extract de.po, add ru.po.
-
-0.3.0
-* Initial Release.
+0.3.12
+* Adding some paranoia protection against a problem brought up on t.m.o thread
 """
 
 
@@ -93,7 +65,7 @@ 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=quicknote"
+       p.bugTracker = "https://bugs.maemo.org/enter_bug.cgi?product=Multilist"
        p.upgradeDescription = __changelog__.split("\n\n", 1)[0]
        p.author = __author__
        p.mail = __email__
@@ -124,7 +96,7 @@ def build_package(distribution):
        p.icon = {
                "debian": "26x26-multilist.png",
                "diablo": "26x26-multilist.png",
-               "fremantle": "40x40-multilist.png", # Fremantle natively uses 48x48
+               "fremantle": "48x48-multilist.png", # Fremantle natively uses 48x48
        }[distribution]
        p["/usr/bin"] = [ "multilist.py" ]
        for relPath, files in unflatten_files(find_files(".", "locale")).iteritems():
@@ -145,8 +117,8 @@ def build_package(distribution):
                )
        p["/usr/share/applications/hildon"] = ["multilist.desktop"]
        p["/usr/share/icons/hicolor/26x26/hildon"] = ["26x26-multilist.png|multilist.png"]
-       p["/usr/share/icons/hicolor/40x40/hildon"] = ["40x40-multilist.png|multilist.png"]
-       p["/usr/share/icons/hicolor/scalable/hildon"] = ["scale-multilist.png|multilist.png"]
+       p["/usr/share/icons/hicolor/32x32/hildon"] = ["32x32-multilist.png|multilist.png"]
+       p["/usr/share/icons/hicolor/48x48/hildon"] = ["48x48-multilist.png|multilist.png"]
 
        if distribution == "debian":
                print p