Skip to content

Commit 2f94a06

Browse files
committed
Update version to 3.1.0
1 parent 408b722 commit 2f94a06

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

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

2323
## [Unreleased]
2424

25+
## [3.1.0] - 2019-09-03
26+
2527
### Added
26-
- Add `waitForRedirectDelay` option for **Android** to fix issues dismissing the browser before detecting the redirection with `Linking`.
28+
- Add `waitForRedirectDelay` option for **Android** to fix issues dismissing the browser before detecting the redirection with `Linking` ([817f6ec](https://github.com/proyecto26/react-native-inappbrowser/commit/817f6ece140c0f2f84e21a537d5030403e652bc1)).
2729

2830
## [3.0.1] - 2019-08-16
2931

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,8 @@ import InAppBrowser from 'react-native-inappbrowser-reborn'
192192
},
193193
headers: {
194194
'my-custom-header': 'my custom header value'
195-
}
195+
},
196+
waitForRedirectDelay: 0
196197
})
197198
Alert.alert(JSON.stringify(result))
198199
}
@@ -265,6 +266,7 @@ import { getDeepLink } from './utilities'
265266
showTitle: false,
266267
enableUrlBarHiding: true,
267268
enableDefaultShare: true,
269+
waitForRedirectDelay: 1000
268270
}).then((response) => {
269271
if (response.type === 'success' &&
270272
response.url) {

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-inappbrowser-reborn",
3-
"version": "3.0.1",
3+
"version": "3.1.0",
44
"description": "InAppBrowser for React Native",
55
"main": "index.js",
66
"readmeFilename": "README.md",

0 commit comments

Comments
 (0)