From 188024c2db961211902853609ad0d34e8472bc21 Mon Sep 17 00:00:00 2001 From: "beville@gmail.com" Date: Tue, 19 Feb 2013 22:15:24 +0000 Subject: [PATCH] Make sure the mac bundle Info.plist has the version string set git-svn-id: http://comictagger.googlecode.com/svn/trunk@524 6c5673fe-1810-88d6-992b-cd32ca31540c --- comictaggerlib/ctversion.py | 2 +- mac/Makefile | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/comictaggerlib/ctversion.py b/comictaggerlib/ctversion.py index 36f175c..16c82d8 100644 --- a/comictaggerlib/ctversion.py +++ b/comictaggerlib/ctversion.py @@ -1,3 +1,3 @@ # This file should contan only these comments, and the line below. # Used by packaging makefiles and app -version="1.1.2-beta" +version="1.1.2a-beta" diff --git a/mac/Makefile b/mac/Makefile index 257255e..7ac7131 100644 --- a/mac/Makefile +++ b/mac/Makefile @@ -19,6 +19,8 @@ dist: cp -a $(TAGGER_SRC)/ui $(APP_BUNDLE)/Contents/MacOS cp -a $(TAGGER_SRC)/graphics $(APP_BUNDLE)/Contents/MacOS cp $(MAC_BASE)/app.icns $(APP_BUNDLE)/Contents/Resources/icon-windowed.icns + # fix the version string in the Info.plist + sed -i -e 's/0\.0\.0/$(VERSION_STR)/' $(MAC_BASE)/dist/ComicTagger.app/Contents/Info.plist clean: rm -rf $(DIST_DIR) $(MAC_BASE)/build