From: Ed Page Date: Fri, 14 Jan 2011 13:37:38 +0000 (-0600) Subject: Bump to 0.8.10-1 X-Git-Url: http://vcs.maemo.org/git/?p=nqaap;a=commitdiff_plain;h=bb4121f51bc438bad3ec80796d3b12f118ff0bc3 Bump to 0.8.10-1 --- diff --git a/Makefile b/Makefile index f45d839..ed21dc2 100644 --- a/Makefile +++ b/Makefile @@ -2,6 +2,8 @@ PROJECT_NAME=nqaap SOURCE_PATH=src SOURCE=$(shell find $(SOURCE_PATH) -iname "*.py") PROGRAM=$(SOURCE_PATH)/$(PROJECT_NAME)_gtk.py +DATA_TYPES=*.ini *.png +DATA=$(foreach type, $(DATA_TYPES), $(shell find $(SOURCE_PATH) -iname "$(type)")) OBJ=$(SOURCE:.py=.pyc) BUILD_PATH=./build TAG_FILE=~/.ctags/$(PROJECT_NAME).tags @@ -41,6 +43,7 @@ package: $(OBJ) mkdir -p $(BUILD_PATH)/generic cp $(SOURCE_PATH)/constants.py $(BUILD_PATH)/generic cp $(SOURCE_PATH)/$(PROJECT_NAME).py $(BUILD_PATH)/generic + $(foreach file, $(DATA), cp $(file) $(BUILD_PATH)/generic/$(subst /,-,$(file)) ; ) $(foreach file, $(SOURCE), cp $(file) $(BUILD_PATH)/generic/$(subst /,-,$(file)) ; ) cp support/$(PROJECT_NAME).desktop $(BUILD_PATH)/generic cp support/icons/hicolor/26x26/hildon/$(PROJECT_NAME).png $(BUILD_PATH)/generic/26x26-$(PROJECT_NAME).png diff --git a/src/constants.py b/src/constants.py index 2b86c4d..0fd446b 100644 --- a/src/constants.py +++ b/src/constants.py @@ -3,7 +3,7 @@ import os __pretty_app_name__ = "nQaap" __app_name__ = "nqaap" __version__ = "0.8.10" -__build__ = 0 +__build__ = 1 __app_magic__ = 0xdeadbeef _data_path_ = os.path.join(os.path.expanduser("~"), ".%s" % __app_name__) _user_settings_ = "%s/settings.ini" % _data_path_ diff --git a/www/nqaap.deb b/www/nqaap.deb index 2fbb8bd..c74c2d7 100644 Binary files a/www/nqaap.deb and b/www/nqaap.deb differ