Skip to content

Commit

Permalink
Bump version number to 1.5.1 build30, remove decrypted file after par…
Browse files Browse the repository at this point in the history
…sing
  • Loading branch information
richard committed Feb 19, 2011
1 parent f5de05c commit 8b0401a
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 10 deletions.
6 changes: 5 additions & 1 deletion Classes/Utilities/GlobalUtils.m
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,11 @@ BOOL IsIpad() {

NSStringEncoding encoding;
NSError *e;
return [NSString stringWithContentsOfFile:tmpFileName usedEncoding:&encoding error:&e];
NSString *ret = [NSString stringWithContentsOfFile:tmpFileName usedEncoding:&encoding error:&e];

DeleteFile(FileWithName(@"decrypted-file.org"));

return ret;
} else {
return @"";
}
Expand Down
4 changes: 2 additions & 2 deletions MobileOrg-Info-AdHoc.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.5.1</string>
<string>1.5.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>29</string>
<string>30</string>
<key>CFBundleIconFiles</key>
<array>
<string>Icon-beta-72.png</string>
Expand Down
4 changes: 2 additions & 2 deletions MobileOrg-Info-Debug.plist
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.5.1</string>
<string>1.5.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>29</string>
<string>30</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSMainNibFile</key>
Expand Down
4 changes: 2 additions & 2 deletions MobileOrg-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.5.1</string>
<string>1.5.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>29</string>
<string>30</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSMainNibFile</key>
Expand Down
6 changes: 3 additions & 3 deletions MobileOrg.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -907,7 +907,7 @@
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 29;
CURRENT_PROJECT_VERSION = 30;
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
GCC_DYNAMIC_NO_PIC = NO;
GCC_OPTIMIZATION_LEVEL = 0;
Expand Down Expand Up @@ -945,7 +945,7 @@
CODE_SIGN_ENTITLEMENTS = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution: Richard Moreland";
COPY_PHASE_STRIP = YES;
CURRENT_PROJECT_VERSION = 29;
CURRENT_PROJECT_VERSION = 30;
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = MobileOrg_Prefix.pch;
Expand Down Expand Up @@ -980,7 +980,7 @@
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution: Richard Moreland";
COPY_PHASE_STRIP = YES;
CURRENT_PROJECT_VERSION = 29;
CURRENT_PROJECT_VERSION = 30;
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = MobileOrg_Prefix.pch;
Expand Down

0 comments on commit 8b0401a

Please sign in to comment.