mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-05 05:51:42 +00:00
Update to version 3.5.0 RC 1
This commit is contained in:
parent
7cbcadb861
commit
d7f0a0a2f2
@ -1,6 +1,6 @@
|
||||
Pod::Spec.new do |s|
|
||||
s.name = 'HockeySDK'
|
||||
s.version = '3.5.0b3'
|
||||
s.version = '3.5.0rc1'
|
||||
s.license = 'MIT'
|
||||
s.platform = :ios, '5.0'
|
||||
s.summary = 'Distribute beta apps and collect crash reports with HockeyApp.'
|
||||
|
||||
27
README.md
27
README.md
@ -1,6 +1,6 @@
|
||||
## Version 3.5.0b3
|
||||
## Version 3.5.0 RC 1
|
||||
|
||||
- [Changelog](http://www.hockeyapp.net/help/sdk/ios/3.5.0b3/docs/docs/Changelog.html)
|
||||
- [Changelog](http://www.hockeyapp.net/help/sdk/ios/3.5.0rc1/docs/docs/Changelog.html)
|
||||
|
||||
|
||||
## Introduction
|
||||
@ -9,11 +9,16 @@ HockeySDK-iOS implements support for using HockeyApp in your iOS applications.
|
||||
|
||||
The following features are currently supported:
|
||||
|
||||
1. **Update apps:** The app will check with HockeyApp if a new version is available. If yes, it will show an alert view to the user and let him see the release notes, the version history and start the installation process right away.
|
||||
1. **Collect crash reports:** If your app crashes, a crash log with the same format as from the Apple Crash Reporter is written to the device's storage. If the user starts the app again, he is asked to submit the crash report to HockeyApp. This works for both beta and live apps, i.e. those submitted to the App Store!
|
||||
|
||||
2. **Collect crash reports:** If you app crashes, a crash log with the same format as from the Apple Crash Reporter is written to the device's storage. If the user starts the app again, he is asked to submit the crash report to HockeyApp. This works for both beta and live apps, i.e. those submitted to the App Store!
|
||||
2. **Update Ad-Hoc / Enterprise apps:** The app will check with HockeyApp if a new version for your Ad-Hoc or Enterprise build is available. If yes, it will show an alert view to the user and let him see the release notes, the version history and start the installation process right away.
|
||||
|
||||
3. **Update notification for app store:** The app will check if a new version for your app store release is available. If yes, it will show an alert view to the user and let him open your app in the App Store app. (Disabled by default!)
|
||||
|
||||
4. **Feedback:** Collect feedback from your users from within your app and communicate directly with them using the HockeyApp backend.
|
||||
|
||||
5. **Authenticate:** Identify and authenticate users of Ad-Hoc or Enterprise builds
|
||||
|
||||
3. **Feedback:** Collect feedback from your users from within your app and communicate directly with them using the HockeyApp backend.
|
||||
|
||||
The main SDK class is `BITHockeyManager`. It initializes all modules and provides access to them, so they can be further adjusted if required. Additionally all modules provide their own protocols.
|
||||
|
||||
@ -26,16 +31,16 @@ The main SDK class is `BITHockeyManager`. It initializes all modules and provide
|
||||
|
||||
## Installation & Setup
|
||||
|
||||
- [Installation & Setup](http://www.hockeyapp.net/help/sdk/ios/3.5.0b3/docs/docs/Guide-Installation-Setup.html) (Recommended)
|
||||
- [Installation & Setup Advanced](http://www.hockeyapp.net/help/sdk/ios/3.5.0b3/docs/docs/Guide-Installation-Setup-Advanced.html) (Using Git submodule and Xcode sub-project)
|
||||
- [Authenticating Users on iOS](http://support.hockeyapp.net/kb/client-integration/authenticating-users-on-ios)
|
||||
- [Migration from previous SDK Versions](http://www.hockeyapp.net/help/sdk/ios/3.5.0b3/docs/docs/Guide-Migration-Kits.html)
|
||||
- [Installation & Setup](http://www.hockeyapp.net/help/sdk/ios/3.5.0rc1/docs/docs/Guide-Installation-Setup.html) (Recommended)
|
||||
- [Installation & Setup Advanced](http://www.hockeyapp.net/help/sdk/ios/3.5.0rc1/docs/docs/Guide-Installation-Setup-Advanced.html) (Using Git submodule and Xcode sub-project)
|
||||
- [Authenticating Users on iOS](http://www.hockeyapp.net/help/sdk/ios/3.5.0rc1/docs/docs/HowTo-Authenticating-Users-on-iOS.html)
|
||||
- [Migration from previous SDK Versions](http://www.hockeyapp.net/help/sdk/ios/3.5.0rc1/docs/docs/Guide-Migration-Kits.html)
|
||||
- [Mac Desktop Uploader](http://support.hockeyapp.net/kb/how-tos/how-to-upload-to-hockeyapp-on-a-mac)
|
||||
|
||||
|
||||
## Xcode Documentation
|
||||
|
||||
This documentation provides integrated help in Xcode for all public APIs and a set of additional tutorials and HowTos.
|
||||
This documentation provides integrated help in Xcode for all public APIs and a set of additional tutorials and HowTo articles.
|
||||
|
||||
1. Download the [HockeySDK-iOS documentation](http://hockeyapp.net/releases/).
|
||||
|
||||
@ -43,4 +48,4 @@ 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/ios/3.5.0b3/](http://hockeyapp.net/help/sdk/ios/3.5.0b3/)
|
||||
The documentation is also available via the following URL: [http://hockeyapp.net/help/sdk/ios/3.5.0rc1/](http://hockeyapp.net/help/sdk/ios/3.5.0rc1/)
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
#include "HockeySDK.xcconfig"
|
||||
|
||||
BUILD_NUMBER = 19
|
||||
VERSION_STRING = 3.5.0b3
|
||||
BUILD_NUMBER = 20
|
||||
VERSION_STRING = 3.5.0RC1
|
||||
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) BITHOCKEY_VERSION="@\""$(VERSION_STRING)"\""
|
||||
BIT_ARM_ARCHS = armv7 armv7s arm64
|
||||
BIT_SIM_ARCHS = x86_64 i386
|
||||
|
||||
@ -1,3 +1,37 @@
|
||||
## Version 3.5.0 RC 1
|
||||
|
||||
- General
|
||||
|
||||
- [UPDATE] Documentation improvements nearly everywhere
|
||||
|
||||
- Crash Reporting
|
||||
|
||||
- [UPDATE] Integrated PLCrashReporter 1.2 beta 2
|
||||
- [UPDATE] 64 bit crash reports now contain the correct architecture string
|
||||
- [UPDATE] Automatically add the users UDID or email to crash reports in Ad-Hoc/Enterprise builds if they are provided by BITAuthenticator
|
||||
- [BUGFIX] Fix userName, userEmail and userID not being added to crash reports
|
||||
|
||||
- App Store Updates
|
||||
|
||||
- [UPDATE] Changed default update check interval to weekly
|
||||
<br /><br/>
|
||||
|
||||
- Ad-Hoc/Enterprise Authentication
|
||||
|
||||
- [NEW] Redesigned API for easier usage and more flexibility (please check the documentation!)
|
||||
- [NEW] Added option to customize the authentication flow
|
||||
- [NEW] Added option to provide a custom parentViewController for presenting the UI
|
||||
- [NEW] Added possibility to use an existing URL scheme
|
||||
- [BUGFIX] Fixed authentication UI appearing after updating apps without changing the authentication settings
|
||||
<br /><br/>
|
||||
|
||||
- Ad-Hoc/Enterprise Updates
|
||||
|
||||
- [UPDATE] Don't add icon gloss to icons when running on iOS 7
|
||||
- [BUGFIX] Fixed a few iOS 7 related UI problems in the update view
|
||||
<br /><br/>
|
||||
|
||||
|
||||
## Version 3.5.0 Beta 3
|
||||
|
||||
- Feedback
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
## Version 3.5.0b3
|
||||
## Version 3.5.0 RC 1
|
||||
|
||||
- [Changelog](http://www.hockeyapp.net/help/sdk/ios/3.5.0b3/docs/docs/Changelog.html)
|
||||
- [Changelog](http://www.hockeyapp.net/help/sdk/ios/3.5.0rc1/docs/docs/Changelog.html)
|
||||
|
||||
## Introduction
|
||||
|
||||
@ -147,4 +147,4 @@ 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/ios/3.5.0b3/](http://hockeyapp.net/help/sdk/ios/3.5.0b3/)
|
||||
The documentation is also available via the following URL: [http://hockeyapp.net/help/sdk/ios/3.5.0rc1/](http://hockeyapp.net/help/sdk/ios/3.5.0rc1/)
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
## Version 3.5.0b3
|
||||
## Version 3.5.0 RC 1
|
||||
|
||||
- [Changelog](http://www.hockeyapp.net/help/sdk/ios/3.5.0b3/docs/docs/Changelog.html)
|
||||
- [Changelog](http://www.hockeyapp.net/help/sdk/ios/3.5.0rc1/docs/docs/Changelog.html)
|
||||
|
||||
## Introduction
|
||||
|
||||
@ -114,4 +114,4 @@ This documentation provides integrated help in Xcode for all public APIs and a s
|
||||
|
||||
1. Copy `de.bitstadium.HockeySDK-iOS-3.5.0.docset` into ~`/Library/Developer/Shared/Documentation/DocSet`
|
||||
|
||||
The documentation is also available via the following URL: [http://hockeyapp.net/help/sdk/ios/3.5.0b3/](http://hockeyapp.net/help/sdk/ios/3.5.0b3/)
|
||||
The documentation is also available via the following URL: [http://hockeyapp.net/help/sdk/ios/3.5.0rc1/](http://hockeyapp.net/help/sdk/ios/3.5.0rc1/)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user