Skip to content

Commit

Permalink
Merged in release/16.2.0 (pull request #43)
Browse files Browse the repository at this point in the history
Release/16.2.0
  • Loading branch information
mstanic-shake committed Sep 19, 2023
2 parents c9ec228 + ac12d50 commit c1fe33a
Show file tree
Hide file tree
Showing 50 changed files with 1,442 additions and 613 deletions.
27 changes: 7 additions & 20 deletions .run/Development.run.xml
Original file line number Diff line number Diff line change
@@ -1,24 +1,11 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Development" type="ShConfigurationType">
<option name="INDEPENDENT_SCRIPT_PATH" value="true" />
<option name="SCRIPT_PATH" value="$PROJECT_DIR$/example/.scripts/mac-run-development.sh" />
<option name="SCRIPT_OPTIONS" value="" />
<option name="INDEPENDENT_SCRIPT_WORKING_DIRECTORY" value="true" />
<option name="SCRIPT_WORKING_DIRECTORY" value="$PROJECT_DIR$" />
<option name="INDEPENDENT_INTERPRETER_PATH" value="true" />
<option name="INTERPRETER_PATH" value="/bin/bash" />
<option name="INTERPRETER_OPTIONS" value="" />
<method v="2" />
</configuration>
<configuration default="false" name="Development" type="ShConfigurationType" activateToolWindowBeforeRun="false">
<option name="INDEPENDENT_SCRIPT_PATH" value="true" />
<option name="SCRIPT_PATH" value="$PROJECT_DIR$/example/.scripts/run-dev.sh" />
<option name="SCRIPT_OPTIONS" value="" />
<option name="INDEPENDENT_SCRIPT_WORKING_DIRECTORY" value="true" />
<option name="SCRIPT_WORKING_DIRECTORY" value="$PROJECT_DIR$/example" />
<option name="INDEPENDENT_INTERPRETER_PATH" value="true" />
<option name="INTERPRETER_PATH" value="/bin/bash" />
<option name="INTERPRETER_OPTIONS" value="" />
<configuration default="false" name="development" type="FlutterRunConfigurationType" factoryName="Flutter">
<option name="buildFlavor" value="development" />
<option name="envs">
<entry key="ANDROID_DEPENDENCY" value="com.shakebugs:shake-staging" />
<entry key="IOS_DEPENDENCY" value="Shake-Staging" />
</option>
<option name="filePath" value="$PROJECT_DIR$/example/lib/main.dart" />
<method v="2" />
</configuration>
</component>
13 changes: 0 additions & 13 deletions .run/Production.run.xml

This file was deleted.

13 changes: 0 additions & 13 deletions .run/Staging.run.xml

This file was deleted.

11 changes: 11 additions & 0 deletions .run/production.run.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="production" type="FlutterRunConfigurationType" factoryName="Flutter">
<option name="buildFlavor" value="production" />
<option name="envs">
<entry key="ANDROID_DEPENDENCY" value="com.shakebugs:shake" />
<entry key="IOS_DEPENDENCY" value="Shake" />
</option>
<option name="filePath" value="$PROJECT_DIR$/example/lib/main.dart" />
<method v="2" />
</configuration>
</component>
11 changes: 11 additions & 0 deletions .run/staging.run.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="staging" type="FlutterRunConfigurationType" factoryName="Flutter">
<option name="buildFlavor" value="staging" />
<option name="envs">
<entry key="ANDROID_DEPENDENCY" value="com.shakebugs:shake-staging" />
<entry key="IOS_DEPENDENCY" value="Shake-Staging" />
</option>
<option name="filePath" value="$PROJECT_DIR$/example/lib/main.dart" />
<method v="2" />
</configuration>
</component>
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
# 16.2.0

- Upgraded to Shake Android and iOS native SDK 16.2+
- Implemented methods for integrating Firebase/APNS push notifications
- Implemented methods for setting custom Shake home screen actions
- Implemented Shake open, dismiss and submit events callbacks
- Added option to show new chat screen from the code

# 16.1.0

- Upgraded to Shake Android and iOS native SDK 16.1.0
- Upgraded to Shake Android and iOS native SDK 16.1+
- Implemented method for changing Shake screens theme
- Implemented method for changing Shake home screen subtitle

# 16.0.0

- Upgraded to Shake Android and iOS native SDK 16.0.0
- Upgraded to Shake Android and iOS native SDK 16.0+
- Implemented models and method for creating Shake custom forms
- Removed old methods for Shake form customization
- Updated example project dependencies and added custom form code example
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Flutter plugin for [bug reporting](https://www.shakebugs.com).
Add Shake to your `pubspec.yaml` file.
```yaml
dependencies:
shake_flutter: ^16.1.0
shake_flutter: ^16.2.0
```
Install package by running command in terminal.
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ android {

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
api "$System.env.ANDROID_DEPENDENCY:16.1.+"
api "$System.env.ANDROID_DEPENDENCY:16.2.+"
}
Loading

0 comments on commit c1fe33a

Please sign in to comment.