Skip to content

Commit 1958d1c

Browse files
committed
⬆️ Upgrade native iOS SDK version to v7.14.2
1 parent 7af050a commit 1958d1c

Some content is hidden

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

52 files changed

+198
-178
lines changed

ios/Instabug.framework/Headers/Instabug.h

Lines changed: 23 additions & 3 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.13
8+
Version: 7.14.2
99
*/
1010

1111
#import <Foundation/Foundation.h>
@@ -330,7 +330,27 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r
330330
331331
@discussion Does nothing if invocation event is set to anything other than IBGInvocationEventShake or IBGInvocationEventScreenshot.
332332
*/
333-
+ (void)showIntroMessage;
333+
+ (void)showIntroMessage DEPRECATED_MSG_ATTRIBUTE("Use showWelcomeMessageWithMode: instead.");
334+
335+
/**
336+
@brief Shows the welcome message in a specific mode.
337+
338+
@discussion By default, the welcome message live mode is enabled. It appears automatically after 10 seconds from the user's first session. You can show it manually in a specific mode through this API.
339+
The live mode consists of one step to inform the users how to report a bug or feedback. The beta mode consists of three steps to welcome your testers on board, inform them how to report a bug or feedback and to motivate them to always be on the latest app version. Please note, the into message appears only if the invocation event isn't set to none.
340+
341+
@param welcomeMessageMode An enum to set the welcome message mode to live, beta or disabled.
342+
*/
343+
+ (void)showWelcomeMessageWithMode:(IBGWelcomeMessageMode)welcomeMessageMode;
344+
345+
/**
346+
@brief Sets the welcome message mode to live, beta or disabled.
347+
348+
@discussion By default, the welcome message live mode is enabled. It appears automatically after 10 seconds from the user's first session. You can change it to the beta mode or disable it.
349+
The live mode consists of one step to inform the users how to report a bug or feedback. The beta mode consists of three steps to welcome your testers on board, inform them how to report a bug or feedback and to motivate them to always be on the latest app version. Please note, the into message appears only if the invocation event isn't set to none.
350+
351+
@param welcomeMessageMode An enum to set the welcome message mode to live, beta or disabled.
352+
*/
353+
+ (void)setWelcomeMessageMode:(IBGWelcomeMessageMode)welcomeMessageMode;
334354

335355
/**
336356
@brief Enables/disables the attachment of an initial screenshot when reporting a bug/improvement.
@@ -530,7 +550,7 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r
530550
531551
@param isIntroMessageEnabled A boolean to indicate whether the intro message is enabled or not.
532552
*/
533-
+ (void)setIntroMessageEnabled:(BOOL)isIntroMessageEnabled;
553+
+ (void)setIntroMessageEnabled:(BOOL)isIntroMessageEnabled DEPRECATED_MSG_ATTRIBUTE("Use setWelcomeMessageMode: instead.");
534554

535555
/**
536556
@brief Sets whether to show a "Thank You" dialog after a bug report is sent or not.

ios/Instabug.framework/Info.plist

2 Bytes
Binary file not shown.

ios/Instabug.framework/Instabug

834 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-
HLhHXbcl6S+6sCG1ut59ycFbCfo=
9+
0VzQNGUhwwUakHtSZk/sVjnclBI=
1010
</data>
1111
<key>Info.plist</key>
1212
<data>
13-
Bqn+Wf8ZQhpJ7AXHhORaLKFpPCo=
13+
wvwESL9sbWgpOnPmqR1ukQ1GKX0=
1414
</data>
1515
<key>Modules/module.modulemap</key>
1616
<data>
@@ -23,11 +23,11 @@
2323
<dict>
2424
<key>hash</key>
2525
<data>
26-
HLhHXbcl6S+6sCG1ut59ycFbCfo=
26+
0VzQNGUhwwUakHtSZk/sVjnclBI=
2727
</data>
2828
<key>hash2</key>
2929
<data>
30-
3BeJ1ClSEJTMLfWFnsomtrosn7+7AkC+rFeT9EqcwoY=
30+
HEd4105lVuHD52iHHDs6y5hpz7RKXt8ADlKZLSomPd4=
3131
</data>
3232
</dict>
3333
<key>Modules/module.modulemap</key>

ios/InstabugCore.framework/Assets.car

564 KB
Binary file not shown.

ios/InstabugCore.framework/Headers/IBGTypes.h

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

1111
#import <UIKit/UIKit.h>
@@ -21,6 +21,16 @@ extern NSString * const kIBGShakeStartAlertTextStringName;
2121
extern NSString * const kIBGTwoFingerSwipeStartAlertTextStringName;
2222
extern NSString * const kIBGEdgeSwipeStartAlertTextStringName;
2323
extern NSString * const kIBGScreenshotStartAlertTextStringName;
24+
extern NSString * const kIBGFloatingButtonStartAlertTextStringName;
25+
extern NSString * const kIBGBetaWelcomeMessageWelcomeStepTitle;
26+
extern NSString * const kIBGBetaWelcomeMessageWelcomeStepContent;
27+
extern NSString * const kIBGBetaWelcomeMessageHowToReportStepTitle;
28+
extern NSString * const kIBGBetaWelcomeMessageHowToReportStepContent;
29+
extern NSString * const kIBGBetaWelcomeMessageFinishStepTitle;
30+
extern NSString * const kIBGBetaWelcomeMessageFinishStepContent;
31+
extern NSString * const kIBGBetaWelcomeDoneButtonTitle;
32+
extern NSString * const kIBGLiveWelcomeMessageTitle;
33+
extern NSString * const kIBGLiveWelcomeMessageContent;
2434
extern NSString * const kIBGInvalidEmailMessageStringName;
2535
extern NSString * const kIBGInvalidEmailTitleStringName;
2636
extern NSString * const kIBGInvalidCommentMessageStringName;
@@ -272,7 +282,18 @@ typedef NS_ENUM(NSInteger, IBGString) {
272282
IBGStringShakeHint,
273283
IBGStringSwipeHint,
274284
IBGStringEdgeSwipeStartHint,
285+
IBGStringScreenshotHint,
286+
IBGStringFloatingButtonHint,
275287
IBGStringStartAlertText,
288+
IBGBetaWelcomeMessageWelcomeStepTitle,
289+
IBGBetaWelcomeMessageWelcomeStepContent,
290+
IBGBetaWelcomeMessageHowToReportStepTitle,
291+
IBGBetaWelcomeMessageHowToReportStepMessage,
292+
IBGBetaWelcomeMessageFinishStepTitle,
293+
IBGBetaWelcomeMessageFinishStepContent,
294+
IBGBetaWelcomeDoneButtonTitle,
295+
IBGLiveWelcomeMessageTitle,
296+
IBGLiveWelcomeMessageMessage,
276297
IBGStringInvalidEmailMessage,
277298
IBGStringInvalidEmailTitle,
278299
IBGStringInvalidCommentMessage,
@@ -434,6 +455,15 @@ typedef NS_ENUM(NSInteger, IBGExtendedBugReportMode) {
434455
IBGExtendedBugReportModeDisabled
435456
};
436457

458+
/**
459+
The welcome message mode.
460+
*/
461+
typedef NS_ENUM(NSInteger, IBGWelcomeMessageMode) {
462+
IBGWelcomeMessageModeLive,
463+
IBGWelcomeMessageModeBeta,
464+
IBGWelcomeMessageModeDisabled
465+
};
466+
437467
typedef enum : NSUInteger {
438468
IBGActionAllActions = 1 << 0,
439469
IBGActionReportBug = 1 << 1,

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.13
8+
Version: 7.14.2
99
*/
1010

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

0 commit comments

Comments
 (0)