Skip to content

Commit ce9ec06

Browse files
committed
v3.3
1 parent 26bbd93 commit ce9ec06

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

Instabug.framework/Versions/A/Headers/IBGEnums.h

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,15 @@ typedef enum IBGColorTheme {
4949
IBGColorThemeBlue
5050
} IBGColorTheme;
5151

52+
/**
53+
* The mode used upon invocating the SDK
54+
*/
55+
typedef enum IBGInvocationMode {
56+
IBGInvocationModeNA,
57+
IBGInvocationModeBugReporter,
58+
IBGInvocationModeFeedbackSender
59+
} IBGInvocationMode;
60+
5261
/**
5362
* The supported locales
5463
*/

Instabug.framework/Versions/A/Headers/Instabug.h

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Copyright: (c) 2014 by Instabug, Inc., all rights reserved.
77
8-
Version: 3.0
8+
Version: 3.3
99
*/
1010

1111
//===========================================================================================================================================
@@ -122,13 +122,21 @@
122122
+ (void)setIsTrackingUserSteps:(BOOL)isTrackingUserSteps;
123123

124124
/**
125-
* Set whether to show a screenshot to be annotated or not
125+
* Sets whether to show a screenshot to be annotated or not
126126
*
127127
* Default = YES for bug reports, NO for feedback reports
128128
* @param willShowScreenshotAnnotation willShowScreenshotAnnotation
129129
*/
130130
+ (void)setWillShowScreenshotAnnotation:(BOOL)willShowScreenshotAnnotation;
131131

132+
/**
133+
* Sets the default SDK mode upon invocation
134+
*
135+
* Default = IBGInvocationModeNA
136+
* @param invocationMode invocationMode
137+
*/
138+
+ (void)setDefaultInvocationMode:(IBGInvocationMode)invocationMode;
139+
132140
/**
133141
* Sets the default value of whether to ask the user for an email or not
134142
*
55.9 KB
Binary file not shown.

Instabug.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Instabug"
3-
s.version = "3.2"
3+
s.version = "3.3"
44
s.summary = "Bug reporting for mobile apps. Learn more at http://instabug.com"
55
s.homepage = "http://instabug.com"
66
s.license = {
@@ -23,7 +23,7 @@ Pod::Spec.new do |s|
2323
}
2424
s.author = { "Instabug" => "[email protected]" }
2525
s.platform = :ios, '5.0'
26-
s.source = { :git => "https://github.com/Instabug/Instabug-iOS.git", :tag => "3.2" }
26+
s.source = { :git => "https://github.com/Instabug/Instabug-iOS.git", :tag => "3.3" }
2727
s.source_files = 'Instabug.framework/Versions/A/Headers/*.{h}'
2828
s.resources = 'Instabug.bundle'
2929
s.preserve_paths = 'Instabug.framework/*', 'Instabug.bundle'

0 commit comments

Comments
 (0)