Skip to content

Commit cea532c

Browse files
committed
⬆️ Upgrade native iOS SDK version to v7.13
1 parent 74331c9 commit cea532c

Some content is hidden

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

50 files changed

+176
-136
lines changed

ios/Instabug.framework/Headers/Instabug.h

Lines changed: 7 additions & 7 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.12.7
8+
Version: 7.13
99
*/
1010

1111
#import <Foundation/Foundation.h>
@@ -386,15 +386,15 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r
386386

387387
/**
388388
@brief Enables/disables screenshot view when reporting a bug/improvement.
389-
389+
390390
@deprecated Starting from v6.0, use `setWillSkipScreenshotAnnotation:` instead.
391-
391+
392392
@discussion By default, screenshot view is shown when reporting a bug, but not when sending feedback.
393-
393+
394394
@param willShowScreenshotView A boolean to set whether screenshot view is shown or not. Passing YES will show
395395
screenshot view for both feedback and bug reporting, while passing NO will disable it for both.
396396
*/
397-
+ (void)setWillShowScreenshotView:(BOOL)willShowScreenshotView DEPRECATED_MSG_ATTRIBUTE("Starting from v6.0, use setWillSkipScreenshotAnnotation: instead.");
397+
+ (void)setWillShowScreenshotView:(BOOL)willShowScreenshotView DEPRECATED_MSG_ATTRIBUTE("This API has no effect now and will be removed soon");
398398

399399
/**
400400
@brief Enables/disables screenshot view when reporting a bug/improvement.
@@ -404,7 +404,7 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r
404404
@param willSkipScreenShot A boolean to set whether screenshot view is shown or not. Passing YES will show
405405
screenshot view for both feedback and bug reporting, while passing NO will disable it for both.
406406
*/
407-
+ (void)setWillSkipScreenshotAnnotation:(BOOL)willSkipScreenShot;
407+
+ (void)setWillSkipScreenshotAnnotation:(BOOL)willSkipScreenShot DEPRECATED_MSG_ATTRIBUTE("This API has no effect now and will be removed soon");
408408

409409
/**
410410
@brief Returns the number of unread messages the user currently has.
@@ -477,7 +477,7 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r
477477
478478
@param isCommentFieldRequired A boolean to indicate whether comment field is required or not.
479479
*/
480-
+ (void)setCommentFieldRequired:(BOOL)isCommentFieldRequired;
480+
+ (void)setCommentFieldRequired:(BOOL)isCommentFieldRequired DEPRECATED_MSG_ATTRIBUTE("Use setEmailFieldRequired:forAction: instead");
481481

482482
/**
483483
@brief Sets the threshold value of the shake gesture for iPhone/iPod Touch and iPad.

ios/Instabug.framework/Info.plist

-2 Bytes
Binary file not shown.

ios/Instabug.framework/Instabug

445 KB
Binary file not shown.

ios/Instabug.framework/_CodeSignature/CodeResources

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<dict>
77
<key>Headers/Instabug.h</key>
88
<data>
9-
SGNYZhDFT2EX7GCTETfClZTQXJY=
9+
HLhHXbcl6S+6sCG1ut59ycFbCfo=
1010
</data>
1111
<key>Info.plist</key>
1212
<data>
13-
/nPkkrY39eMx9p9uHRbBsHajFMw=
13+
Bqn+Wf8ZQhpJ7AXHhORaLKFpPCo=
1414
</data>
1515
<key>Modules/module.modulemap</key>
1616
<data>
@@ -23,11 +23,11 @@
2323
<dict>
2424
<key>hash</key>
2525
<data>
26-
SGNYZhDFT2EX7GCTETfClZTQXJY=
26+
HLhHXbcl6S+6sCG1ut59ycFbCfo=
2727
</data>
2828
<key>hash2</key>
2929
<data>
30-
WKOlkyFQLVjgThj0Q+rMJ+iJKaRVVs+lV56Ly76ap58=
30+
3BeJ1ClSEJTMLfWFnsomtrosn7+7AkC+rFeT9EqcwoY=
3131
</data>
3232
</dict>
3333
<key>Modules/module.modulemap</key>

ios/InstabugCore.framework/Headers/IBGTypes.h

Lines changed: 12 additions & 2 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.12.7
8+
Version: 7.13
99
*/
1010

1111
#import <UIKit/UIKit.h>
@@ -130,6 +130,11 @@ extern NSString * const kIBGExpectedResultsStringName;
130130
extern NSString * const kIBGActualResultsStringName;
131131
extern NSString * const kIBGStepsToReproduceStringName;
132132
extern NSString * const kIBGReplyButtonTitleStringName;
133+
extern NSString * const kIBGAddAttachmentButtonTitleStringName;
134+
extern NSString * const kIBGDiscardAlertTitle;
135+
extern NSString * const kIBGDiscardAlertMessage;
136+
extern NSString * const kIBGDiscardAlertAction;
137+
extern NSString * const kIBGDiscardAlertCancel;
133138

134139
/// -----------
135140
/// @name Enums
@@ -362,7 +367,12 @@ typedef NS_ENUM(NSInteger, IBGString) {
362367
IBGExpectedResultsStringName,
363368
IBGActualResultsStringName,
364369
IBGStepsToReproduceStringName,
365-
IBGReplyButtonTitleStringName
370+
IBGReplyButtonTitleStringName,
371+
IBGAddAttachmentButtonTitleStringName,
372+
IBGDiscardAlertTitleStringName,
373+
IBGDiscardAlertMessageStringName,
374+
IBGDiscardAlertActionStringName,
375+
IBGDiscardAlertCancelStringName
366376
};
367377

368378
/**

ios/InstabugCore.framework/Headers/InstabugCore.h

Lines changed: 1 addition & 1 deletion
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.12.7
8+
Version: 7.13
99
*/
1010

1111
#import <Foundation/Foundation.h>
-15 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)