Skip to content

Commit 3c3aad2

Browse files
committed
v7.4
1 parent 0798622 commit 3c3aad2

File tree

148 files changed

+21939
-19595
lines changed

Some content is hidden

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

148 files changed

+21939
-19595
lines changed

D32D6AEF-8499-3EC7-8F8C-8600A7DF0C17.bcsymbolmap renamed to 17DC66B5-4728-38DE-8007-D7FD758D85BB.bcsymbolmap

Lines changed: 6669 additions & 8947 deletions
Large diffs are not rendered by default.

6CE1A4A3-7E76-367F-A8AD-F9B211F6E9DB.bcsymbolmap

Lines changed: 4157 additions & 0 deletions
Large diffs are not rendered by default.

B71B5A95-9F72-3408-8EFF-706626B422EB.bcsymbolmap

Lines changed: 4083 additions & 0 deletions
Large diffs are not rendered by default.

88EFFBED-617B-30E7-9FED-FA653F5D5624.bcsymbolmap renamed to CB75FD00-D0A5-3818-9174-B68982EAA4D4.bcsymbolmap

Lines changed: 6671 additions & 8951 deletions
Large diffs are not rendered by default.

Carthage.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,6 @@
2424
"7.3.11": "https://github.com/Instabug/Instabug-iOS/releases/download/7.3.11/Instabug.zip",
2525
"7.3.12": "https://github.com/Instabug/Instabug-iOS/releases/download/7.3.12/Instabug.zip",
2626
"7.3.13": "https://github.com/Instabug/Instabug-iOS/releases/download/7.3.13/Instabug.zip",
27-
"7.3.14": "https://github.com/Instabug/Instabug-iOS/releases/download/7.3.14/Instabug.zip"
27+
"7.3.14": "https://github.com/Instabug/Instabug-iOS/releases/download/7.3.14/Instabug.zip",
28+
"7.4": "https://github.com/Instabug/Instabug-iOS/releases/download/7.4/Instabug.zip"
2829
}

Instabug.framework.dSYM/Contents/Info.plist

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55
<key>CFBundleDevelopmentRegion</key>
66
<string>English</string>
77
<key>CFBundleIdentifier</key>
8-
<string>com.apple.xcode.dsym.com.Instabug</string>
8+
<string>com.apple.xcode.dsym.com.Instabug.Instabug</string>
99
<key>CFBundleInfoDictionaryVersion</key>
1010
<string>6.0</string>
1111
<key>CFBundlePackageType</key>
1212
<string>dSYM</string>
1313
<key>CFBundleSignature</key>
1414
<string>????</string>
1515
<key>CFBundleShortVersionString</key>
16-
<string>7.3.14</string>
16+
<string>7.4</string>
1717
<key>CFBundleVersion</key>
18-
<string>10936</string>
18+
<string>1</string>
1919
</dict>
2020
</plist>
Binary file not shown.

Instabug.framework/Headers/Instabug.h

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
#import <Foundation/Foundation.h>
1212
#import <UIKit/UIKit.h>
13-
#import "IBGTypes.h"
13+
#import <InstabugCore/IBGTypes.h>
1414

1515
/**
1616
This is the API for using Instabug's SDK. For more details about the SDK integration,
@@ -118,6 +118,7 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r
118118
*/
119119
+ (void)addFileAttachmentWithURL:(NSURL *)fileURL;
120120

121+
121122
/**
122123
@brief Add a set of data as a file attachment to be sent with each report.
123124
@@ -129,7 +130,6 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r
129130
*/
130131
+(void)addFileAttachmentWithData:(NSData *)data;
131132

132-
133133
/**
134134
@brief Clear list of files to be attached with each report.
135135
@@ -451,6 +451,15 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r
451451
*/
452452
+ (void)setFloatingButtonEdge:(CGRectEdge)floatingButtonEdge withTopOffset:(double)floatingButtonOffsetFromTop;
453453

454+
/**
455+
@brief Sets the default position at which the Instabug screen recording button will be shown. Different orientations are already handled.
456+
457+
@discussion Default for `position` is `bottomRight`.
458+
459+
@param position `topLeft` to show on the top left of screen , or `bottomRight` to show on the bottom right of scrren.
460+
*/
461+
+ (void)setVideoRecordingFloatingButtonPosition:(IBGPosition)position;
462+
454463
/**
455464
@brief Sets the SDK's locale.
456465
@@ -630,7 +639,7 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r
630639
631640
@discussion When only a single option is enabled, it become the default invocation mode.
632641
If all options are disabled, bug reporting becomes the default invocation mode.
633-
642+
634643
By default, all three options are enabled.
635644
636645
@param bugReportEnabled A boolean to indicate whether bug reports are enabled or disabled.
@@ -667,7 +676,7 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r
667676
@brief Remove all extra fields.
668677
669678
@discussion Use this method to remove all added extra fields.
670-
*/
679+
*/
671680
+ (void)removeExtraReportFields;
672681

673682
/**
@@ -865,7 +874,7 @@ OBJC_EXTERN void IBGLogError(NSString *format, ...) NS_FORMAT_FUNCTION(1, 2);
865874
/**
866875
@brief Used to reroute all your NSLogs to Instabug to be able to automatically include them with reports.
867876
868-
@discussion For details on how to reroute your NSLogs to Instabug, see https://docs.instabug.com/docs/ios-logging
877+
@discussion For details on how to reroute your NSLogs to Instabug, see http://docs.instabug.com/docs/logging
869878
870879
@param format Format string.
871880
@param args Arguments list.
@@ -1095,7 +1104,7 @@ OBJC_EXTERN void IBGNSLogWithLevel(NSString *format, va_list args, IBGLogLevel l
10951104
10961105
To manually display any available surveys, call `+ [Instabug showSurveyIfAvailable]`.
10971106
1098-
Defaults to NO.
1107+
Defaults to YES.
10991108
11001109
@param autoShowingSurveysEnabled A boolean to indicate whether the surveys auto showing are enabled or not.
11011110
*/
@@ -1148,10 +1157,14 @@ OBJC_EXTERN void IBGNSLogWithLevel(NSString *format, va_list args, IBGLogLevel l
11481157

11491158
/**
11501159
@brief Sets the verbosity level of logs used to debug the Instabug SDK itself.
1160+
1161+
@discussion This API sets the verbosity level of logs used to debug The SDK. The defualt value in debug mode is IBGSDKDebugLogsLevelVerbose and in production is IBGSDKDebugLogsLevelError.
11511162
11521163
@param level Logs verbosity level.
11531164
*/
11541165
+ (void)setSDKDebugLogsLevel:(IBGSDKDebugLogsLevel)level;
11551166

11561167
@end
1168+
1169+
11571170
NS_ASSUME_NONNULL_END

Instabug.framework/Info.plist

41 Bytes
Binary file not shown.

Instabug.framework/Instabug

-13.4 MB
Binary file not shown.

0 commit comments

Comments
 (0)