File tree Expand file tree Collapse file tree 4 files changed +21
-4
lines changed
Instabug.framework/Versions/A Expand file tree Collapse file tree 4 files changed +21
-4
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,15 @@ typedef enum IBGColorTheme {
49
49
IBGColorThemeBlue
50
50
} IBGColorTheme ;
51
51
52
+ /**
53
+ * The mode used upon invocating the SDK
54
+ */
55
+ typedef enum IBGInvocationMode {
56
+ IBGInvocationModeNA ,
57
+ IBGInvocationModeBugReporter ,
58
+ IBGInvocationModeFeedbackSender
59
+ } IBGInvocationMode ;
60
+
52
61
/**
53
62
* The supported locales
54
63
*/
Original file line number Diff line number Diff line change 5
5
6
6
Copyright: (c) 2014 by Instabug, Inc., all rights reserved.
7
7
8
- Version: 3.0
8
+ Version: 3.3
9
9
*/
10
10
11
11
// ===========================================================================================================================================
122
122
+ (void )setIsTrackingUserSteps : (BOOL )isTrackingUserSteps ;
123
123
124
124
/* *
125
- * Set whether to show a screenshot to be annotated or not
125
+ * Sets whether to show a screenshot to be annotated or not
126
126
*
127
127
* Default = YES for bug reports, NO for feedback reports
128
128
* @param willShowScreenshotAnnotation willShowScreenshotAnnotation
129
129
*/
130
130
+ (void )setWillShowScreenshotAnnotation : (BOOL )willShowScreenshotAnnotation ;
131
131
132
+ /* *
133
+ * Sets the default SDK mode upon invocation
134
+ *
135
+ * Default = IBGInvocationModeNA
136
+ * @param invocationMode invocationMode
137
+ */
138
+ + (void )setDefaultInvocationMode : (IBGInvocationMode)invocationMode ;
139
+
132
140
/* *
133
141
* Sets the default value of whether to ask the user for an email or not
134
142
*
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "Instabug"
3
- s . version = "3.2 "
3
+ s . version = "3.3 "
4
4
s . summary = "Bug reporting for mobile apps. Learn more at http://instabug.com"
5
5
s . homepage = "http://instabug.com"
6
6
s . license = {
@@ -23,7 +23,7 @@ Pod::Spec.new do |s|
23
23
}
24
24
s . author = { "Instabug" => "[email protected] " }
25
25
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 " }
27
27
s . source_files = 'Instabug.framework/Versions/A/Headers/*.{h}'
28
28
s . resources = 'Instabug.bundle'
29
29
s . preserve_paths = 'Instabug.framework/*' , 'Instabug.bundle'
You can’t perform that action at this time.
0 commit comments