Skip to content

Commit 1beaffb

Browse files
committed
v7.10
1 parent 217c140 commit 1beaffb

File tree

63 files changed

+1689
-1414
lines changed

Some content is hidden

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

63 files changed

+1689
-1414
lines changed

20CAEDDE-5E1B-3164-8AB5-2BFE2DC6826F.bcsymbolmap renamed to 1C2F06E9-2AF1-328A-985C-90CB7A77BA22.bcsymbolmap

Lines changed: 449 additions & 318 deletions
Large diffs are not rendered by default.

Carthage.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,6 @@
3939
"7.8.4": "https://github.com/Instabug/Instabug-iOS/releases/download/7.8.4/Instabug.zip",
4040
"7.9": "https://github.com/Instabug/Instabug-iOS/releases/download/7.9/Instabug.zip",
4141
"7.9.1": "https://github.com/Instabug/Instabug-iOS/releases/download/7.9.1/Instabug.zip",
42-
"7.9.2": "https://github.com/Instabug/Instabug-iOS/releases/download/7.9.2/Instabug.zip"
42+
"7.9.2": "https://github.com/Instabug/Instabug-iOS/releases/download/7.9.2/Instabug.zip",
43+
"7.10": "https://github.com/Instabug/Instabug-iOS/releases/download/7.10/Instabug.zip"
4344
}

3913D64F-2591-3C70-A3A4-3C0E31F38E57.bcsymbolmap renamed to DEDC6416-E83E-3F6C-8E00-D9AABBAAD082.bcsymbolmap

Lines changed: 307 additions & 286 deletions
Large diffs are not rendered by default.

65AC8D42-DDD6-3FC1-9C07-80E304832615.bcsymbolmap renamed to F21D0BC8-247F-3FA2-B80A-BD199BAB31AC.bcsymbolmap

Lines changed: 311 additions & 290 deletions
Large diffs are not rendered by default.

A2D18DF3-BA89-3B90-8016-5246F9DB6956.bcsymbolmap renamed to F26C9094-02FB-3ED6-94BD-7B0C519C28D5.bcsymbolmap

Lines changed: 449 additions & 319 deletions
Large diffs are not rendered by default.

Instabug.framework.dSYM/Contents/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
<key>CFBundleSignature</key>
1414
<string>????</string>
1515
<key>CFBundleShortVersionString</key>
16-
<string>7.9.2</string>
16+
<string>7.10</string>
1717
<key>CFBundleVersion</key>
18-
<string>12910</string>
18+
<string>13140</string>
1919
</dict>
2020
</plist>
Binary file not shown.

Instabug.framework/Headers/Instabug.h

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Copyright: (c) 2013-2018 by Instabug, Inc., all rights reserved.
77
8-
Version: 7.9.2
8+
Version: 7.10
99
*/
1010

1111
#import <Foundation/Foundation.h>
@@ -697,7 +697,7 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r
697697
@param names Array of names of icons to be shown along with titles. Use the same names you would use
698698
with `+ [UIImage imageNamed:]`.
699699
*/
700-
+ (void)setReportCategoriesWithTitles:(NSArray<NSString *> *)titles iconNames:(nullable NSArray<NSString *> *)names;
700+
+ (void)setReportCategoriesWithTitles:(NSArray<NSString *> *)titles iconNames:(nullable NSArray<NSString *> *)names DEPRECATED_MSG_ATTRIBUTE("Starting from v7.9, you can add categories from dashboard.");
701701

702702
/**
703703
@brief Sets an array of report categories to be shown for users to select from before reporting a bug or sending
@@ -708,14 +708,26 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r
708708
@param title extra field key.
709709
@param required determine whether this field is required or not.
710710
*/
711-
+ (void)addExtraReportFieldWithTitle:(NSString *)title required:(BOOL)required;
711+
+ (void)addExtraReportFieldWithTitle:(NSString *)title required:(BOOL)required DEPRECATED_MSG_ATTRIBUTE("Starting from v7.9, use setExtendedBugReportMode: instead");;
712712

713713
/**
714714
@brief Remove all extra fields.
715715
716716
@discussion Use this method to remove all added extra fields.
717717
*/
718-
+ (void)removeExtraReportFields;
718+
+ (void)removeExtraReportFields DEPRECATED_MSG_ATTRIBUTE("Starting from v7.9, use setExtendedBugReportMode: instead");;
719+
720+
/**
721+
@brief Sets whether the extended bug report mode should be disabled, enabled with required fields or enabled with optional fields.
722+
723+
@discussion This feature is disabled by default. When enabled, it adds more fields for your reporters to fill in. You can set whether the extra fields are required or optional.
724+
1. Expected Results.
725+
2. Actual Results.
726+
3. Steps to Reproduce.
727+
728+
@param extendedBugReportMode An enum to disable the extended bug report mode, enable it with required or with optional fields.
729+
*/
730+
+ (void)setExtendedBugReportMode:(IBGExtendedBugReportMode)extendedBugReportMode;
719731

720732
/**
721733
@brief Set custom user attributes that are going to be sent with each feedback, bug or crash.

Instabug.framework/Info.plist

-1 Bytes
Binary file not shown.

Instabug.framework/Instabug

476 KB
Binary file not shown.

0 commit comments

Comments
 (0)