Skip to content
This repository has been archived by the owner on Feb 19, 2020. It is now read-only.

Commit

Permalink
Update Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
lumaxis committed May 6, 2016
1 parent cf909db commit 7033abc
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

- [Changelog](http://www.hockeyapp.net/help/sdk/ios/4.1.0-beta.2/docs/docs/Changelog.html)

NOTE: With the release of HockeySDK 4.0.0-alpha.1 a bug was introduced which lead to the exclusion of the Application Support folder from iCloud and iTunes backups.
**NOTE:** With the release of HockeySDK 4.0.0-alpha.1 a bug was introduced which lead to the exclusion of the Application Support folder from iCloud and iTunes backups.

If you have been using one of the affected versions (4.0.0-alpha.2, Version 4.0.0-beta.1, 4.0.0, 4.1.0-alpha.1, 4.1.0-alpha.2, or Version 4.1.0-beta.1), please make sure to update to at least version 4.0.1 or 4.1.0-beta.2 of our SDK as soon as you can.

Expand Down
16 changes: 15 additions & 1 deletion docs/Changelog-template.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,23 @@
## Develop
## 4.1.0-beta.2

- [BUGFIX] Fixes an issue where the whole app's Application Support directory was accidentally excluded from backups.
This SDK release explicitly includes the Application Support directory into backups. If you want to opt-out of this fix and keep the Application Directory's backup flag untouched, add the following line above the SDK setup code:

- Objective-C:
```objectivec
[[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"BITExcludeApplicationSupportFromBackup"];
```

- Swift:
```swift
NSUserDefaults.standardUserDefaults().setBool(true, forKey: "BITExcludeApplicationSupportFromBackup")
```

- [NEW] Add more fine-grained log levels
- [NEW] Add ability to connect existing logging framework
- [BUGFIX] Make CrashManager property `serverURL` individual setable
- [BUGFIX] Properly dispatch `dismissViewController` call to main queue
- [BUGFIX] Fixes an issue that prevented preparedItemsForFeedbackManager: delegate method from working

## Version 4.1.0-beta.1

Expand Down

0 comments on commit 7033abc

Please sign in to comment.