Bumping to 0.7.13 to release a new icon
authorEd Page <eopage@byu.net>
Sun, 19 Dec 2010 04:52:40 +0000 (22:52 -0600)
committerEd Page <eopage@byu.net>
Sun, 19 Dec 2010 04:52:40 +0000 (22:52 -0600)
14 files changed:
Makefile
data/24_quicknote.png [new file with mode: 0644]
data/32_quicknote.png [new file with mode: 0644]
data/40/quicknote.png [deleted file]
data/48/quicknote.png [deleted file]
data/48_quicknote.png [new file with mode: 0644]
data/72_quicknote.png [new file with mode: 0644]
data/LICENSE [new file with mode: 0644]
data/low/quicknote.png [deleted file]
data/quicknote.png [deleted file]
data/scale/quicknote.png [deleted file]
src/constants.py
support/builddeb.py
www/quicknote.deb

index 850ed4e..d0d39b4 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -67,10 +67,7 @@ package: $(OBJ) build_mo
        $(foreach file, $(LOCALE_FILES), cp $(file) $(BUILD_PATH)/generic/$(subst /,-,$(file)) ; )
        cp data/$(PROJECT_NAME).desktop $(BUILD_PATH)/generic
        cp data/$(PROJECT_NAME).service $(BUILD_PATH)/generic
-       cp data/low/$(PROJECT_NAME).png $(BUILD_PATH)/generic/26x26-$(PROJECT_NAME).png
-       cp data/40/$(PROJECT_NAME).png $(BUILD_PATH)/generic/40x40-$(PROJECT_NAME).png
-       cp data/48/$(PROJECT_NAME).png $(BUILD_PATH)/generic/48x48-$(PROJECT_NAME).png
-       cp data/scale/$(PROJECT_NAME).png $(BUILD_PATH)/generic/scale-$(PROJECT_NAME).png
+       cp data/*_$(PROJECT_NAME).png $(BUILD_PATH)/generic/
        cp support/builddeb.py $(BUILD_PATH)/generic
        cp support/py2deb.py $(BUILD_PATH)/generic
        cp support/fake_py2deb.py $(BUILD_PATH)/generic
diff --git a/data/24_quicknote.png b/data/24_quicknote.png
new file mode 100644 (file)
index 0000000..6bdc294
Binary files /dev/null and b/data/24_quicknote.png differ
diff --git a/data/32_quicknote.png b/data/32_quicknote.png
new file mode 100644 (file)
index 0000000..d8d6f12
Binary files /dev/null and b/data/32_quicknote.png differ
diff --git a/data/40/quicknote.png b/data/40/quicknote.png
deleted file mode 100644 (file)
index d6aa8d9..0000000
Binary files a/data/40/quicknote.png and /dev/null differ
diff --git a/data/48/quicknote.png b/data/48/quicknote.png
deleted file mode 100644 (file)
index 7c9f7af..0000000
Binary files a/data/48/quicknote.png and /dev/null differ
diff --git a/data/48_quicknote.png b/data/48_quicknote.png
new file mode 100644 (file)
index 0000000..a91acc0
Binary files /dev/null and b/data/48_quicknote.png differ
diff --git a/data/72_quicknote.png b/data/72_quicknote.png
new file mode 100644 (file)
index 0000000..d760967
Binary files /dev/null and b/data/72_quicknote.png differ
diff --git a/data/LICENSE b/data/LICENSE
new file mode 100644 (file)
index 0000000..5575146
--- /dev/null
@@ -0,0 +1,4 @@
+*_quicknote.png
+http://www.iconfinder.com/icondetails/23962/128/applet_notes_sticky_icon
+http://www.iconfinder.com/browse/iconset/humano2/#readme
+"The licences of the Icons are GPL, CC sa nc, LGPL and many more (copiable and for non commercial use)."
diff --git a/data/low/quicknote.png b/data/low/quicknote.png
deleted file mode 100644 (file)
index f7fc618..0000000
Binary files a/data/low/quicknote.png and /dev/null differ
diff --git a/data/quicknote.png b/data/quicknote.png
deleted file mode 100644 (file)
index 46c8c02..0000000
Binary files a/data/quicknote.png and /dev/null differ
diff --git a/data/scale/quicknote.png b/data/scale/quicknote.png
deleted file mode 100644 (file)
index da2d5f5..0000000
Binary files a/data/scale/quicknote.png and /dev/null differ
index c917cf1..f15e340 100644 (file)
@@ -2,7 +2,7 @@ import os
 
 __pretty_app_name__ = "Quicknote"
 __app_name__ = "quicknote"
-__version__ = "0.7.12"
+__version__ = "0.7.13"
 __build__ = 0
 _data_path_ = os.path.join(os.path.expanduser("~"), ".quicknote")
 __app_magic__ = 0xdeadbeef
index 9b64e84..8fc2b44 100755 (executable)
@@ -21,8 +21,7 @@ __email__ = "n800@axique.net"
 __version__ = constants.__version__
 __build__ = constants.__build__
 __changelog__ = """
- * Small bugfix for launch
- * Some code cleanup
+* New icon
 """.strip()
 
 
@@ -94,9 +93,9 @@ def build_package(distribution):
        p.changelog = __changelog__
        p.postinstall = __postinstall__
        p.icon = {
-               "debian": "26x26-quicknote.png",
-               "diablo": "26x26-quicknote.png",
-               "fremantle": "48x48-quicknote.png", # Fremantle natively uses 48x48
+               "debian": "24_quicknote.png",
+               "diablo": "32_quicknote.png",
+               "fremantle": "48_quicknote.png", # Fremantle natively uses 48x48
        }[distribution]
        p["/usr/bin"] = [ "quicknote.py" ]
        for relPath, files in unflatten_files(find_files(".", "locale")).iteritems():
@@ -116,10 +115,10 @@ def build_package(distribution):
                        for (oldName, newName) in files
                )
        p["/usr/share/applications/hildon"] = ["quicknote.desktop"]
-       p["/usr/share/icons/hicolor/26x26/hildon"] = ["26x26-quicknote.png|quicknote.png"]
-       p["/usr/share/icons/hicolor/40x40/hildon"] = ["40x40-quicknote.png|quicknote.png"]
-       p["/usr/share/icons/hicolor/48x48/hildon"] = ["48x48-quicknote.png|quicknote.png"]
-       p["/usr/share/icons/hicolor/scalable/hildon"] = ["scale-quicknote.png|quicknote.png"]
+       p["/usr/share/icons/hicolor/24x24/hildon"] = ["24_quicknote.png|quicknote.png"]
+       p["/usr/share/icons/hicolor/32x32/hildon"] = ["32_quicknote.png|quicknote.png"]
+       p["/usr/share/icons/hicolor/48x48/hildon"] = ["48_quicknote.png|quicknote.png"]
+       p["/usr/share/icons/hicolor/72x72/hildon"] = ["72_quicknote.png|quicknote.png"]
 
        if distribution == "debian":
                print p
index 00f333c..bd0c5c2 100644 (file)
Binary files a/www/quicknote.deb and b/www/quicknote.deb differ