956 Commits

Author SHA1 Message Date
Andreas Linde
0bb78d7201 Update documentation
- Remove Advanced setup guide
- Added `libc++` dependency
- Updated modulemap files to automatically link all required libraries and frameworks
- Updated setup doc to use module import style
- Update CrashOnly build modulemap file
- Code style fixes
2015-06-12 14:41:58 +02:00
Gwynne Raskind
7ccfe6aac7 Port C++ exception handling support over from PLCrashReporter's non-merged implementation. Includes changes to auto-link C++ with client apps where possible. Correctly handles cases where client apps use libstdc++. 2015-06-10 11:32:03 -05:00
Andreas Linde
19968651e9 Another fix for screenshot feature in feedback
Older devices (iPhone 4S and iPad 3 running iOS 8) would still show a previously captured screenshot instead of the current one, because it takes too long to get the image from the Asset Library than the assumed 0.5s. Increasing to 1.5s fixes the issue also for these.
2015-06-09 16:44:15 +02:00
Andreas Linde
6962f21473 Disable tracking the installation on a device
The new property will cause the app to generate a new `installString` value every time the app is cold started.

The property is only considered in App Store Environment, since it would otherwise affect the `BITUpdateManager` and `BITAuthenticator` functionalities!

Default is NO.
2015-06-08 14:03:54 +02:00
Andreas Linde
94537a4132 Support for CFBundleName
Use the (localized) value of CFBundleName for the app name in dialogs (e.g. crash alert) if CFBundleDisplayName is not set
2015-06-08 13:10:46 +02:00
Andreas Linde
0a34c5d2a4 Fix a documentation warning 2015-06-02 11:24:04 +02:00
Andreas Linde
7f6ef93b0f Fixed offline issue with unsend crash reports
This fixes an issue of the following scenario:

- Autosending crash reports is disabled, so alerts appear
- The app crashes
- The app restarts, shows the UI and sending is approved
- The device is offline can't send the report
- The app crashes again
- The app restarts, shows the UI and sending is approved
- The device is offline can't send the report
- The app goes background or exits
- The app starts again and shows the UI again and again and again, even though it is already approved.

Only the device coming back online fixed this issue so far.

This commit fixes this issue for all scenarios.
2015-05-20 14:57:25 +02:00
Andreas Linde
bea1b3603a Add delegate to FeedbackManagerDelegate
Added `allowAutomaticFetchingForNewFeedbackForManager:` which allows the developer to influence if the SDK should fetch for new messages on app startup and when the app is coming into foreground.

By default the SDK always checks in those cases if there are already messages existing.
2015-05-19 14:08:49 +02:00
Andreas Linde
a27340d6bf Fix header includes 2015-05-19 10:56:19 +02:00
Andreas Linde
4ac8779a61 Fix BITStoreUpdateManager not getting delegate 2015-05-12 21:59:00 +02:00
Andreas Linde
167358f25c Add option to hide "Add Image" attachment button 2015-05-12 12:25:03 +02:00
Andreas Linde
469ef20021 Draw attachments when hardware keyboard is used 2015-05-12 12:24:17 +02:00
Eloy Durán
63228fdc25 Add process ID to BITCrashDetails. 2015-05-07 17:29:13 +02:00
Andreas Linde
4ef37fa9f7 Add missing import statement 2015-04-24 16:23:05 +02:00
Andreas Linde
6ea387fcda Improve building with only a few features
Building e.g. only with crash reporting activated caused compiler warnings to appear even with the binary distribution when e.g. forward declaration checks are enabled.

This commit adds additional checks in all relevant header and code files to make sure the header files only consider the features that have been enabled
2015-04-21 17:48:52 +02:00
Andreas Linde
69d61e5189 Fix issue with AppNotTerminatingCleanlyDetection
The code wronly assumed that when crashManager startManager is invoked, it will always be in the foreground, which causes false reports in some scenarios. The fix checks if the app is really active when this code is running.
2015-03-31 13:14:46 +02:00
Andreas Linde
db62cc99e0 Access and save keychain data with always access
This helps if an app is running in the background and the device is still locked
2015-03-26 18:08:55 +01:00
Andreas Linde
e74a495410 Minor changes to previous commit
- Change property name to be more explicit
- Reset proptery to nil, so we can are making sure the logic always works safely and is only triggered before the photo picker is invoked
2015-03-26 17:07:26 +01:00
Jens Daemgen
6c27be621d Add workaround for UIImagePickerController-bug which shows the statusBar
* the statusBar shows up when the UIImagePickerController opens
* the status bar does not disappear again when the UIImagePickerController is dismissed
2015-03-26 17:03:49 +01:00
anlinde
3568b4cc1a Merge pull request #135 from yberdnikov/feature/FeedbackComposerPreparedItems
Setting feedback composer initial items via BITFedbackManager
2015-03-26 16:48:22 +01:00
Andreas Linde
6eb17a281d Merge branch 'start_update_delegate_message' ...
... of https://github.com/jgarth/HockeySDK-iOS into jgarth-start_update_delegate_message
2015-03-26 16:06:46 +01:00
Andreas Linde
376b5b88d2 Merge pull request #141 from tewha/typos-2
Typos 2
2015-03-19 14:54:56 +01:00
Cédric Luthi
6b79a2fd05 Add deprecated enum for renamed BITFeedbackListViewCellPresentatationStyle 2015-03-19 09:51:58 +01:00
Cédric Luthi
6763399f00 Add deprecated property for renamed timeintervalCrashInLastSessionOccurred 2015-03-19 09:51:25 +01:00
Steven Fisher
05d9ee22ee Fixed Payment Button. (Err, right?) 2015-03-18 16:12:52 -07:00
Steven Fisher
dda5cc79e0 Fixed spelling of explicitly. 2015-03-18 16:12:34 -07:00
Steven Fisher
3c6f7cd68f Fixed spelling of associated. 2015-03-18 16:12:23 -07:00
Steven Fisher
52ab9ddb47 Fixed spelling of instance. 2015-03-18 16:12:09 -07:00
Steven Fisher
630b9ebb6b Every time is two words.
Not important, but removes a false positive from spellchecks.
2015-03-18 16:11:51 -07:00
Steven Fisher
da790ac865 Fixed another couple occurred. 2015-03-18 16:11:29 -07:00
Steven Fisher
112e75b23d Fixed spelling of thumbnail in a few spots. 2015-03-18 16:10:49 -07:00
Steven Fisher
504019a0b6 Fix spelling of observer. 2015-03-18 16:09:40 -07:00
Andreas Linde
25a03a553a Fix compile error introduced with previous commit 2015-03-18 19:04:30 +01:00
Andreas Linde
7eef1c4075 Fix a lot more typos and a property name typo
See https://github.com/bitstadium/HockeySDK-iOS/issues/139

Important for users, is that the public property `timeintervalCrashInLastSessionOccured` name is fixed. If you are using this, you need to adjust your code.
2015-03-18 17:07:39 +01:00
Steven Fisher
9ebcaffa5d Two other spelling fixes in BITCrashManager.h. 2015-03-16 12:15:04 -07:00
Steven Fisher
4614d04d5f Fix spelling of occurred in BITCrashManager. 2015-03-16 12:14:39 -07:00
Steven Fisher
136563c4e3 Fix spelling: instrumentation (I assume?) 2015-03-16 11:57:28 -07:00
Steven Fisher
08397c531a Fix spelling: observer. 2015-03-16 11:57:15 -07:00
Steven Fisher
06ff39192c Fix typo: module. 2015-03-16 11:57:04 -07:00
Steven Fisher
0896316c24 Fix typo: comparisonResult. 2015-03-16 11:56:50 -07:00
Steven Fisher
fc59abd1cb Fix spelling: accessibility. 2015-03-16 11:56:27 -07:00
Steven Fisher
eddcc9a01d Fix typo: userName. 2015-03-16 11:55:48 -07:00
Steven Fisher
239381f67d Fix typo: is. 2015-03-16 11:55:26 -07:00
Steven Fisher
fa9bef14bf Fix spelling: overridden. 2015-03-16 11:55:06 -07:00
Steven Fisher
80d0df1697 Split "view controller." 2015-03-16 11:54:52 -07:00
Steven Fisher
8482109670 Fix typo: whether. 2015-03-16 11:54:40 -07:00
Steven Fisher
f449cd8db6 Fix typo: name. 2015-03-16 11:54:25 -07:00
Steven Fisher
9699ed9575 Fix typo: current. 2015-03-16 11:54:05 -07:00
Steven Fisher
b9a9dd5d71 Fix typo: following. 2015-03-16 11:53:55 -07:00
Steven Fisher
b4b356c5f8 Fix spelling of anonymous. 2015-03-16 11:53:38 -07:00