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

Commit

Permalink
Merge branch 'hotfix/2.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
DerAndereAndi committed Feb 18, 2014
2 parents 7629469 + 8bd0000 commit 1d18c92
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 15 deletions.
4 changes: 3 additions & 1 deletion Classes/CrashReporting/BITCrashReportTextFormatter.m
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,9 @@ + (NSString *)selectorForRegisterWithName:(NSString *)regName ofThread:(BITPLCra
// get the SEL
const char *foundSelector = findSEL([imageForRegAddress.imageName UTF8String], imageForRegAddress.imageUUID, regAddress - (uint64_t)imageForRegAddress.imageBaseAddress);

return [NSString stringWithUTF8String:foundSelector];
if (foundSelector != NULL) {
return [NSString stringWithUTF8String:foundSelector];
}
}

return nil;
Expand Down
6 changes: 3 additions & 3 deletions HockeySDK-Mac.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'HockeySDK-Mac'
s.version = '2.0.1'
s.version = '2.0.2'

s.summary = 'Collect crash reports with HockeyApp.'
s.description = <<-DESC
Expand All @@ -12,11 +12,11 @@ Pod::Spec.new do |s|
DESC

s.homepage = 'http://hockeyapp.net/'
s.documentation_url = 'http://hockeyapp.net/help/sdk/mac/2.0.1/'
s.documentation_url = 'http://hockeyapp.net/help/sdk/mac/2.0.2/'

s.license = { :type => 'MIT', :file => 'HockeySDK-Mac/LICENSE.txt' }
s.author = { 'Andreas Linde' => '[email protected]', 'Thomas Dohmke' => "[email protected]" }
s.source = { :http => "http://download.hockeyapp.net/sdk/mac/HockeySDK-Mac-2.0.1.zip" }
s.source = { :http => "http://download.hockeyapp.net/sdk/mac/HockeySDK-Mac-2.0.2.zip" }

s.platform = :osx, '10.5'
s.osx.deployment_target = 10.5
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Version 2.0.1
## Version 2.0.2

- [Changelog](http://www.hockeyapp.net/help/sdk/mac/2.0.1/docs/docs/Changelog.html)
- [Changelog](http://www.hockeyapp.net/help/sdk/mac/2.0.2/docs/docs/Changelog.html)


## Introduction
Expand All @@ -25,7 +25,7 @@ The main SDK class is `BITHockeyManager`. It initializes all modules and provide

## Installation & Setup

- [Installation & Setup](http://www.hockeyapp.net/help/sdk/mac/2.0.1/docs/docs/Guide-Installation-Setup.html)
- [Installation & Setup](http://www.hockeyapp.net/help/sdk/mac/2.0.2/docs/docs/Guide-Installation-Setup.html)
- [Mac Desktop Uploader](http://support.hockeyapp.net/kb/how-tos/how-to-upload-to-hockeyapp-on-a-mac)


Expand All @@ -39,5 +39,5 @@ This documentation provides integrated help in Xcode for all public APIs and a s

3. Copy the content into ~`/Library/Developer/Shared/Documentation/DocSet`

The documentation is also available via the following URL: [http://hockeyapp.net/help/sdk/mac/2.0.1/](http://hockeyapp.net/help/sdk/mac/2.0.1/)
The documentation is also available via the following URL: [http://hockeyapp.net/help/sdk/mac/2.0.2/](http://hockeyapp.net/help/sdk/mac/2.0.2/)

2 changes: 1 addition & 1 deletion Resources/HockeySDK-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<key>CFBundleVersion</key>
<string>${BUILD_NUMBER}</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2012-2013 HockeyApp, Bit Stadium GmbH. All rights reserved.</string>
<string>Copyright © 2012-2014 HockeyApp, Bit Stadium GmbH. All rights reserved.</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
Expand Down
6 changes: 3 additions & 3 deletions Support/buildnumber.xcconfig
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "HockeySDK.xcconfig"

BUILD_NUMBER = 20
VERSION_STRING = 2.0.1
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) BITHOCKEY_VERSION="@\"2.0.1\""
BUILD_NUMBER = 21
VERSION_STRING = 2.0.2
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) BITHOCKEY_VERSION="@\"2.0.2\""
4 changes: 4 additions & 0 deletions docs/Changelog-template.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Version 2.0.2

- [BUGFIX] Fix a possible crash before sending the crash report when the selector could not be found

## Version 2.0.1

- [NEW] Crash reports now provide the selector name e.g. for crashes in `objc_msgSend`
Expand Down
6 changes: 3 additions & 3 deletions docs/Guide-Installation-Setup-template.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Version 2.0.0
## Version 2.0.2

- [Changelog](http://www.hockeyapp.net/help/sdk/mac/2.0.0/docs/docs/Changelog.html)
- [Changelog](http://www.hockeyapp.net/help/sdk/mac/2.0.2/docs/docs/Changelog.html)

## Introduction

Expand Down Expand Up @@ -307,7 +307,7 @@ This documentation provides integrated help in Xcode for all public APIs and a s

3. Copy the content into ~`/Library/Developer/Shared/Documentation/DocSet`

The documentation is also available via the following URL: [http://hockeyapp.net/help/sdk/mac/2.0.0/](http://hockeyapp.net/help/sdk/mac/2.0.0/)
The documentation is also available via the following URL: [http://hockeyapp.net/help/sdk/mac/2.0.2/](http://hockeyapp.net/help/sdk/mac/2.0.2/)

### Checklist if Crashes Do Not Appear in HockeyApp

Expand Down

0 comments on commit 1d18c92

Please sign in to comment.