3.8 release and documentation updates

This commit is contained in:
Andreas Linde 2015-09-16 18:59:59 +02:00
parent 69a4edc2e2
commit 2a894c801c
6 changed files with 36 additions and 19 deletions

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'HockeySDK-Source'
s.version = '3.8-RC.1'
s.version = '3.8'
s.summary = 'Collect live crash reports, get feedback from your users, distribute your betas, and analyze your test coverage with HockeyApp.'
s.description = <<-DESC
@ -12,20 +12,21 @@ Pod::Spec.new do |s|
DESC
s.homepage = 'http://hockeyapp.net/'
s.documentation_url = 'http://hockeyapp.net/help/sdk/ios/3.8-RC.1/'
s.documentation_url = 'http://hockeyapp.net/help/sdk/ios/3.8/'
s.license = 'MIT'
s.author = { 'Andreas Linde' => 'mail@andreaslinde.de', 'Thomas Dohmke' => "thomas@dohmke.de" }
s.source = { :git => 'https://github.com/bitstadium/HockeySDK-iOS.git', :tag => s.version.to_s }
s.platform = :ios, '6.0'
s.platform = :ios, '9.0'
s.ios.deployment_target = '6.0'
s.source_files = 'Classes'
s.requires_arc = true
s.frameworks = 'AssetsLibrary', 'CoreText', 'CoreGraphics', 'MobileCoreServices', 'QuartzCore', 'QuickLook', 'Security', 'SystemConfiguration', 'UIKit'
s.libraries = 'c++'
s.ios.vendored_frameworks = 'Vendor/CrashReporter.framework'
s.xcconfig = {'GCC_PREPROCESSOR_DEFINITIONS' => %{$(inherited) BITHOCKEY_VERSION="@\\"#{s.version}\\"" BITHOCKEY_C_VERSION="\\"#{s.version}\\"" BITHOCKEY_BUILD="@\\"51\\"" BITHOCKEY_C_BUILD="\\"51\\""} }
s.xcconfig = {'GCC_PREPROCESSOR_DEFINITIONS' => %{$(inherited) BITHOCKEY_VERSION="@\\"#{s.version}\\"" BITHOCKEY_C_VERSION="\\"#{s.version}\\"" BITHOCKEY_BUILD="@\\"52\\"" BITHOCKEY_C_BUILD="\\"52\\""} }
s.resource_bundle = { 'HockeySDKResources' => ['Resources/*.png', 'Resources/*.lproj'] }
s.preserve_paths = 'Resources', 'Support'
s.private_header_files = 'Classes/*Private.h'

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'HockeySDK'
s.version = '3.8-RC.1'
s.version = '3.8'
s.summary = 'Collect live crash reports, get feedback from your users, distribute your betas, and analyze your test coverage with HockeyApp.'
s.description = <<-DESC
@ -12,12 +12,13 @@ Pod::Spec.new do |s|
DESC
s.homepage = 'http://hockeyapp.net/'
s.documentation_url = 'http://hockeyapp.net/help/sdk/ios/3.8-RC.1/'
s.documentation_url = 'http://hockeyapp.net/help/sdk/ios/3.8/'
s.license = { :type => 'MIT', :file => 'HockeySDK-iOS/LICENSE' }
s.author = { 'Andreas Linde' => 'mail@andreaslinde.de', 'Thomas Dohmke' => "thomas@dohmke.de" }
s.platform = :ios, '6.0'
s.platform = :ios, '9.0'
s.ios.deployment_target = '6.0'
s.requires_arc = true
s.preserve_path = 'HockeySDK-iOS/README.md'

View File

@ -1,8 +1,8 @@
[![Build Status](https://travis-ci.org/bitstadium/HockeySDK-iOS.svg?branch=develop)](https://travis-ci.org/bitstadium/HockeySDK-iOS)
[![Build Status](https://travis-ci.org/bitstadium/HockeySDK-iOS.svg?branch=master)](https://travis-ci.org/bitstadium/HockeySDK-iOS)
## Version 3.8-RC.1
## Version 3.8
- [Changelog](http://www.hockeyapp.net/help/sdk/ios/3.8-RC.1/docs/docs/Changelog.html)
- [Changelog](http://www.hockeyapp.net/help/sdk/ios/3.8/docs/docs/Changelog.html)
## Introduction
@ -455,7 +455,7 @@ To check if data is send properly to HockeyApp and also see some additional SDK
<a id="documentation"></a>
## 4. Documentation
Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/ios/3.8-RC.1/index.html).
Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/ios/3.8/index.html).
<a id="troubleshooting"></a>
## 5.Troubleshooting
@ -469,7 +469,7 @@ Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/ios/
Make sure none of the following files are copied into your app bundle, check under app target, `Build Phases`, `Copy Bundle Resources` or in the `.app` bundle after building:
- `HockeySDK.framework` (except if you build a dynamic framework version of the SDK yourself!)
- `de.bitstadium.HockeySDK-iOS-3.8-RC.1.docset`
- `de.bitstadium.HockeySDK-iOS-3.8.docset`
3. Feature are not working as expected

View File

@ -1,7 +1,7 @@
#include "HockeySDK.xcconfig"
BUILD_NUMBER = 51
VERSION_STRING = 3.8-RC.1
BUILD_NUMBER = 52
VERSION_STRING = 3.8
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) HOCKEYSDK_CONFIGURATION_$(CONFIGURATION) BITHOCKEY_VERSION="@\""$(VERSION_STRING)"\"" BITHOCKEY_BUILD="@\""$(BUILD_NUMBER)"\"" BITHOCKEY_C_VERSION="\""$(VERSION_STRING)"\"" BITHOCKEY_C_BUILD="\""$(BUILD_NUMBER)"\""
BIT_ARM_ARCHS = armv7 armv7s arm64
BIT_SIM_ARCHS = x86_64 i386

View File

@ -1,3 +1,18 @@
## Version 3.8
- [NEW] Added Bitcode support
- [UPDATE] Requires Xcode 7 or later
- [UPDATE] Requires iOS 9 or later as base SDK, deployment target iOS 6 or later
- [UPDATE] Updated PLCrashReporter build using Xcode 7
- [UPDATE] Use `UIAlertController` when available
- [UPDATE] Added full support for `NSURLSession`
- [UPDATE] Removed statusbar adjustment code (which isn't needed any longer)
- [UPDATE] Removed kBITTextLabel... defines and use NSText.. instead
- [UPDATE] Removed a few `#if __IPHONE_OS_VERSION_MAX_ALLOWED > __IPHONE_6_1` since iOS 7 or later is now required as base SDK
- [BUGFIX] `BITFeedbackManager`: Fixed feedback compose view rotation issue
- [BUGFIX] `BITFeedbackManager`: Fixed `Add Image` button not always presented centered
- [BUGFIX] Additional minor fixes
## Version 3.8-RC.1
- [UPDATE] Added full support for `NSURLSession`
@ -8,7 +23,7 @@
## Version 3.8-Beta.1
- [NEW] Added Bitcode support
- [UPDATE] Requires Xcode 7 or later to build
- [UPDATE] Requires Xcode 7 or later
- [UPDATE] Requires iOS 7 or later as base SDK
- [UPDATE] Silenced deprecation warnings for `NSURLConnection` calls, these will be refactored in a future update
- [UPDATE] Removed statusbar adjustment code (which isn't needed any longer)

View File

@ -1,6 +1,6 @@
## Version 3.8-RC.1
## Version 3.8
- [Changelog](http://www.hockeyapp.net/help/sdk/ios/3.8-RC.1/docs/docs/Changelog.html)
- [Changelog](http://www.hockeyapp.net/help/sdk/ios/3.8/docs/docs/Changelog.html)
## Introduction
@ -439,7 +439,7 @@ To check if data is send properly to HockeyApp and also see some additional SDK
<a id="documentation"></a>
## 4. Documentation
Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/ios/3.8-RC.1/index.html).
Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/ios/3.8/index.html).
<a id="troubleshooting"></a>
## 5.Troubleshooting
@ -453,7 +453,7 @@ Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/ios/
Make sure none of the following files are copied into your app bundle, check under app target, `Build Phases`, `Copy Bundle Resources` or in the `.app` bundle after building:
- `HockeySDK.framework` (except if you build a dynamic framework version of the SDK yourself!)
- `de.bitstadium.HockeySDK-iOS-3.8-RC.1.docset`
- `de.bitstadium.HockeySDK-iOS-3.8.docset`
3. Feature are not working as expected