Skip to content

Commit bdd09fe

Browse files
author
Distiller
committed
v8.2.3
1 parent ed4cef5 commit bdd09fe

File tree

61 files changed

+3329
-4220
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+3329
-4220
lines changed

04A1F1C5-5949-3A7B-9DF0-18689148C9F0.bcsymbolmap renamed to 7CDCF376-2FA0-36E8-B664-4E39F10BB04A.bcsymbolmap

Lines changed: 1502 additions & 1980 deletions
Large diffs are not rendered by default.

6C4C5760-756A-3A4B-B452-775F4D53FFB2.bcsymbolmap renamed to FAD963ED-1B7D-351C-9BF7-3569B5FB25D2.bcsymbolmap

Lines changed: 1528 additions & 1983 deletions
Large diffs are not rendered by default.

Instabug.framework.dSYM/Contents/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<key>CFBundleSignature</key>
1414
<string>????</string>
1515
<key>CFBundleShortVersionString</key>
16-
<string>8.2.2</string>
16+
<string>8.2.3</string>
1717
<key>CFBundleVersion</key>
1818
<string>1</string>
1919
</dict>
Binary file not shown.

Instabug.framework/Headers/IBGBugReporting.h

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,27 @@ NS_SWIFT_NAME(BugReporting)
145145
*/
146146
+ (void)dismiss;
147147

148+
/**
149+
@brief Enables/disables inspect view hierarchy when reporting a bug/feedback.
150+
*/
151+
@property (class, atomic, assign) BOOL shouldCaptureViewHierarchy;
152+
153+
/**
154+
@brief Sets whether the SDK is recording the screen or not.
155+
156+
@discussion Enabling auto screen recording would give you an insight on the scenario a user has performed before encountering a bug. screen recording is attached with each bug being sent.
157+
158+
Auto screen recording is disabled by default.
159+
*/
160+
@property (class, atomic, assign) BOOL autoScreenRecordingEnabled;
161+
162+
/**
163+
@brief Sets maximum auto screen recording video duration.
164+
165+
@discussion sets maximum auto screen recording video duration with max value 30 seconds and min value greater than 1 sec.
166+
*/
167+
@property (class, atomic, assign) CGFloat autoScreenRecordingDuration;
168+
148169
/*
149170
+------------------------------------------------------------------------+
150171
| Deprecated APIs |

Instabug.framework/Headers/IBGLog.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ OBJC_EXTERN void IBGLogError(NSString *format, ...) NS_FORMAT_FUNCTION(1, 2) ;
127127
/**
128128
@brief Used to reroute all your NSLogs to Instabug to be able to automatically include them with reports.
129129
130-
@discussion For details on how to reroute your NSLogs to Instabug, see http://docs.instabug.com/docs/logging
130+
@discussion For details on how to reroute your NSLogs to Instabug, see https://docs.instabug.com/docs/ios-logging
131131
132132
@param format Format string.
133133
@param args Arguments list.

Instabug.framework/Headers/IBGTypes.h

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,11 @@ extern NSString * const kIBGDiscardAlertCancel;
164164
extern NSString * const kIBGVideoGalleryErrorMessageStringName;
165165
extern NSString * const kIBGVideoDurationErrorTitle;
166166
extern NSString * const kIBGVideoDurationErrorMessage;
167-
167+
extern NSString * const kIBGAutoScreenRecordingAlertAllowText;
168+
extern NSString * const kIBGAutoScreenRecordingAlertAlwaysAllowText;
169+
extern NSString * const kIBGAutoScreenRecordingAlertDenyText;
170+
extern NSString * const kIBGAutoScreenRecordingAlertTitleText;
171+
extern NSString * const kIBGAutoScreenRecordingAlertBodyText;
168172

169173
/// -----------
170174
/// @name Enums
@@ -332,7 +336,6 @@ typedef NS_ENUM(NSInteger, IBGLogLevel) {
332336
The user steps option.
333337
*/
334338
typedef NS_ENUM(NSInteger, IBGUserStepsMode) {
335-
IBGUserStepsModeEnable __attribute__((deprecated)),
336339
IBGUserStepsModeEnabledWithNoScreenshots,
337340
IBGUserStepsModeDisable
338341
};

0 commit comments

Comments
 (0)