Skip to content

Commit afbd644

Browse files
authored
Merge pull request #120 from Instabug/rel/9.1.7
[MOB-5227] Release/9.1.7
2 parents 1e639d1 + 0248524 commit afbd644

File tree

99 files changed

+342
-889
lines changed

Some content is hidden

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

99 files changed

+342
-889
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,12 @@ jobs:
6666
adb shell settings put global transition_animation_scale 0.0
6767
adb shell settings put global animator_duration_scale 0.0
6868
adb shell settings put secure long_press_timeout 1500
69-
- run:
70-
name: Run UI Tests
71-
command: cd ../sampleApp/platforms/android; ./gradlew app:connectedAndroidTest
7269
- run:
7370
name: Run unit Tests
7471
command: cd ../sampleApp/platforms/android; ./gradlew test
72+
# - run:
73+
# name: Run UI Tests
74+
# command: cd ../sampleApp/platforms/android; ./gradlew app:connectedAndroidTest
7575

7676
ios_tests:
7777
macos:

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## v9.1.7 (2021-05-11)
2+
3+
* Adds support for Azerbaijani and Danish locales
4+
* Removes the use of `android:requestLegacyExternalStorage` attribute on Android
5+
* Bumps iOS SDK to v9.1.7
6+
* Bumps Android SDK to v9.1.8
7+
18
## v9.1.6 (2020-07-20)
29

310
* Bump native SDKs to v9.1.6

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ android {
2121
}
2222

2323
dependencies {
24-
implementation 'com.instabug.library:instabug:9.1.6.0'
24+
implementation 'com.instabug.library:instabug:9.1.8.2'
2525
implementation 'com.android.support:multidex:1.0.0'
2626
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "instabug-cordova",
3-
"version": "9.1.6",
3+
"version": "9.1.7",
44
"description": "The purpose of this plugin is to simplify the process of integrating the Instabug SDK in a hybrid application, as well as to provide an interface to interfacing with the SDK through JavaScript.",
55
"main": "index.js",
66
"repository": {

plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
44
xmlns:android="http://schemas.android.com/apk/res/android"
55
id="instabug-cordova"
6-
version="9.1.6">
6+
version="9.1.7">
77

88
<name>instabug-cordova</name>
99

src/android/IBGPlugin.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1258,10 +1258,14 @@ public static int parseInvocationOption(String invocationOption) {
12581258
public static InstabugLocale parseLocale(String locale) {
12591259
if ("arabic".equals(locale)) {
12601260
return InstabugLocale.ARABIC;
1261+
} else if ("azerbaijani".equals(locale)) {
1262+
return InstabugLocale.AZERBAIJANI;
12611263
} else if ("chineseSimplified".equals(locale)) {
12621264
return InstabugLocale.SIMPLIFIED_CHINESE;
12631265
} else if ("chineseTraditional".equals(locale)) {
12641266
return InstabugLocale.TRADITIONAL_CHINESE;
1267+
} else if ("danish".equals(locale)) {
1268+
return InstabugLocale.DANISH;
12651269
} else if ("english".equals(locale)) {
12661270
return InstabugLocale.ENGLISH;
12671271
} else if ("french".equals(locale)) {

src/ios/IBGPlugin.m

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1565,6 +1565,8 @@ - (IBGLocale) parseLocale:(NSString*)locale
15651565
return IBGLocaleArabic;
15661566
} else if ([locale isEqualToString:@"chineseTaiwan"]) {
15671567
return IBGLocaleChineseTaiwan;
1568+
} else if ([locale isEqualToString:@"azerbaijani"]) {
1569+
return IBGLocaleAzerbaijani;
15681570
} else if ([locale isEqualToString:@"chineseSimplified"]) {
15691571
return IBGLocaleChineseSimplified;
15701572
} else if ([locale isEqualToString:@"chineseTraditional"]) {
@@ -1573,6 +1575,8 @@ - (IBGLocale) parseLocale:(NSString*)locale
15731575
return IBGLocaleEnglish;
15741576
} else if ([locale isEqualToString:@"danish"]) {
15751577
return IBGLocaleDanish;
1578+
} else if ([locale isEqualToString:@"dutch"]) {
1579+
return IBGLocaleDutch;
15761580
} else if ([locale isEqualToString:@"english"]) {
15771581
return IBGLocaleEnglish;
15781582
} else if ([locale isEqualToString:@"french"]) {

src/ios/Instabug.framework/Headers/IBGBugReporting.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Copyright: (c) 2013-2019 by Instabug, Inc., all rights reserved.
77
8-
Version: 9.1.6
8+
Version: 9.1.7
99
*/
1010

1111
#import <Foundation/Foundation.h>

src/ios/Instabug.framework/Headers/IBGChats.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Copyright: (c) 2013-2019 by Instabug, Inc., all rights reserved.
77
8-
Version: 9.1.6
8+
Version: 9.1.7
99
*/
1010

1111
#import <Foundation/Foundation.h>

src/ios/Instabug.framework/Headers/IBGCrashReporting.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Copyright: (c) 2013-2019 by Instabug, Inc., all rights reserved.
77
8-
Version: 9.1.6
8+
Version: 9.1.7
99
*/
1010

1111
#import <Foundation/Foundation.h>

0 commit comments

Comments
 (0)