Skip to content

Commit 0267e49

Browse files
authored
Merge pull request #176 from Instabug/release/9.1.9
[MOB-5225] Release/9.1.9
2 parents 3edf75d + 0e264b3 commit 0267e49

File tree

83 files changed

+34
-8
lines changed

Some content is hidden

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

83 files changed

+34
-8
lines changed

.circleci/config.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: 2
22
jobs:
33
android_tests:
4-
working_directory: ~/project/InstabugSample/android
4+
working_directory: ~/project/example/android
55
macos:
66
xcode: "12.3.0"
77
environment:
@@ -75,7 +75,7 @@ jobs:
7575
ios_tests:
7676
macos:
7777
xcode: "12.3.0"
78-
working_directory: ~/project/InstabugSample
78+
working_directory: ~/project/example
7979
environment:
8080
FL_OUTPUT_DIR: output
8181
steps:
@@ -118,6 +118,11 @@ jobs:
118118
xcode: "12.3.0"
119119
steps:
120120
- checkout
121+
- run: git clone https://github.com/kylef/swiftenv.git ~/.swiftenv
122+
- run: echo 'export SWIFTENV_ROOT="$HOME/.swiftenv"' >> $BASH_ENV
123+
- run: echo 'export PATH="$SWIFTENV_ROOT/bin:$PATH"' >> $BASH_ENV
124+
- run: echo 'eval "$(swiftenv init -)"' >> $BASH_ENV
125+
- run: swiftenv install 5.0.3 && swiftenv global 5.0.3
121126
- run: git clone https://InstabugCI:[email protected]/Instabug/Escape.git
122127
- run: cd Escape; swift build -c release -Xswiftc -static-stdlib
123128
- run: cd Escape/.build/release; cp -f Escape /usr/local/bin/escape
@@ -140,17 +145,18 @@ workflows:
140145
filters:
141146
branches:
142147
only: master
143-
- publish:
148+
- release:
144149
context: cross-platform
145150
requires:
146151
- hold
147152
filters:
148153
branches:
149154
only: master
150-
- release:
155+
- publish:
151156
context: cross-platform
152157
requires:
153158
- hold
159+
- release
154160
filters:
155161
branches:
156162
only: master

CHANGELOG.md

Lines changed: 5 additions & 0 deletions

LICENSE.md renamed to LICENSE

File renamed without changes.

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ android {
3434
}
3535
}
3636
dependencies {
37-
implementation 'com.instabug.library:instabug:9.1.8.1'
37+
implementation 'com.instabug.library:instabug:9.1.8.2'
3838
testImplementation 'junit:junit:4.12'
3939
}

android/src/main/java/com/instabug/instabugflutter/ArgsRegistry.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,9 @@ static void registerCustomTextPlaceHolderKeysArgs(Map<String, Object> args) {
189189
args.put("CustomTextPlaceHolderKey.betaWelcomeMessageFinishStepContent", InstabugCustomTextPlaceHolder.Key.BETA_WELCOME_MESSAGE_FINISH_STEP_CONTENT);
190190
args.put("CustomTextPlaceHolderKey.liveWelcomeMessageTitle", InstabugCustomTextPlaceHolder.Key.LIVE_WELCOME_MESSAGE_TITLE);
191191
args.put("CustomTextPlaceHolderKey.liveWelcomeMessageContent", InstabugCustomTextPlaceHolder.Key.LIVE_WELCOME_MESSAGE_CONTENT);
192+
args.put("CustomTextPlaceHolderKey.repliesNotificationTeamName", InstabugCustomTextPlaceHolder.Key.CHATS_TEAM_STRING_NAME);
193+
args.put("CustomTextPlaceHolderKey.repliesNotificationReplyButton", InstabugCustomTextPlaceHolder.Key.REPLIES_NOTIFICATION_REPLY_BUTTON);
194+
args.put("CustomTextPlaceHolderKey.repliesNotificationDismissButton", InstabugCustomTextPlaceHolder.Key.REPLIES_NOTIFICATION_DISMISS_BUTTON);
192195
}
193196

194197
static void registerInstabugReportTypesArgs(Map<String, Object> args) {

android/src/test/java/com/instabug/instabugflutter/ArgsRegistryTest.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,9 @@ private List<InstabugCustomTextPlaceHolder.Key> getCurrentlySupportedKeysBySDK()
283283
keys.add(InstabugCustomTextPlaceHolder.Key.BETA_WELCOME_MESSAGE_FINISH_STEP_CONTENT);
284284
keys.add(InstabugCustomTextPlaceHolder.Key.LIVE_WELCOME_MESSAGE_TITLE);
285285
keys.add(InstabugCustomTextPlaceHolder.Key.LIVE_WELCOME_MESSAGE_CONTENT);
286+
keys.add(InstabugCustomTextPlaceHolder.Key.CHATS_TEAM_STRING_NAME);
287+
keys.add(InstabugCustomTextPlaceHolder.Key.REPLIES_NOTIFICATION_REPLY_BUTTON);
288+
keys.add(InstabugCustomTextPlaceHolder.Key.REPLIES_NOTIFICATION_DISMISS_BUTTON);
286289
return keys;
287290
}
288291

@@ -329,6 +332,9 @@ private List<InstabugCustomTextPlaceHolder.Key> getAllCustomTextPlaceHolderKeys(
329332
keys.add(InstabugCustomTextPlaceHolder.Key.SURVEYS_WELCOME_SCREEN_SUBTITLE);
330333
keys.add(InstabugCustomTextPlaceHolder.Key.SURVEYS_WELCOME_SCREEN_BUTTON);
331334
keys.add(InstabugCustomTextPlaceHolder.Key.REQUEST_FEATURE);
335+
keys.add(InstabugCustomTextPlaceHolder.Key.CHATS_TEAM_STRING_NAME);
336+
keys.add(InstabugCustomTextPlaceHolder.Key.REPLIES_NOTIFICATION_REPLY_BUTTON);
337+
keys.add(InstabugCustomTextPlaceHolder.Key.REPLIES_NOTIFICATION_DISMISS_BUTTON);
332338
return keys;
333339
}
334340
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

ios/Classes/InstabugFlutterPlugin.m

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -900,6 +900,10 @@ + (NSDictionary *)constants {
900900
@"CustomTextPlaceHolderKey.liveWelcomeMessageTitle": kIBGLiveWelcomeMessageTitle,
901901
@"CustomTextPlaceHolderKey.liveWelcomeMessageContent": kIBGLiveWelcomeMessageContent,
902902

903+
@"CustomTextPlaceHolderKey.repliesNotificationTeamName": kIBGTeamStringName,
904+
@"CustomTextPlaceHolderKey.repliesNotificationReplyButton": kIBGReplyButtonTitleStringName,
905+
@"CustomTextPlaceHolderKey.repliesNotificationDismissButton": kIBGDismissButtonTitleStringName,
906+
903907
@"ReportType.bug": @(IBGBugReportingReportTypeBug),
904908
@"ReportType.feedback": @(IBGBugReportingReportTypeFeedback),
905909
@"ReportType.question": @(IBGBugReportingReportTypeQuestion),

lib/Instabug.dart

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,10 @@ enum CustomTextPlaceHolderKey {
7676
betaWelcomeMessageFinishStepTitle,
7777
betaWelcomeMessageFinishStepContent,
7878
liveWelcomeMessageTitle,
79-
liveWelcomeMessageContent
79+
liveWelcomeMessageContent,
80+
repliesNotificationTeamName,
81+
repliesNotificationReplyButton,
82+
repliesNotificationDismissButton
8083
}
8184

8285
enum ReproStepsMode { enabled, disabled, enabledWithNoScreenshots }

pubspec.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
name: instabug_flutter
2-
version: 9.1.8
2+
version: 9.1.9
33
description: >-
44
Instabug is an in-app feedback and bug reporting tool for mobile apps.
55
With just a simple shake, your users or beta testers can report bugs or
66
send in-app feedback and the SDK will capture an environment snapshot of
77
your user's device including all console logs, server-side network requests
88
and bug reproduction steps compiling all these details in one organised dashboard
99
to help you debug and fix bugs faster.
10-
author: Instabug <[email protected]>
1110
homepage: https://github.com/Instabug/Instabug-Flutter#readme
1211
documentation: https://github.com/Instabug/Instabug-Flutter#readme
1312

0 commit comments

Comments
 (0)