Updating changelog and found out fremantle uses 48x48 icons so going a size up to...
authorepage <eopage@byu.net>
Tue, 22 Sep 2009 02:10:47 +0000 (02:10 +0000)
committerepage <eopage@byu.net>
Tue, 22 Sep 2009 02:10:47 +0000 (02:10 +0000)
git-svn-id: file:///svnroot/gc-dialer/trunk@456 c39d3808-3fe2-4d86-a59f-b7f623ee9f21

support/builddeb.py

index aa06f27..bc98318 100755 (executable)
@@ -28,6 +28,7 @@ __changelog__ = """
 * Made startup more error resistant
 * Simplified menus
 * Fremantle: Making various areas pannable
+* UI Tweak: Switch to accounts tab when logging in and callback is blank as a sublte hint to configure it
 * Bug Fix: some dependencies for Diablo
 * Bug Fix: Error on refreshing tabs when not logged in
 * Bug Fix: #4471 Notification Checkbox Won't Stay Checked (hour roll over error)
@@ -221,7 +222,13 @@ def build_package(distribution):
        p.changelog = __changelog__
        p.postinstall = __postinstall__
        p.preremove = __preremove__
-       p.icon = "26x26-dialcentral.png"
+       p.icon = {
+               "debian": "26x26-dialcentral.png",
+               "chinook": "26x26-dialcentral.png",
+               "diablo": "26x26-dialcentral.png",
+               "fremantle": "64x64-dialcentral.png", # Fremantle natively uses 48x48
+               "mer": "64x64-dialcentral.png",
+       }
        p["/usr/bin"] = [ "dialcentral.py" ]
        for relPath, files in unflatten_files(find_files(".")).iteritems():
                fullPath = "/usr/lib/dialcentral"