Skip to content

Commit 25bba0d

Browse files
authored
Merge pull request #59 from proyecto26/release/v3.0.2
2 parents efe2ebe + c6d879a commit 25bba0d

File tree

4 files changed

+19
-6
lines changed

4 files changed

+19
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ in case of vulnerabilities.
2222

2323
## [Unreleased]
2424

25+
## [3.0.2] - 2020-02-01
26+
### Fixed
27+
- Fix wrong param passed to parseColor method by [@ronalson](https://github.com/ronalson) ([#56](https://github.com/proyecto26/nativescript-inappbrowser/pull/56)).
28+
2529
## [3.0.1] - 2020-11-30
2630
### Fixed
2731
- Fix colors not working with instance of Color by [@farfromrefug](https://github.com/farfromrefug) ([#50](https://github.com/proyecto26/nativescript-inappbrowser/pull/50)).
@@ -83,7 +87,8 @@ in case of vulnerabilities.
8387
- Methods to open and close external urls to authenticate the user **(openAuth, closeAuth)** using deep linking.
8488
- `isAvailable` method to detect if the device supports the plugin.
8589

86-
[Unreleased]: https://github.com/proyecto26/nativescript-inappbrowser/compare/v3.0.1...HEAD
90+
[Unreleased]: https://github.com/proyecto26/nativescript-inappbrowser/compare/v3.0.2...HEAD
91+
[3.0.2]: https://github.com/proyecto26/nativescript-inappbrowser/compare/v3.0.1...v3.0.2
8792
[3.0.1]: https://github.com/proyecto26/nativescript-inappbrowser/compare/v3.0.0...v3.0.1
8893
[3.0.0]: https://github.com/proyecto26/nativescript-inappbrowser/compare/v2.3.0...v3.0.0
8994
[2.3.0]: https://github.com/proyecto26/nativescript-inappbrowser/compare/v2.2.0...v2.3.0

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,14 @@ import { getDeepLink } from './utilities';
228228

229229
Using in-app browser tabs (like SFAuthenticationSession/ASWebAuthenticationSession and Android Custom Tabs) where available. Embedded user-agents, known as web-views (like UIWebView and WKWebView), are explicitly not supported due to the usability and security reasons documented in [Section 8.12 of RFC 8252](https://tools.ietf.org/html/rfc8252#section-8.12).
230230

231+
## Credits 👍
232+
* **React Native InAppBrowser:** [InAppBrowser for React Native](https://github.com/proyecto26/react-native-inappbrowser)
233+
234+
## Contributing ✨
235+
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
236+
Contributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated** ❤️.
237+
You can learn more about how you can contribute to this project in the [contribution guide](https://github.com/proyecto26/nativescript-inappbrowser/blob/develop/CONTRIBUTING.md).
238+
231239
## Contributors ✨
232240
Please do contribute! Issues and pull requests are welcome.
233241

@@ -266,9 +274,6 @@ Support this project with your organization. Your logo will show up here with a
266274
<a href="https://opencollective.com/proyecto26/organization/8/website"><img src="https://opencollective.com/proyecto26/organization/8/avatar.svg"></a>
267275
<a href="https://opencollective.com/proyecto26/organization/9/website"><img src="https://opencollective.com/proyecto26/organization/9/avatar.svg"></a>
268276

269-
## Credits 👍
270-
* **React Native InAppBrowser:** [InAppBrowser for React Native](https://github.com/proyecto26/react-native-inappbrowser)
271-
272277
## Supporting 🍻
273278
I believe in Unicorns 🦄
274279
Support [me](http://www.paypal.me/jdnichollsc/2), if you do too.
@@ -282,6 +287,9 @@ The maintainers of InAppBrowser for NativeScript and thousands of other packages
282287
## Security contact information 🚨
283288
To report a security vulnerability, please use the [Tidelift security contact](https://tidelift.com/security). Tidelift will coordinate the fix and disclosure.
284289

290+
## License ⚖️
291+
This repository is available under the [MIT License](https://github.com/proyecto26/nativescript-inappbrowser/blob/develop/LICENSE).
292+
285293
## Happy coding 💯
286294
Made with ❤️
287295

src/InAppBrowser.ios.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ function setup() {
105105
}
106106
}
107107
if (inAppBrowserOptions.preferredControlTintColor) {
108-
const color = parseColor(inAppBrowserOptions.preferredBarTintColor);
108+
const color = parseColor(inAppBrowserOptions.preferredControlTintColor);
109109
if (color) {
110110
this.safariVC.preferredControlTintColor = color.ios;
111111
}

src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nativescript-inappbrowser",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "InAppBrowser for NativeScript",
55
"main": "InAppBrowser",
66
"typings": "index.d.ts",

0 commit comments

Comments
 (0)