diff --git a/CHANGELOG.md b/CHANGELOG.md index 18d9759..e3a93a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ 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.6.5 + +### Fixes + +- android: Remove extra requests for checking if a URL hosts a PDF with `openInWebView`. This makes sure that for non-PDF urls, no extra request to the webpage/server is done [RMET-5141](https://outsystemsrd.atlassian.net/browse/RMET-5141) / [RPM-6744](https://outsystemsrd.atlassian.net/browse/RPM-6744). + ## 1.6.4 ### Fixes diff --git a/package.json b/package.json index 7795089..4ed62a4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "com.outsystems.plugins.inappbrowser", - "version": "1.6.4", + "version": "1.6.5", "description": "InAppBrowser OutSystems Cordova Plugin", "keywords": [ "ecosystem:cordova", diff --git a/plugin.xml b/plugin.xml index db4a425..7b0b044 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 3c04cea..441e501 100644 --- a/src/android/build.gradle +++ b/src/android/build.gradle @@ -10,7 +10,7 @@ buildscript { } dependencies{ - implementation("io.ionic.libs:ioninappbrowser-android:1.6.1@aar") + implementation("io.ionic.libs:ioninappbrowser-android:1.6.2@aar") implementation("androidx.browser:browser:1.8.0") implementation("com.google.android.gms:play-services-auth:21.2.0")