Skip to content

Commit

Permalink
v3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mzsoliman committed Jul 31, 2014
1 parent 26bbd93 commit ce9ec06
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 4 deletions.
9 changes: 9 additions & 0 deletions Instabug.framework/Versions/A/Headers/IBGEnums.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,15 @@ typedef enum IBGColorTheme {
IBGColorThemeBlue
} IBGColorTheme;

/**
* The mode used upon invocating the SDK
*/
typedef enum IBGInvocationMode {
IBGInvocationModeNA,
IBGInvocationModeBugReporter,
IBGInvocationModeFeedbackSender
} IBGInvocationMode;

/**
* The supported locales
*/
Expand Down
12 changes: 10 additions & 2 deletions Instabug.framework/Versions/A/Headers/Instabug.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Copyright: (c) 2014 by Instabug, Inc., all rights reserved.
Version: 3.0
Version: 3.3
*/

//===========================================================================================================================================
Expand Down Expand Up @@ -122,13 +122,21 @@
+ (void)setIsTrackingUserSteps:(BOOL)isTrackingUserSteps;

/**
* Set whether to show a screenshot to be annotated or not
* Sets whether to show a screenshot to be annotated or not
*
* Default = YES for bug reports, NO for feedback reports
* @param willShowScreenshotAnnotation willShowScreenshotAnnotation
*/
+ (void)setWillShowScreenshotAnnotation:(BOOL)willShowScreenshotAnnotation;

/**
* Sets the default SDK mode upon invocation
*
* Default = IBGInvocationModeNA
* @param invocationMode invocationMode
*/
+ (void)setDefaultInvocationMode:(IBGInvocationMode)invocationMode;

/**
* Sets the default value of whether to ask the user for an email or not
*
Expand Down
Binary file modified Instabug.framework/Versions/A/Instabug
Binary file not shown.
4 changes: 2 additions & 2 deletions Instabug.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Instabug"
s.version = "3.2"
s.version = "3.3"
s.summary = "Bug reporting for mobile apps. Learn more at http://instabug.com"
s.homepage = "http://instabug.com"
s.license = {
Expand All @@ -23,7 +23,7 @@ Pod::Spec.new do |s|
}
s.author = { "Instabug" => "contactus@instabug.com" }
s.platform = :ios, '5.0'
s.source = { :git => "https://github.com/Instabug/Instabug-iOS.git", :tag => "3.2" }
s.source = { :git => "https://github.com/Instabug/Instabug-iOS.git", :tag => "3.3" }
s.source_files = 'Instabug.framework/Versions/A/Headers/*.{h}'
s.resources = 'Instabug.bundle'
s.preserve_paths = 'Instabug.framework/*', 'Instabug.bundle'
Expand Down

0 comments on commit ce9ec06

Please sign in to comment.