From bd9dc97ee064a221002f439183ac6d7b48686bf3 Mon Sep 17 00:00:00 2001 From: "techdragon.nguyen@gmail.com" Date: Tue, 17 Apr 2012 11:25:50 +0000 Subject: [PATCH] updated build number to 0.18.4 --- projects/mtg/Android/AndroidManifest.xml | 4 ++-- projects/mtg/bin/Res/createResourceZip.py | 4 ++-- projects/mtg/include/Wagic_Version.h | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/projects/mtg/Android/AndroidManifest.xml b/projects/mtg/Android/AndroidManifest.xml index 78f0c7fd0..85c688061 100644 --- a/projects/mtg/Android/AndroidManifest.xml +++ b/projects/mtg/Android/AndroidManifest.xml @@ -1,8 +1,8 @@ + android:versionCode="184" + android:versionName="0.18.4"> diff --git a/projects/mtg/bin/Res/createResourceZip.py b/projects/mtg/bin/Res/createResourceZip.py index cff4ca526..952760402 100644 --- a/projects/mtg/bin/Res/createResourceZip.py +++ b/projects/mtg/bin/Res/createResourceZip.py @@ -26,14 +26,14 @@ def createResZipFile(filename): zip_file.close() def createStandardResFile(): - filename = 'core_0183.zip' + filename = 'core_0184.zip' createResZipFile( filename ) print >> sys.stderr, 'Created Resource Package for Standard Distribution: {0}'.format( filename) def createIosResFile(): print 'Preparing Resource Package for iOS' utilities = ZipUtilities() - filename = 'core_0183_iOS.zip' + filename = 'core_0184_iOS.zip' #createResZipFile( filename ) zip_file = zipfile.ZipFile(filename, 'a', zipfile.ZIP_STORED) zip_file.write("../../iOS/Res/rules/modrules.xml", "rules/modrules.xml", zipfile.ZIP_STORED) diff --git a/projects/mtg/include/Wagic_Version.h b/projects/mtg/include/Wagic_Version.h index 2a3f59af4..3d0b8a050 100644 --- a/projects/mtg/include/Wagic_Version.h +++ b/projects/mtg/include/Wagic_Version.h @@ -13,7 +13,7 @@ /* Wagic versions */ #define WAGIC_VERSION_MAJOR 0 #define WAGIC_VERSION_MEDIUM 18 -#define WAGIC_VERSION_MINOR 3 +#define WAGIC_VERSION_MINOR 4 #define VERSION_DOT(a, b, c) a ##.## b ##.## c #define VERSION_WITHOUT_DOT(a, b, c) a ## b ## c