Skip to content
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.

Commit

Permalink
Merge branch 'release/1.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
DerAndereAndi committed Oct 23, 2012
2 parents 9ef017c + 5209cc9 commit 0eb31f7
Show file tree
Hide file tree
Showing 10 changed files with 24 additions and 17 deletions.
6 changes: 3 additions & 3 deletions Classes/BITHockeyManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ + (BITHockeyManager *)sharedHockeyManager {
return sharedInstance;
}
#else
+ (CNSHockeyManager *)sharedHockeyManager {
static CNSHockeyManager *hockeyManager = nil;
+ (BITHockeyManager *)sharedHockeyManager {
static BITHockeyManager *hockeyManager = nil;

if (hockeyManager == nil) {
hockeyManager = [[CNSHockeyManager alloc] init];
hockeyManager = [[BITHockeyManager alloc] init];
}

return hockeyManager;
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ This document describes how to integrate the HockeySDK-Mac into your app. The SD

## Release Notes

Version 1.0.2:

- Include new PLCrashReporter version, which fixes a crash that can happen when the App/System is unloading images from a process

Version 1.0.1:

- Fixed a App Store rejection cause (only happened if you don't submit with sandbox enabled!): settings data was written into ~/Library/net.hockeyapp.sdk.mac/, and is now written into ~/Library/Caches/<app bundle identifier>/net.hockeyapp.sdk.mac/ next to the queued crash reports
Expand Down
4 changes: 2 additions & 2 deletions Resources/HockeySDK-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0.1</string>
<string>1.0.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>11</string>
<string>12</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2012 HockeyApp, Bit Stadium GmbH. All rights reserved.</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion Resources/de.lproj/HockeySDK.strings
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"UserDescriptionPlaceholder" = "Bitte beschreiben Sie hier die Schritte welche zu dem Problem geführt haben";

/* Problems Details Box Title */
"ProblemDetailsTitle" = "Problem details and system configuration";
"ProblemDetailsTitle" = "Problemdetails und Systemkonfiguration";

/* Privacy note text */
"PrivacyNote" = "Es werden keine personenbezogene Informationen mit diesem Bericht verschickt.";
Expand Down
4 changes: 2 additions & 2 deletions Support/HockeySDK.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 10.6;
MACOSX_DEPLOYMENT_TARGET = 10.5;
ONLY_ACTIVE_ARCH = NO;
SDKROOT = macosx;
};
Expand All @@ -339,7 +339,7 @@
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 10.6;
MACOSX_DEPLOYMENT_TARGET = 10.5;
SDKROOT = macosx;
};
name = Release;
Expand Down
2 changes: 1 addition & 1 deletion Vendor/CrashReporter.framework.dSYM/Contents/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.2-beta1</string>
<string>1.2-beta2</string>
</dict>
</plist>
Binary file not shown.
Binary file modified Vendor/CrashReporter.framework/Versions/A/CrashReporter
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,11 @@ typedef enum {
/** ARMv7 */
PLCrashReportArchitectureARMv7 = 5,

/** ARMv7s */
PLCrashReportArchitectureARMv7s = 6,

/** Unknown */
PLCrashReportArchitectureUnknown = 6
PLCrashReportArchitectureUnknown = 7
} PLCrashReportArchitecture;


Expand Down
14 changes: 7 additions & 7 deletions Vendor/CrashReporter.framework/Versions/A/Resources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>BuildMachineOSBuild</key>
<string>11E53</string>
<string>11G56</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
Expand All @@ -19,20 +19,20 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.2-beta1</string>
<string>1.2-beta2</string>
<key>DTCompiler</key>
<string></string>
<key>DTPlatformBuild</key>
<string>4E3002</string>
<string>4F1003</string>
<key>DTPlatformVersion</key>
<string>GM</string>
<key>DTSDKBuild</key>
<string>11E52</string>
<string>12A264</string>
<key>DTSDKName</key>
<string>macosx10.7</string>
<string>macosx10.8</string>
<key>DTXcode</key>
<string>0433</string>
<string>0441</string>
<key>DTXcodeBuild</key>
<string>4E3002</string>
<string>4F1003</string>
</dict>
</plist>

0 comments on commit 0eb31f7

Please sign in to comment.