diff --git a/.github/workflows/github_release.yml b/.github/workflows/github_release.yml index 30a7934..13e86c4 100644 --- a/.github/workflows/github_release.yml +++ b/.github/workflows/github_release.yml @@ -49,7 +49,7 @@ jobs: - name: '⬇️ Download the O11 OAP from LifeTime' id: download_file - run: npm run download --plugin=${{inputs.plugin}} --forge=${{inputs.forgeVersionO11}} --environment=${{inputs.environment}} --lifetime=${{ secrets.LIFETIME }} --authentication='${{ secrets.AUTOMATION_TOKEN }}' + run: npm run download --plugin="${{inputs.plugin}}" --forge=${{inputs.forgeVersionO11}} --environment=${{inputs.environment}} --lifetime=${{ secrets.LIFETIME }} --authentication='${{ secrets.AUTOMATION_TOKEN }}' - name: '⬇️ Download OML from Azure' diff --git a/CHANGELOG.md b/CHANGELOG.md index b8ab479..63a7939 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 The changes documented here do not include those from the original repository. -## 1.0.1 +## 1.0.2 +- Android: Fix issue where the custom tabs browser wasn't being closed when navigating back to the app +- Android: Fix race condition that caused the `BrowserFinished` event to not be fired in some instances with the system browser ### Fixes - Android: Fix issue where some URLs weren't being open in Custom Tabs and the External Browser (https://outsystemsrd.atlassian.net/browse/RMET-3680) diff --git a/package.json b/package.json index 8c8b847..06f771e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "com.outsystems.plugins.inappbrowser", - "version": "1.0.1", + "version": "1.0.2", "description": "InAppBrowser OutSystems Cordova Plugin", "keywords": [ "ecosystem:cordova", diff --git a/plugin.xml b/plugin.xml index 4eab7dd..2ed5521 100644 --- a/plugin.xml +++ b/plugin.xml @@ -1,5 +1,5 @@ - + cordova-outsystems-inappbrowser InAppBrowser OutSystems Cordova Plugin OutSystems Inc diff --git a/src/android/build.gradle b/src/android/build.gradle index da05d28..674ac1a 100644 --- a/src/android/build.gradle +++ b/src/android/build.gradle @@ -17,7 +17,7 @@ allprojects { } dependencies{ - implementation("com.github.outsystems:osinappbrowser-android:1.0.1@aar") + implementation("com.github.outsystems:osinappbrowser-android:1.0.2@aar") implementation("androidx.browser:browser:1.8.0") implementation("com.google.android.gms:play-services-auth:21.2.0")