Skip to content

Commit b942cb7

Browse files
committed
v3.16
1 parent d31229b commit b942cb7

File tree

8 files changed

+13
-8
lines changed

8 files changed

+13
-8
lines changed

Instabug.bundle/Instabug_dsym_upload.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#
1010
# --- INVOCATION SCRIPT BEGIN ---
1111
# # SKIP_SIMULATOR_BUILDS=1
12-
# SCRIPT_SRC=$(find "$PROJECT_DIR" -name 'Instabug_dsym_upload.sh')
12+
# SCRIPT_SRC=$(find "$PROJECT_DIR" -name 'Instabug_dsym_upload.sh' | head -1)
1313
# if [ ! "${SCRIPT_SRC}" ]; then
1414
# echo "Instabug: err: script not found. Make sure that you're including Instabug.bundle in your project directory"
1515
# exit 1
@@ -24,6 +24,10 @@ if [ ! "${APP_TOKEN}" ]; then
2424
APP_TOKEN=$(grep -r 'Instabug startWithToken:@\"[0-9a-zA-Z]*\"' ./ -m 1 | grep -o '\"[0-9a-zA-Z]*\"' | cut -d "\"" -f 2)
2525
fi
2626

27+
if [ ! "${APP_TOKEN}" ]; then
28+
APP_TOKEN=$(grep -r 'Instabug.startWithToken(\"[0-9a-zA-Z]*\"' ./ -m 1 | grep -o '\"[0-9a-zA-Z]*\"' | cut -d "\"" -f 2)
29+
fi
30+
2731
if [ ! "${APP_TOKEN}" ] || [ -z "${APP_TOKEN}" ];then
2832
echo "Instabug: err: APP_TOKEN not found. Make sure you've added the SDK initialization line [Instabug startWithToken: captureSource: invocationEvent:]"
2933
exit 1
42 Bytes
Binary file not shown.
1.36 KB
Binary file not shown.

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ typedef enum IBGLocale {
7878
IBGLocaleRussian,
7979
IBGLocaleSlovenian,
8080
IBGLocaleSpanish,
81+
IBGLocaleSwedish,
8182
IBGLocaleTurkish
8283
} IBGLocale;
8384
//===========================================================================================================================================

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

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

1111
//===========================================================================================================================================
@@ -122,12 +122,12 @@ void IBGLog(NSString *format, ...);
122122
+ (void)setIsTrackingUserSteps:(BOOL)isTrackingUserSteps;
123123

124124
/**
125-
* Sets whether to send the crash report immediatly on crash or not. When set to NO, the crash report is sent on the next app launch.
125+
* Sets whether to send the crash report immediately on crash or not. When set to NO, the crash report is sent on the next app launch.
126126
*
127127
* Default = NO
128-
* @param sendCrashReportsImmendiatly sendCrashReportsImmendiatly
128+
* @param sendCrashReportsImmediately sendCrashReportsImmediately
129129
*/
130-
+ (void)setWillSendCrashReportsImmendiatly:(BOOL)sendCrashReportsImmendiatly;
130+
+ (void)setWillSendCrashReportsImmediately:(BOOL)sendCrashReportsImmediately;
131131

132132
/**
133133
* Sets the default value of the email field
161 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.15"
3+
s.version = "3.16"
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.15" }
26+
s.source = { :git => "https://github.com/Instabug/Instabug-iOS.git", :tag => "3.16" }
2727
s.source_files = 'Instabug.framework/Versions/A/Headers/*.{h}'
2828
s.resources = 'Instabug.bundle'
2929
s.preserve_paths = 'Instabug.framework/*', 'Instabug.bundle'

add_instabug_build_script.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
INSTABUG_PHASE_NAME = "Upload Instabug dSYM"
44
INSTABUG_PHASE_SCRIPT = <<-SCRIPTEND
55
# SKIP_SIMULATOR_BUILDS=1
6-
SCRIPT_SRC=$(find "$PROJECT_DIR" -name 'Instabug_dsym_upload.sh')
6+
SCRIPT_SRC=$(find "$PROJECT_DIR" -name 'Instabug_dsym_upload.sh' | head -1)
77
if [ ! "${SCRIPT_SRC}" ]; then
88
echo "Instabug: err: script not found. Make sure that you're including Instabug.bundle in your project directory"
99
exit 1

0 commit comments

Comments
 (0)