Andreas Linde
5a88cab36e
Fix referencing wrong property name
2014-02-19 23:38:54 +01:00
Andreas Linde
6a69888b49
Merge branch 'refs/heads/develop' into feature/enableAppNotTerminatingCleanlyDetection
2014-02-18 17:15:07 +01:00
Andreas Linde
8d0f59ed31
Merge branch 'release/3.5.4' into develop
2014-02-18 16:17:49 +01:00
Andreas Linde
42f04ca3c9
Merge branch 'release/3.5.4'
2014-02-18 16:17:43 +01:00
Andreas Linde
ac0790646b
3.5.4 release and documentation updates
2014-02-18 16:15:12 +01:00
Andreas Linde
3b9f38fd16
Fix a crash if no selector could be found
2014-02-18 16:03:11 +01:00
moritz haarmann
47594faf5f
+ Improved Persistence handling.
2014-02-18 11:56:07 +01:00
moritz haarmann
2146788f7b
Added Delete/Edit ActionSheet
...
Fixed a Bug where the Feedback cannot be sent if no text is entered.
2014-02-18 10:56:40 +01:00
Moritz Haarmann
6b09e75cd6
+ Original Filename of picked image is used as attachment name.
2014-02-17 23:49:49 +01:00
Moritz Haarmann
da2c8268d9
+ File persistence for Attachments
2014-02-17 23:35:04 +01:00
Moritz Haarmann
02dc42390a
+ Fixes File upload.
2014-02-17 22:10:39 +01:00
moritz haarmann
38af43bdb5
+ Changing machines..
2014-02-17 21:04:03 +01:00
Andreas Linde
42dc95a34d
Merge branch 'refs/heads/develop' into feature/LowMemoryKills
2014-02-13 21:09:36 +01:00
Andreas Linde
d560a640ad
Fix leak in BITKeychainUtils
2014-02-13 21:09:11 +01:00
moritz haarmann
4b359e7771
+ Fixes a warning
2014-02-13 11:32:54 +01:00
moritz haarmann
36371dcd30
+ Finalized preliminary feedback support. Now comes the polish.
2014-02-13 11:04:32 +01:00
Andreas Linde
94ce869993
Merge branch 'refs/heads/develop' into feature/LowMemoryKills
2014-02-12 23:48:07 +01:00
moritz haarmann
9b57875a47
Added Photo Picker functionality to Feedback Composer ( #3 )
2014-02-12 18:15:24 +01:00
Andreas Linde
b0e05c18bb
Merge branch 'release/3.5.3' into develop
2014-02-12 15:09:30 +01:00
Andreas Linde
15d57cce01
Merge branch 'release/3.5.3'
2014-02-12 15:09:18 +01:00
Andreas Linde
4c9a268a0c
3.5.3 release and documentation updates
2014-02-12 15:09:15 +01:00
Andreas Linde
ab241aaa1f
Show the selector name found in the current argument registers in crash reports, helpful e.g. for crashes in objc_msgSend
...
This is a safe implementation with only hard wiring the necessary bits for where objc_msgSend stores the receiver objects based on the CPU architecture. From: http://sealiesoftware.com/blog/archive/2008/09/22/objc_explain_So_you_crashed_in_objc_msgSend.html
In the mid/long term, PLCrashReporter will include this directly.
2014-02-12 12:26:02 +01:00
Andreas Linde
f2b7f3d575
Update Auhenticating Users on iOS
documentation with automatic authentication hint
2014-02-12 02:11:02 +01:00
Andreas Linde
0f44f6f4ad
More documentation improvements
2014-02-11 18:20:53 +01:00
Andreas Linde
5b782b90be
Documentation fixes
2014-02-11 16:40:21 +01:00
Andreas Linde
53ae4c2dff
Disable on device symbolication by default and add a property to enable it
2014-02-11 16:37:06 +01:00
Andreas Linde
6d6aa54bea
Add new setter for global userID, userName, and userEmail properties
...
The values are used by the `BITCrashManager` to attach to a crash report and`BITFeedbackManager for assigning the user to a discussion thread.
The value can be set at any time and will be stored in the keychain on the current device only! To delete the value from the keychain set the value to `nil`.
These properties are optional and alternatives to the delegates. If you want to define specific values for each component, use the delegate instead which do overwrite the values set by these properties.
Also fixed a typo in the delegates documentation.
2014-02-11 16:22:31 +01:00
Andreas Linde
88bf3fae62
Move creation of settings directory into helper function
2014-02-11 15:40:11 +01:00
Thomas Dohmke
506c5c2598
Remove .xccheckout file from repo.
2014-02-10 20:37:29 +01:00
Thomas Dohmke
fad5e586c5
Make sure that the chunk name is null-terminated.
2014-02-10 20:35:30 +01:00
Andreas Linde
9123392d0f
Remove the word 'anywhere' from the header doc of BITFeedbackManager
2014-02-10 17:57:12 +01:00
Andreas Linde
a9fda179da
Added more logging for BITAuthenticator
2014-02-10 16:25:40 +01:00
Andreas Linde
ddf16f7062
Add a new line at the end of the application specific information
string to be considered by the servers grouping
2014-02-10 13:30:46 +01:00
Andreas Linde
4d414b78f4
Make sure the flag that a memory warning was received is persisted right away
...
NSUserDefaults may not synchronize changes immediately, so if the kill happens before it persists changes, the information is lost.
2014-02-10 13:10:10 +01:00
Andreas Linde
cc480299eb
Multiple improvements for heuristic based kill detection handling
...
- Marked the feature as `EXPERIMENTAL`
- renamed property to `enableAppNotTerminatingCleanlyDetection`
- Added details about the heuristic algorithm
- Added optional delegate to let the developer influence if a report should be considered as a crash or not
- Adjusted the description string in the generated report to make it more clear what actually happened.
2014-02-10 01:52:15 +01:00
Andreas Linde
0cfa00924c
Add enableDectionAppKillWhileInForeground
option to BITCrashManager
...
This option implements basic heuristics to detect if the app got killed by the iOS watchdog while running in foreground, which can only happen if:
- The app tried to allocate too much memory
- Main thread doesn't respond for some time
It is not possible to detect all cases where such kills can occur.
2014-02-10 01:06:59 +01:00
Andreas Linde
a0153e4205
Improve BITFeedbackComposeViewControllerDelegate handling
...
Goal: make BITFeedbackComposeViewControllerDelegate usable for the view controller used by BITFeedbackListViewController
- The delegate is automatically set to the global BITHockeyManager delegate
- When invoking your BITFeedbackComposeViewController, it is possible to overwrite the delegate
2014-02-06 13:43:06 +01:00
Andreas Linde
e74e9ac5ed
Merge branch 'release/3.5.2' into develop
2014-01-28 16:11:59 +01:00
Andreas Linde
328be7d522
Merge branch 'release/3.5.2'
2014-01-28 16:11:41 +01:00
Andreas Linde
2cf60d6ccc
3.5.2 release and documentation updates
2014-01-28 16:08:18 +01:00
Andreas Linde
f3ea32ea7f
Fixed usage time being always send as 0 instead of sending the actual usage time
2014-01-28 01:33:22 +01:00
Andreas Linde
80e6cd6d16
Fixed "install" button in the mandatory update alert not working and forcing users to use the "show" button and then install from the update view instead
2014-01-27 00:01:13 +01:00
Andreas Linde
7086153d46
Make sure a log message appears in the console if the SDK is not setup on the main thread
2014-01-24 14:11:41 +01:00
Andreas Linde
66c84630ea
Fix possible unused function warnings
2014-01-19 21:29:02 +01:00
Benny Reimold
018e873040
Added BITHOCKEY_BUILD to podspec
2014-01-16 23:05:30 +01:00
Thomas Dohmke
03c503df47
Merge branch 'develop' of github.com:bitstadium/HockeySDK-iOS into develop
2014-01-16 15:50:02 +01:00
Thomas Dohmke
af0604bef3
Fix two warnings when -Wshorten-64-to-32 is set.
2014-01-16 15:47:13 +01:00
Andreas Linde
f32304516b
Merge pull request #87 from elektrojunge/master
...
Updated podspec for issue 86.
2014-01-16 04:22:44 -08:00
Andreas Linde
b0c6a14c9e
Fix another typo in link to local docsets folder in documentation
2014-01-16 12:31:56 +01:00
Andreas Linde
2235258ade
Fix typo in link to local docsets folder in documentation
2014-01-16 12:28:44 +01:00