cordova-plugin-inappbrowser-patch 6.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/CONTRIBUTING.md +37 -0
  2. package/LICENSE +202 -0
  3. package/NOTICE +5 -0
  4. package/README.md +722 -0
  5. package/RELEASENOTES.md +801 -0
  6. package/package.json +60 -0
  7. package/plugin.xml +103 -0
  8. package/src/android/InAppBrowser.java +1503 -0
  9. package/src/android/InAppBrowserDialog.java +57 -0
  10. package/src/android/InAppChromeClient.java +190 -0
  11. package/src/android/res/drawable-hdpi/ic_action_next_item.png +0 -0
  12. package/src/android/res/drawable-hdpi/ic_action_previous_item.png +0 -0
  13. package/src/android/res/drawable-hdpi/ic_action_remove.png +0 -0
  14. package/src/android/res/drawable-mdpi/ic_action_next_item.png +0 -0
  15. package/src/android/res/drawable-mdpi/ic_action_previous_item.png +0 -0
  16. package/src/android/res/drawable-mdpi/ic_action_remove.png +0 -0
  17. package/src/android/res/drawable-xhdpi/ic_action_next_item.png +0 -0
  18. package/src/android/res/drawable-xhdpi/ic_action_previous_item.png +0 -0
  19. package/src/android/res/drawable-xhdpi/ic_action_remove.png +0 -0
  20. package/src/android/res/drawable-xxhdpi/ic_action_next_item.png +0 -0
  21. package/src/android/res/drawable-xxhdpi/ic_action_previous_item.png +0 -0
  22. package/src/android/res/drawable-xxhdpi/ic_action_remove.png +0 -0
  23. package/src/browser/InAppBrowserProxy.js +245 -0
  24. package/src/ios/CDVInAppBrowserNavigationController.h +28 -0
  25. package/src/ios/CDVInAppBrowserNavigationController.m +63 -0
  26. package/src/ios/CDVInAppBrowserOptions.h +51 -0
  27. package/src/ios/CDVInAppBrowserOptions.m +90 -0
  28. package/src/ios/CDVWKInAppBrowser.h +80 -0
  29. package/src/ios/CDVWKInAppBrowser.m +1223 -0
  30. package/src/ios/CDVWKInAppBrowserUIDelegate.h +32 -0
  31. package/src/ios/CDVWKInAppBrowserUIDelegate.m +127 -0
  32. package/types/index.d.ts +109 -0
  33. package/www/inappbrowser.js +124 -0
@@ -0,0 +1,801 @@
1
+ <!--
2
+ #
3
+ # Licensed to the Apache Software Foundation (ASF) under one
4
+ # or more contributor license agreements. See the NOTICE file
5
+ # distributed with this work for additional information
6
+ # regarding copyright ownership. The ASF licenses this file
7
+ # to you under the Apache License, Version 2.0 (the
8
+ # "License"); you may not use this file except in compliance
9
+ # with the License. You may obtain a copy of the License at
10
+ #
11
+ # http://www.apache.org/licenses/LICENSE-2.0
12
+ #
13
+ # Unless required by applicable law or agreed to in writing,
14
+ # software distributed under the License is distributed on an
15
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16
+ # KIND, either express or implied. See the License for the
17
+ # specific language governing permissions and limitations
18
+ # under the License.
19
+ #
20
+ -->
21
+ # Release Notes
22
+
23
+ ### 6.0.0 (Nov 10, 2023)
24
+ * [GH-1033](https://github.com/apache/cordova-plugin-inappbrowser/pull/1033) chore: bump to next major release 6.0.0 & update deependencies
25
+ * [GH-1032](https://github.com/apache/cordova-plugin-inappbrowser/pull/1032) chore(lint): update eslint config and apply fixes
26
+ * [GH-1030](https://github.com/apache/cordova-plugin-inappbrowser/pull/1030) fix!: remove deprecated platforms **Windows** & osx
27
+ * [GH-1031](https://github.com/apache/cordova-plugin-inappbrowser/pull/1031) fix(ios): Remove deprecation warnings and old code
28
+ * [GH-927](https://github.com/apache/cordova-plugin-inappbrowser/pull/927) fix: explicitly import dependencies, instead of relying on PCH files. This is important in Swift projects, where you cannot use prefix headers.
29
+ * [GH-968](https://github.com/apache/cordova-plugin-inappbrowser/pull/968) GH-706 **Android**: Allow permissions requests
30
+ * [GH-1029](https://github.com/apache/cordova-plugin-inappbrowser/pull/1029) chore: update asf config
31
+ * [GH-1019](https://github.com/apache/cordova-plugin-inappbrowser/pull/1019) feat(android): Download event
32
+ * [GH-1020](https://github.com/apache/cordova-plugin-inappbrowser/pull/1020) ci(gh-action): Paramedic CI sync
33
+ * [GH-1015](https://github.com/apache/cordova-plugin-inappbrowser/pull/1015) feat(ios): Make WebView inspectable
34
+ * [GH-1016](https://github.com/apache/cordova-plugin-inappbrowser/pull/1016) chore: use https urls in tests and `README`
35
+ * [GH-1017](https://github.com/apache/cordova-plugin-inappbrowser/pull/1017) chore: Update SUPPORT_QUESTION.md template
36
+ * [GH-977](https://github.com/apache/cordova-plugin-inappbrowser/pull/977) fix(docs): missing xml indicator in code block
37
+ * [GH-971](https://github.com/apache/cordova-plugin-inappbrowser/pull/971) ci: sync workflow with paramedic
38
+ * [GH-964](https://github.com/apache/cordova-plugin-inappbrowser/pull/964) dep(npm): bump package-lock v2 w/ rebuild
39
+ * [GH-957](https://github.com/apache/cordova-plugin-inappbrowser/pull/957) ci(android): update java requirement for `cordova-android`@11
40
+ * [GH-946](https://github.com/apache/cordova-plugin-inappbrowser/pull/946) fix(android): increase toolbar to 48dp
41
+ * [GH-912](https://github.com/apache/cordova-plugin-inappbrowser/pull/912) ci(ios): update workflow w/ **iOS** 15
42
+ * [GH-907](https://github.com/apache/cordova-plugin-inappbrowser/pull/907) ci: add action-badge
43
+ * [GH-906](https://github.com/apache/cordova-plugin-inappbrowser/pull/906) ci: remove travis & appveyor
44
+ * [GH-903](https://github.com/apache/cordova-plugin-inappbrowser/pull/903) ci: add gh-actions workflows
45
+ * [GH-861](https://github.com/apache/cordova-plugin-inappbrowser/pull/861) fix(android): add space between default useragent and custom AppendUserAgent
46
+ * [GH-881](https://github.com/apache/cordova-plugin-inappbrowser/pull/881) fix(ios): make system open tel, sms, mailto and geo links
47
+
48
+ ### 5.0.0 (Feb 10, 2021)
49
+ * [GH-828](https://github.com/apache/cordova-plugin-inappbrowser/pull/828) feat(ios): add `InAppBrowser`StatusBarStyle 'darkcontent' configuration option
50
+ * [GH-823](https://github.com/apache/cordova-plugin-inappbrowser/pull/823) chore: bump engines requirements
51
+ * [GH-824](https://github.com/apache/cordova-plugin-inappbrowser/pull/824) breaking: cleanup code for old **Android** versions
52
+ * [GH-825](https://github.com/apache/cordova-plugin-inappbrowser/pull/825) (ios): rename CDVWKProcessPoolFactory
53
+ * [GH-826](https://github.com/apache/cordova-plugin-inappbrowser/pull/826) ci: add node-14.x to workflow
54
+ * [GH-821](https://github.com/apache/cordova-plugin-inappbrowser/pull/821) breaking(android): replace magic numbers with **Android**.os.Build constants
55
+ * [GH-717](https://github.com/apache/cordova-plugin-inappbrowser/pull/717) ci(ios): remove wkwebview plugin
56
+
57
+ ### 4.1.0 (Nov 17, 2020)
58
+ * [GH-792](https://github.com/apache/cordova-plugin-inappbrowser/pull/792) fix(android): Add mitigation strategy for CVE-2020-6506
59
+ * [GH-817](https://github.com/apache/cordova-plugin-inappbrowser/pull/817) Updated typings
60
+ * [GH-803](https://github.com/apache/cordova-plugin-inappbrowser/pull/803) fix(android): allow compilation in old `cordova-android` versions
61
+ * [GH-688](https://github.com/apache/cordova-plugin-inappbrowser/pull/688) (ios): allow to set "preferredContentMode"
62
+ * [GH-768](https://github.com/apache/cordova-plugin-inappbrowser/pull/768) ci(travis): update osx xcode image
63
+ * add documentation for `InAppBrowser`StatusBarStyle preference
64
+ * undo whitespace changes due to editor preferrences
65
+ * [GH-728](https://github.com/apache/cordova-plugin-inappbrowser/pull/728) **iOS**: added `InAppBrowser`StatusBarStyle preference
66
+ * [GH-767](https://github.com/apache/cordova-plugin-inappbrowser/pull/767) ci(travis): updates **Android** API level
67
+ * (ios): Fix incorrect view height from the second open time
68
+ * [GH-748](https://github.com/apache/cordova-plugin-inappbrowser/pull/748) chore: adds package-lock file
69
+ * [GH-746](https://github.com/apache/cordova-plugin-inappbrowser/pull/746) chore(npm): use short notation in `package.json`
70
+ * [GH-747](https://github.com/apache/cordova-plugin-inappbrowser/pull/747) refactor(eslint): use cordova-eslint /w fix
71
+ * [GH-737](https://github.com/apache/cordova-plugin-inappbrowser/pull/737) fix(ios): exit event not fired on swipe down
72
+
73
+ ### 4.0.0 (Jun 09, 2020)
74
+ * [GH-715](https://github.com/apache/cordova-plugin-inappbrowser/pull/715) (ios): fix regression in 2706f34
75
+ * [GH-685](https://github.com/apache/cordova-plugin-inappbrowser/pull/685) chore: update install engines
76
+ * [GH-656](https://github.com/apache/cordova-plugin-inappbrowser/pull/656) (ios) Remove fake status bar with hardcoded height to fix issues in **iOS** devices with a notch
77
+ * [GH-693](https://github.com/apache/cordova-plugin-inappbrowser/pull/693) fix(ios): Allow loading local html files
78
+ * [GH-293](https://github.com/apache/cordova-plugin-inappbrowser/pull/293) **Android**: SSL errors handling in **Android**
79
+ * [GH-672](https://github.com/apache/cordova-plugin-inappbrowser/pull/672) fix(ios): prevent statusbar rotation after closing `InAppBrowser`
80
+ * chore(asf): update git notification settings
81
+ * [GH-669](https://github.com/apache/cordova-plugin-inappbrowser/pull/669) Allow App using `InAppBrowser` to be hosted in a cross-origin iframe
82
+ * [GH-600](https://github.com/apache/cordova-plugin-inappbrowser/pull/600) (all platforms): remove "window.open" overwrite
83
+ * [GH-670](https://github.com/apache/cordova-plugin-inappbrowser/pull/670) chore: bump version to 4.0.0-dev
84
+ * Update CONTRIBUTING.md
85
+ * [GH-662](https://github.com/apache/cordova-plugin-inappbrowser/pull/662) docs: replaces outdated transition and presentation style links
86
+ * [GH-666](https://github.com/apache/cordova-plugin-inappbrowser/pull/666) chore: remove deprecated orientation methods
87
+ * [GH-515](https://github.com/apache/cordova-plugin-inappbrowser/pull/515) Fix incorrect TypeScript typings
88
+ * [GH-654](https://github.com/apache/cordova-plugin-inappbrowser/pull/654) add check for openInSystem postNotification
89
+ * [GH-659](https://github.com/apache/cordova-plugin-inappbrowser/pull/659) ci: updates Node.js versions
90
+ * [GH-658](https://github.com/apache/cordova-plugin-inappbrowser/pull/658) chore(npm): improve ignore list
91
+ * [GH-442](https://github.com/apache/cordova-plugin-inappbrowser/pull/442) fix(android): Reset lefttoright if not set
92
+ * [GH-648](https://github.com/apache/cordova-plugin-inappbrowser/pull/648) (android) Correcting the documentation regarding lefttoright opt…
93
+ * [GH-634](https://github.com/apache/cordova-plugin-inappbrowser/pull/634) (android) Added option to turn on/off fullscreen mode in **Android**
94
+ * [GH-616](https://github.com/apache/cordova-plugin-inappbrowser/pull/616) (android) `InAppBrowser`: java.lang.IllegalArgumentException
95
+ * [GH-635](https://github.com/apache/cordova-plugin-inappbrowser/pull/635) breaking(ios): remove UIWebView
96
+
97
+ ### 3.2.0 (Jan 04, 2020)
98
+ * [GH-503](https://github.com/apache/cordova-plugin-inappbrowser/pull/503) Defensive code to prevent NULL reference exceptions for async
99
+ * [GH-584](https://github.com/apache/cordova-plugin-inappbrowser/pull/584) Add compile-time decision for disabling UIWebView
100
+ * [GH-524](https://github.com/apache/cordova-plugin-inappbrowser/pull/524) Replace "beforeload" with BEFORELOAD
101
+ * [GH-568](https://github.com/apache/cordova-plugin-inappbrowser/pull/568) Update missing closed brace to the insert.CSS
102
+ * [GH-401](https://github.com/apache/cordova-plugin-inappbrowser/pull/401) Move createIframeBridge to injectDeferredObject
103
+ * [GH-534](https://github.com/apache/cordova-plugin-inappbrowser/pull/534) Fix `InAppBrowser` not opening on **iOS** 13
104
+ * ci(travis) Upgrade to node8
105
+
106
+ ### 3.1.0 (Jun 27, 2019)
107
+
108
+ - chore: fix repo and issue urls and license in package.json and plugin.xml ([`8edfb9e`](https://github.com/apache/cordova-plugin-inappbrowser/commit/8edfb9e))
109
+ - chore: unknown changes because of linebreak change in binary files ([`e44ad91`](https://github.com/apache/cordova-plugin-inappbrowser/commit/e44ad91))
110
+ - build: add `.npmignore` to remove unneeded files from npm package ([`0ec4a11`](https://github.com/apache/cordova-plugin-inappbrowser/commit/0ec4a11))
111
+ - build: add `.gitattributes` to force LF (instead of possible CRLF on Windows) ([`2751255`](https://github.com/apache/cordova-plugin-inappbrowser/commit/2751255))
112
+ - ci(travis): Update Travis CI configuration for new paramedic ([#478](https://github.com/apache/cordova-plugin-inappbrowser/issues/478)) ([`c2bb6c1`](https://github.com/apache/cordova-plugin-inappbrowser/commit/c2bb6c1))
113
+ - docs: remove outdated translations ([`cc5ee00`](https://github.com/apache/cordova-plugin-inappbrowser/commit/cc5ee00))
114
+ - fix(android): Fix beforeload for Android &lt;= 7 ([#427](https://github.com/apache/cordova-plugin-inappbrowser/issues/427)) ([`94fec84`](https://github.com/apache/cordova-plugin-inappbrowser/commit/94fec84))
115
+ - ci(travis) Fix failing CI tests ([#460](https://github.com/apache/cordova-plugin-inappbrowser/issues/460)) ([`a162bd9`](https://github.com/apache/cordova-plugin-inappbrowser/commit/a162bd9))
116
+ - test: Fix test spec.5 to close inappbrowser after loadstop event ([#440](https://github.com/apache/cordova-plugin-inappbrowser/issues/440)) ([`5f1afbd`](https://github.com/apache/cordova-plugin-inappbrowser/commit/5f1afbd), [`af44235`](https://github.com/apache/cordova-plugin-inappbrowser/commit/af44235))
117
+ - fix(android): Prevent malformed callbackId from reaching app cordova view ([#436](https://github.com/apache/cordova-plugin-inappbrowser/issues/436)) ([`6861084`](https://github.com/apache/cordova-plugin-inappbrowser/commit/6861084), [`c95dbcb`](https://github.com/apache/cordova-plugin-inappbrowser/commit/c95dbcb))
118
+ - feat: [CB-13969](https://issues.apache.org/jira/browse/CB-13969): Allow close button and navigation buttons positions to be swapped ([#262](https://github.com/apache/cordova-plugin-inappbrowser/issues/262)) ([`d01bd25`](https://github.com/apache/cordova-plugin-inappbrowser/commit/d01bd25), [`f861655`](https://github.com/apache/cordova-plugin-inappbrowser/commit/f861655), [`9c7c2f3`](https://github.com/apache/cordova-plugin-inappbrowser/commit/9c7c2f3), [`3c0a42e`](https://github.com/apache/cordova-plugin-inappbrowser/commit/3c0a42e), [`5359f6c`](https://github.com/apache/cordova-plugin-inappbrowser/commit/5359f6c), [`df84dda`](https://github.com/apache/cordova-plugin-inappbrowser/commit/df84dda), [`2bcec40`](https://github.com/apache/cordova-plugin-inappbrowser/commit/2bcec40), [`fc0c560`](https://github.com/apache/cordova-plugin-inappbrowser/commit/fc0c560), [`5ead1e6`](https://github.com/apache/cordova-plugin-inappbrowser/commit/5ead1e6), [`c7931fa`](https://github.com/apache/cordova-plugin-inappbrowser/commit/c7931fa), [`e2adf1b`](https://github.com/apache/cordova-plugin-inappbrowser/commit/e2adf1b), [`4adf4c7`](https://github.com/apache/cordova-plugin-inappbrowser/commit/4adf4c7), [`cbe3a42`](https://github.com/apache/cordova-plugin-inappbrowser/commit/cbe3a42), [`74ccef1`](https://github.com/apache/cordova-plugin-inappbrowser/commit/74ccef1), [`ec6af56`](https://github.com/apache/cordova-plugin-inappbrowser/commit/ec6af56), [`b06ad8e`](https://github.com/apache/cordova-plugin-inappbrowser/commit/b06ad8e), [`313e0ae`](https://github.com/apache/cordova-plugin-inappbrowser/commit/313e0ae), [`05e37a1`](https://github.com/apache/cordova-plugin-inappbrowser/commit/05e37a1), [`0c6189e`](https://github.com/apache/cordova-plugin-inappbrowser/commit/0c6189e), [`d940b59`](https://github.com/apache/cordova-plugin-inappbrowser/commit/d940b59), [`f3d7f72`](https://github.com/apache/cordova-plugin-inappbrowser/commit/f3d7f72))
119
+ - docs: Add headline to window.open documentation ([#406](https://github.com/apache/cordova-plugin-inappbrowser/issues/406)) ([`92243cd`](https://github.com/apache/cordova-plugin-inappbrowser/commit/92243cd))
120
+ - fix(ios): Fix iframes in iOS/WKWebView which were broken by [#418](https://github.com/apache/cordova-plugin-inappbrowser/issues/418) ([#425](https://github.com/apache/cordova-plugin-inappbrowser/issues/425)) ([`388e3f6`](https://github.com/apache/cordova-plugin-inappbrowser/commit/388e3f6))
121
+ - chore(github): Add or update GitHub pull request and issue template ([`ae329bc`](https://github.com/apache/cordova-plugin-inappbrowser/commit/ae329bc))
122
+ - fix(ios): Handle non-default target attribute values (e.g. target=on links in WKWebView implementation on iOS ([#418](https://github.com/apache/cordova-plugin-inappbrowser/issues/418)) ([`9f4b729`](https://github.com/apache/cordova-plugin-inappbrowser/commit/9f4b729))
123
+ - fix(types): remove unused replace parameter ([#410](https://github.com/apache/cordova-plugin-inappbrowser/issues/410)) ([`6db2f2d`](https://github.com/apache/cordova-plugin-inappbrowser/commit/6db2f2d))
124
+ - documentation: Example documentation - Fix callBack function name ([#383](https://github.com/apache/cordova-plugin-inappbrowser/issues/383)) ([`a890e60`](https://github.com/apache/cordova-plugin-inappbrowser/commit/a890e60), [`2500b08`](https://github.com/apache/cordova-plugin-inappbrowser/commit/2500b08))
125
+ - fix: Fix beforeload to work with POST requests ([#367](https://github.com/apache/cordova-plugin-inappbrowser/issues/367)) ([`632a395`](https://github.com/apache/cordova-plugin-inappbrowser/commit/632a395))
126
+ - feat: (iOS & Android) Add postMessage API support ([#362](https://github.com/apache/cordova-plugin-inappbrowser/issues/362)) ([`c54d100`](https://github.com/apache/cordova-plugin-inappbrowser/commit/c54d100))
127
+ - fix(ios): Fixes loadAfterBeforeload on iOS. ([#350](https://github.com/apache/cordova-plugin-inappbrowser/issues/350)) ([`0fd43ae`](https://github.com/apache/cordova-plugin-inappbrowser/commit/0fd43ae))
128
+ - fix(ios): Fix crashes when using WKWebView implementation on iOS 9. ([#337](https://github.com/apache/cordova-plugin-inappbrowser/issues/337)) ([`3b82c16`](https://github.com/apache/cordova-plugin-inappbrowser/commit/3b82c16))
129
+ - fix(ios): Fix iOS CDVWKInAppBrowser evaluateJavascript method randomly gets blocked on ios 12 ([#341](https://github.com/apache/cordova-plugin-inappbrowser/issues/341)) ([`978b147`](https://github.com/apache/cordova-plugin-inappbrowser/commit/978b147))
130
+ - docs: remove unwanted information in README table ([#308](https://github.com/apache/cordova-plugin-inappbrowser/issues/308)) ([`3eadde6`](https://github.com/apache/cordova-plugin-inappbrowser/commit/3eadde6))
131
+ - fix(ios): This lets the default window layering do it's thing. ([#336](https://github.com/apache/cordova-plugin-inappbrowser/issues/336)) ([`c24bb46`](https://github.com/apache/cordova-plugin-inappbrowser/commit/c24bb46), [`27fe8ec`](https://github.com/apache/cordova-plugin-inappbrowser/commit/27fe8ec))
132
+ - feat(ios): [CB-7179](https://issues.apache.org/jira/browse/CB-7179) (iOS): Add optional WKWebView support for iOS ([#271](https://github.com/apache/cordova-plugin-inappbrowser/issues/271)) ([`10a0669`](https://github.com/apache/cordova-plugin-inappbrowser/commit/10a0669), [`3927b8f`](https://github.com/apache/cordova-plugin-inappbrowser/commit/3927b8f), [`8248215`](https://github.com/apache/cordova-plugin-inappbrowser/commit/8248215), [`61014dd`](https://github.com/apache/cordova-plugin-inappbrowser/commit/61014dd), [`c41f5b5`](https://github.com/apache/cordova-plugin-inappbrowser/commit/c41f5b5), [`19c6dfe`](https://github.com/apache/cordova-plugin-inappbrowser/commit/19c6dfe), [`7f5fa2a`](https://github.com/apache/cordova-plugin-inappbrowser/commit/7f5fa2a), [`5d2df21`](https://github.com/apache/cordova-plugin-inappbrowser/commit/5d2df21), [`86cc778`](https://github.com/apache/cordova-plugin-inappbrowser/commit/86cc778), [`cbfa195`](https://github.com/apache/cordova-plugin-inappbrowser/commit/cbfa195), [`52e3534`](https://github.com/apache/cordova-plugin-inappbrowser/commit/52e3534), [`8165232`](https://github.com/apache/cordova-plugin-inappbrowser/commit/8165232), [`e2210bd`](https://github.com/apache/cordova-plugin-inappbrowser/commit/e2210bd), [`dc7fa34`](https://github.com/apache/cordova-plugin-inappbrowser/commit/dc7fa34), [`b48e02f`](https://github.com/apache/cordova-plugin-inappbrowser/commit/b48e02f), [`27e6c67`](https://github.com/apache/cordova-plugin-inappbrowser/commit/27e6c67))
133
+ - docs: remove JIRA link ([`d9cafcd`](https://github.com/apache/cordova-plugin-inappbrowser/commit/d9cafcd))
134
+ - chore(types): [CB-12941](https://issues.apache.org/jira/browse/CB-12941): update typings ([#267](https://github.com/apache/cordova-plugin-inappbrowser/issues/267)) ([`a0c267f`](https://github.com/apache/cordova-plugin-inappbrowser/commit/a0c267f))
135
+ - feat: [CB-14188](https://issues.apache.org/jira/browse/CB-14188): add beforeload event, catching navigation before it happens ([#276](https://github.com/apache/cordova-plugin-inappbrowser/issues/276)) ([`228703a`](https://github.com/apache/cordova-plugin-inappbrowser/commit/228703a), [`eafaeda`](https://github.com/apache/cordova-plugin-inappbrowser/commit/eafaeda))
136
+ - ci(travis): reenable testing on all platforms ([`0ed0bf5`](https://github.com/apache/cordova-plugin-inappbrowser/commit/0ed0bf5))
137
+ - ci(travis): also accept terms for android sdk `android-27` ([`f8ad528`](https://github.com/apache/cordova-plugin-inappbrowser/commit/f8ad528))
138
+ - fix(android): [CB-10795](https://issues.apache.org/jira/browse/CB-10795): Exclude current app from external intent list ([#154](https://github.com/apache/cordova-plugin-inappbrowser/issues/154)) ([`a078337`](https://github.com/apache/cordova-plugin-inappbrowser/commit/a078337))
139
+ - fix(ios): [CB-14234](https://issues.apache.org/jira/browse/CB-14234): Don't call handleOpenURL for system URLs ([#278](https://github.com/apache/cordova-plugin-inappbrowser/issues/278)) ([`cf58b04`](https://github.com/apache/cordova-plugin-inappbrowser/commit/cf58b04))
140
+ - fix(ios): [CB-12875](https://issues.apache.org/jira/browse/CB-12875): (iOS) Pushes the inappbrowser window to a higher ui level than the existing apps window. ([#284](https://github.com/apache/cordova-plugin-inappbrowser/issues/284)) ([`dc5329d`](https://github.com/apache/cordova-plugin-inappbrowser/commit/dc5329d))
141
+ - ci: Quick CI fixes ([#277](https://github.com/apache/cordova-plugin-inappbrowser/issues/277)) ([`de86501`](https://github.com/apache/cordova-plugin-inappbrowser/commit/de86501), [`07d9a99`](https://github.com/apache/cordova-plugin-inappbrowser/commit/07d9a99), [`81f1437`](https://github.com/apache/cordova-plugin-inappbrowser/commit/81f1437), [`a464ea6`](https://github.com/apache/cordova-plugin-inappbrowser/commit/a464ea6), [`e75fe14`](https://github.com/apache/cordova-plugin-inappbrowser/commit/e75fe14), [`eb245ec`](https://github.com/apache/cordova-plugin-inappbrowser/commit/eb245ec))
142
+ - fix(ios): [CB-12922](https://issues.apache.org/jira/browse/CB-12922) (ios): fix In-app browser does not cede control ([#272](https://github.com/apache/cordova-plugin-inappbrowser/issues/272)) ([`dac06aa`](https://github.com/apache/cordova-plugin-inappbrowser/commit/dac06aa), [`9cc7f69`](https://github.com/apache/cordova-plugin-inappbrowser/commit/9cc7f69))
143
+ - fix(android): [CB-14061](https://issues.apache.org/jira/browse/CB-14061): (android) comply with RFC 3986 for custom URL scheme handling ([#269](https://github.com/apache/cordova-plugin-inappbrowser/issues/269)) ([`f57ede9`](https://github.com/apache/cordova-plugin-inappbrowser/commit/f57ede9), [`26cf6e4`](https://github.com/apache/cordova-plugin-inappbrowser/commit/26cf6e4))
144
+ - fix(android): [CB-14048](https://issues.apache.org/jira/browse/CB-14048): (android) allowedSchemes check empty string fix ([#268](https://github.com/apache/cordova-plugin-inappbrowser/issues/268)) ([`57eda78`](https://github.com/apache/cordova-plugin-inappbrowser/commit/57eda78), [`33aff11`](https://github.com/apache/cordova-plugin-inappbrowser/commit/33aff11))
145
+
146
+
147
+ ### 3.0.0 (Apr 12, 2018)
148
+ * [CB-13659](https://issues.apache.org/jira/browse/CB-13659) **iOS** Add hidespinner option
149
+ * In file `AppBrowser.java`: New code within `shouldOverrideUrlLoading()` to check for whitelisting custom schemes via a new `AllowedSchemes` preference configuration item. Allows custom schemes like `mycoolapp://` or `wevotetwitterscheme://`
150
+ * `InAppBrowser.java`: New method `isURLWhileListed` to check for whitelisting of `AllowedSchemes` in a new preference configuration item. There is a new check in `shouldOverrideUrlLoading`, to allow whitelisted custom schemes like "mycoolapp://"
151
+ * Add customisation of the navigation buttons for **iOS**
152
+ * Fix navigation buttons on **iOS**
153
+
154
+ ### 2.0.2 (Jan 24, 2018)
155
+ * [CB-13791](https://issues.apache.org/jira/browse/CB-13791) Add **Android** support for a footer close button
156
+ * [CB-13409](https://issues.apache.org/jira/browse/CB-13409) restore gitignore to default
157
+ * [CB-13409](https://issues.apache.org/jira/browse/CB-13409) restore gitignore to default
158
+ * [CB-13409](https://issues.apache.org/jira/browse/CB-13409) restore gitignore to default
159
+ * [CB-13409](https://issues.apache.org/jira/browse/CB-13409) restore gitignore to default
160
+ * [CB-13409](https://issues.apache.org/jira/browse/CB-13409) ignore idea folder
161
+ * [CB-13409](https://issues.apache.org/jira/browse/CB-13409) change hidetoolbarnavigationbuttons to hidenavigationbuttons in iso
162
+ * [CB-13409](https://issues.apache.org/jira/browse/CB-13409) **Android** works well now, all changes are now documented
163
+ * [CB-13409](https://issues.apache.org/jira/browse/CB-13409) Lets user adjust color of toolbar, hide navigation buttons and set custom text on close button
164
+ * [CB-13746](https://issues.apache.org/jira/browse/CB-13746) Add build-tools-26.0.2 to travis
165
+
166
+ ### 2.0.1 (Dec 27, 2017)
167
+ * [CB-13699](https://issues.apache.org/jira/browse/CB-13699) Fix to allow 2.0.0 version install
168
+
169
+ ### 2.0.0 (Dec 15, 2017)
170
+ * [CB-13662](https://issues.apache.org/jira/browse/CB-13662) remove deprecated platforms
171
+
172
+ ### 1.7.2 (Nov 06, 2017)
173
+ * [CB-13473](https://issues.apache.org/jira/browse/CB-13473) (CI) Removed **Browser** builds from AppVeyor
174
+ * [CB-13472](https://issues.apache.org/jira/browse/CB-13472) (CI) Fixed Travis **Android** builds again
175
+ * [CB-13347](https://issues.apache.org/jira/browse/CB-13347) Enable thirdparty cookies on `>=Android 5.0` device
176
+ * [CB-12895](https://issues.apache.org/jira/browse/CB-12895) added `eslint` and removed `jshint`
177
+ * [CB-12975](https://issues.apache.org/jira/browse/CB-12975) (docs) Resort and reword `cordova.InAppBrowser.open` `options` lists
178
+ * [CB-12586](https://issues.apache.org/jira/browse/CB-12586) (iOS) fix method `hide` doesn't work
179
+ * [CB-12847](https://issues.apache.org/jira/browse/CB-12847) added `bugs` entry to `package.json`.
180
+
181
+ ### 1.7.1 (Apr 27, 2017)
182
+ * [CB-12622](https://issues.apache.org/jira/browse/CB-12622) Added **Android 6.0** build badges to `README`
183
+ * [CB-12266](https://issues.apache.org/jira/browse/CB-12266) (browser platform) loadstop event.url is now a string instead of an object, aligning it with the other platforms.
184
+ * [CB-12685](https://issues.apache.org/jira/browse/CB-12685) added `package.json` to tests folder
185
+ * [CB-11248](https://issues.apache.org/jira/browse/CB-11248) `InAppBrowser` no focus on input text fields
186
+
187
+ ### 1.7.0 (Feb 28, 2017)
188
+ * [CB-12366](https://issues.apache.org/jira/browse/CB-12366) **iOS:** Reduce `tmpWindow` level to prevent overlapping statusbar
189
+ * [CB-12364](https://issues.apache.org/jira/browse/CB-12364) **Windows:** `Inappbrowser` inject file manual tests are not working
190
+ * [CB-12353](https://issues.apache.org/jira/browse/CB-12353) Corrected merges usage in `plugin.xml`
191
+ * [CB-12369](https://issues.apache.org/jira/browse/CB-12369) Add plugin typings from `DefinitelyTyped`
192
+ * [CB-12363](https://issues.apache.org/jira/browse/CB-12363) Added build badges for **iOS 9.3** and **iOS 10.0**
193
+ * [CB-9148](https://issues.apache.org/jira/browse/CB-9148) **Android:** Add Support for `input[type=file]` File Chooser
194
+ * [CB-11136](https://issues.apache.org/jira/browse/CB-11136) (ios) Fix `InAppBrowser` when closing with `WKWebView`
195
+ * [CB-10799](https://issues.apache.org/jira/browse/CB-10799) **iOS:** fix toolbar is shown in incorrect position when in-call status bar
196
+
197
+ ### 1.6.1 (Dec 14, 2016)
198
+ * [CB-12237](https://issues.apache.org/jira/browse/CB-12237) - Update version in package.json to correct 1.6.1-dev
199
+ * [CB-12236](https://issues.apache.org/jira/browse/CB-12236) - Fixed RELEASENOTES for cordova-plugin-inappbrowser
200
+ * [CB-12230](https://issues.apache.org/jira/browse/CB-12230) Removed Windows 8.1 build badges
201
+ * [CB-12224](https://issues.apache.org/jira/browse/CB-12224) Incremented plugin version.
202
+
203
+ ### 1.6.0 (Dec 07, 2016)
204
+ * [CB-12224](https://issues.apache.org/jira/browse/CB-12224) Updated version and RELEASENOTES.md for release 1.6.0
205
+ * [CB-7608](https://issues.apache.org/jira/browse/CB-7608) (android) document useWidthViewPort
206
+ * add option useWidthViewPort
207
+ * [CB-12184](https://issues.apache.org/jira/browse/CB-12184) executeScript leads to a null pointer on exception on Android.
208
+ * fix(close button): Set correct content description
209
+ * [CB-9274](https://issues.apache.org/jira/browse/CB-9274) Adds missing methods to InAppBrowser to allow compilation for Amazon FireOS.
210
+ * [CB-10973](https://issues.apache.org/jira/browse/CB-10973) inAppBrowser for Windows Platform: wrong height of webview with location=yes
211
+ * Increment plugin minor version because of new hide feature
212
+ * removed duplicate hide method in ios source and add jasmine test cases
213
+ * [CB-8467](https://issues.apache.org/jira/browse/CB-8467)
214
+ * [CB-12010](https://issues.apache.org/jira/browse/CB-12010) (android) Catch FileUriExposedException
215
+ * [CB-11955](https://issues.apache.org/jira/browse/CB-11955) Added Initial OSX platform support
216
+ * [CB-11917](https://issues.apache.org/jira/browse/CB-11917) - Remove pull request template checklist item: "iCLA has been signed and submitted to secretary@apache.org."
217
+ * [CB-11694](https://issues.apache.org/jira/browse/CB-11694) Android: Set hadwareBackButton value according option in cordova.InAppBrowser.open
218
+ * [CB-11832](https://issues.apache.org/jira/browse/CB-11832) Incremented plugin version.
219
+
220
+ ### 1.5.1 (Dec 07, 2016)
221
+ * [CB-7608](https://issues.apache.org/jira/browse/CB-7608) (android) document useWidthViewPort
222
+ * add option useWidthViewPort
223
+ * [CB-12184](https://issues.apache.org/jira/browse/CB-12184) executeScript leads to a null pointer on exception on Android.
224
+ * fix(close button): Set correct content description
225
+ * [CB-9274](https://issues.apache.org/jira/browse/CB-9274) Adds missing methods to InAppBrowser to allow compilation for Amazon FireOS.
226
+ * [CB-10973](https://issues.apache.org/jira/browse/CB-10973) inAppBrowser for Windows Platform: wrong height of webview with location=yes
227
+ * Increment plugin minor version because of new hide feature
228
+ * removed duplicate hide method in ios source and add jasmine test cases
229
+ * [CB-8467](https://issues.apache.org/jira/browse/CB-8467)
230
+ * [CB-12010](https://issues.apache.org/jira/browse/CB-12010) (android) Catch FileUriExposedException
231
+ * [CB-11955](https://issues.apache.org/jira/browse/CB-11955) Added Initial OSX platform support
232
+ * [CB-11917](https://issues.apache.org/jira/browse/CB-11917) - Remove pull request template checklist item: "iCLA has been signed and submitted to secretary@apache.org."
233
+ * [CB-11694](https://issues.apache.org/jira/browse/CB-11694) Android: Set hadwareBackButton value according option in cordova.InAppBrowser.open
234
+ * [CB-11832](https://issues.apache.org/jira/browse/CB-11832) Incremented plugin version.
235
+ * [CB-11832](https://issues.apache.org/jira/browse/CB-11832) Updated version and RELEASENOTES.md for release 1.5.0
236
+ * [CB-11795](https://issues.apache.org/jira/browse/CB-11795) Add 'protective' entry to cordovaDependencies
237
+ * Closing invalid pull request: close #28
238
+ * Closing invalid pull request: close #78
239
+ * Add intent scheme to be handled by OS
240
+ * Plugin uses Android Log class and not Cordova LOG class
241
+ * Adding links to guide content and reference content at the top of the readme file Github: close #163
242
+ * [CB-10973](https://issues.apache.org/jira/browse/CB-10973) inAppBrowser for Browser Platform: wrong height of webview with location=yes
243
+ * Size and position in browser platform
244
+ * [CB-10973](https://issues.apache.org/jira/browse/CB-10973) inAppBrowser for Windows Platform: wrong height of webview with location=yes
245
+ * [CB-11013](https://issues.apache.org/jira/browse/CB-11013) IAB enabling background play of YouTube videos?
246
+ * [CB-10467](https://issues.apache.org/jira/browse/CB-10467) Hardware back button, while InAppBrowser is opened, closes the app too in addition to closing InAppBrowser
247
+ * [CB-11178](https://issues.apache.org/jira/browse/CB-11178) allow to open other apps on iOS 9
248
+ * Closing stale pull request: close #152
249
+ * fix some calls which used api level 16
250
+ * [CB-5402](https://issues.apache.org/jira/browse/CB-5402) added extra content from wiki page
251
+ * doc: do not use `with` in JS samples
252
+ * Closing stale pull request: close #90
253
+ * [CB-2063](https://issues.apache.org/jira/browse/CB-2063) (ios) Fixed presentation style
254
+ * [CB-11012](https://issues.apache.org/jira/browse/CB-11012) added some clarifications about InAppBrowser object
255
+ * [CB-3360](https://issues.apache.org/jira/browse/CB-3360) Set custom inappbrowser user agent for ios
256
+ * Add badges for paramedic builds on Jenkins
257
+ * [CB-11381](https://issues.apache.org/jira/browse/CB-11381) android: Does not pass sonarqube scan
258
+ * Add pull request template.
259
+ * [CB-10866](https://issues.apache.org/jira/browse/CB-10866) Adding engine requirements to package.json
260
+ * [CB-110003](https://issues.apache.org/jira/browse/CB-110003) Adding samples to Readme.
261
+ * [CB-10996](https://issues.apache.org/jira/browse/CB-10996) Adding front matter to README.md
262
+ * [CB-11091](https://issues.apache.org/jira/browse/CB-11091) Incremented plugin version.
263
+ * Updated version and RELEASENOTES.md for release 1.4.0
264
+ * [CB-7679](https://issues.apache.org/jira/browse/CB-7679) add fix for iOS upload. This closes #139
265
+ * [CB-10944](https://issues.apache.org/jira/browse/CB-10944) : NoSuchMethodError in InAppBrowser plugin
266
+ * [CB-10937](https://issues.apache.org/jira/browse/CB-10937) fix stretched icons
267
+ * [CB-10760](https://issues.apache.org/jira/browse/CB-10760) Fixing README for display on Cordova website
268
+ * [CB-10636](https://issues.apache.org/jira/browse/CB-10636) Add JSHint for plugins
269
+ * Fixes [CB-10607](https://issues.apache.org/jira/browse/CB-10607)
270
+ * [CB-10557](https://issues.apache.org/jira/browse/CB-10557) Incremented plugin version.
271
+ * [CB-10557](https://issues.apache.org/jira/browse/CB-10557) Updated version and RELEASENOTES.md for release 1.3.0
272
+ * [CB-3360](https://issues.apache.org/jira/browse/CB-3360) Set custom inappbrowser user agent for android
273
+ * [CB-10538](https://issues.apache.org/jira/browse/CB-10538) cordova-plugin-inappbrowser timeout issue
274
+ * [CB-10395](https://issues.apache.org/jira/browse/CB-10395) InAppBrowser's WebView not storing cookies reliable on Android
275
+ * chore: edit package.json license to match SPDX id
276
+ * [CB-10305](https://issues.apache.org/jira/browse/CB-10305) Gray bar appears in the wrong place on iOS
277
+ * [CB-7786](https://issues.apache.org/jira/browse/CB-7786) Support mediaPlaybackRequiresUserAction on Android
278
+ * [CB-7500](https://issues.apache.org/jira/browse/CB-7500) executeScript with callback kills/blurs inAppBrowser window on Android
279
+ * [CB-10505](https://issues.apache.org/jira/browse/CB-10505) Incremented plugin version.
280
+ * [CB-10505](https://issues.apache.org/jira/browse/CB-10505) Updated version and RELEASENOTES.md for release 1.2.1
281
+ * handle app store urls in system browser
282
+ * Added missing plugin dependency for manual tests
283
+ * [CB-10451](https://issues.apache.org/jira/browse/CB-10451) InAppBrowser: loadstart event is not triggered on Windows [CB-10452](https://issues.apache.org/jira/browse/CB-10452) InAppBrowser: 'exit' event is not triggered on Windows [CB-10454](https://issues.apache.org/jira/browse/CB-10454) InAppBrowser: 'loaderror' event does not have code and message on Windows [CB-10450](https://issues.apache.org/jira/browse/CB-10450) InAppBrowser: Unable to get property 'canGoBack' of undefined on Windows
284
+ * [CB-6702](https://issues.apache.org/jira/browse/CB-6702) InAppBrowser hangs when opening more than one instance
285
+ * [CB-10456](https://issues.apache.org/jira/browse/CB-10456) InAppBrowser is not closed if I close it programmatically on Android
286
+ * [CB-10441](https://issues.apache.org/jira/browse/CB-10441) Add auto tests for InAppBrowser plugin
287
+ * [CB-10428](https://issues.apache.org/jira/browse/CB-10428) Fix syntax error when browserifying inAppBrowser plugin
288
+ * [CB-10407](https://issues.apache.org/jira/browse/CB-10407) Re-adding onPageStarted to re-add LOAD_START, even though it's in the wrong place
289
+ * [CB-10368](https://issues.apache.org/jira/browse/CB-10368) Incremented plugin version.
290
+ * [CB-10368](https://issues.apache.org/jira/browse/CB-10368) Updated version and RELEASENOTES.md for release 1.2.0
291
+ * [CB-8180](https://issues.apache.org/jira/browse/CB-8180) Changing methods of interception in WebViewClient class
292
+ * Fix lint warnings
293
+ * [CB-10009](https://issues.apache.org/jira/browse/CB-10009) Improve InAppBrowser toolbar look and feel on Windows
294
+ * Using modulemapper
295
+ * Open a new window on the browser platform
296
+ * [CB-10187](https://issues.apache.org/jira/browse/CB-10187) Incremented plugin version.
297
+ * [CB-10187](https://issues.apache.org/jira/browse/CB-10187) Updated version and RELEASENOTES.md for release 1.1.1
298
+ * [CB-9445](https://issues.apache.org/jira/browse/CB-9445) Improves executeScript callbacks on iOS
299
+ * [CB-10035](https://issues.apache.org/jira/browse/CB-10035) Incremented plugin version.
300
+ * [CB-10040](https://issues.apache.org/jira/browse/CB-10040) - re-fix: backwards compatible with cordova-ios < 4.0
301
+ * [CB-8534](https://issues.apache.org/jira/browse/CB-8534) Allow plugins to respond to onReceivedHttpAuthRequest. This closes #82
302
+ * [CB-3750](https://issues.apache.org/jira/browse/CB-3750) Fixes spinner on iOS. This closes #89
303
+ * [CB-7696](https://issues.apache.org/jira/browse/CB-7696) Document target=_self behavior for Windows
304
+ * [CB-10040](https://issues.apache.org/jira/browse/CB-10040) - Compile Error in InAppBrowser Plugin for iOS - No known instance method for selector 'URLIsWhitelisted:'
305
+ * [CB-10035](https://issues.apache.org/jira/browse/CB-10035) linked issues in RELEASENOTES.md
306
+ * [CB-10035](https://issues.apache.org/jira/browse/CB-10035) Updated version and RELEASENOTES.md for release 1.1.0
307
+ * removed r prefix from tags
308
+ * weak ref type was wrong
309
+ * [CB-10035](https://issues.apache.org/jira/browse/CB-10035) Updated RELEASENOTES to be newest to oldest
310
+ * Close #91
311
+ * Close #85
312
+ * Invoke webview if using local file
313
+ * Fixed zIndex issue on Windows 8, 8.1 where InAppBrowser opens behind default app.
314
+ * fix async self usage
315
+ * [CB-9150](https://issues.apache.org/jira/browse/CB-9150) Fix InAppBrowser executeScript crash on Windows if no data returned
316
+ * [CB-10008](https://issues.apache.org/jira/browse/CB-10008) Fix InAppBrowser popup layout on Windows
317
+ * InAppBrowser, iOS: Setting setStatusBarStyle to -1 causes CGContextSaveGState.
318
+ * Fix crash on browser window close (https://issues.apache.org/jira/browse/CB-9167)
319
+ * Close #113
320
+ * add JIRA issue tracker link
321
+ * [CB-9799](https://issues.apache.org/jira/browse/CB-9799) Fixed javaDoc errors.. This closes #119
322
+ * Actually fixing the contribute link.
323
+ * Fixing contribute link.
324
+ * [CB-9760](https://issues.apache.org/jira/browse/CB-9760) InAppBrowser: fallback to default window.open behavior on Ripple
325
+ * Close #114
326
+ * [CB-9378](https://issues.apache.org/jira/browse/CB-9378) Fix InAppBrowser not taking whole screen on Windows
327
+ * remove travis-ci
328
+ * [CB-9158](https://issues.apache.org/jira/browse/CB-9158) - InAppBrowser zoomControls are always set to true
329
+ * [CB-9192](https://issues.apache.org/jira/browse/CB-9192) Incremented plugin version.
330
+ * [CB-9202](https://issues.apache.org/jira/browse/CB-9202) updated repo url to github mirror in package.json
331
+ * [CB-9192](https://issues.apache.org/jira/browse/CB-9192) Updated version and RELEASENOTES.md for release 1.0.1
332
+ * [CB-9128](https://issues.apache.org/jira/browse/CB-9128) cordova-plugin-inappbrowser documentation translation: cordova-plugin-inappbrowser
333
+ * fix npm md issue
334
+ * [CB-8858](https://issues.apache.org/jira/browse/CB-8858) Incremented plugin version.
335
+ * [CB-8858](https://issues.apache.org/jira/browse/CB-8858) Updated version in package.json for release 1.0.0
336
+ * Revert "CB-8858 Incremented plugin version."
337
+ * [CB-8858](https://issues.apache.org/jira/browse/CB-8858) Incremented plugin version.
338
+ * [CB-8858](https://issues.apache.org/jira/browse/CB-8858) Updated version and RELEASENOTES.md for release 1.0.0
339
+ * [CB-8746](https://issues.apache.org/jira/browse/CB-8746) gave plugin major version bump
340
+ * [CB-7689](https://issues.apache.org/jira/browse/CB-7689) Adds insertCSS support for windows platform
341
+ * [CB-4930](https://issues.apache.org/jira/browse/CB-4930) - (prefix) InAppBrowser should take into account the status bar
342
+ * [CB-8635](https://issues.apache.org/jira/browse/CB-8635) Improves UX on windows platform
343
+ * [CB-8661](https://issues.apache.org/jira/browse/CB-8661) Return executed script result on Windows
344
+ * [CB-8683](https://issues.apache.org/jira/browse/CB-8683) updated wp and browser specific references of old id to new id
345
+ * [CB-8683](https://issues.apache.org/jira/browse/CB-8683) changed plugin-id to pacakge-name
346
+ * [CB-8653](https://issues.apache.org/jira/browse/CB-8653) properly updated translated docs to use new id
347
+ * [CB-8653](https://issues.apache.org/jira/browse/CB-8653) updated translated docs to use new id
348
+ * Use TRAVIS_BUILD_DIR, install paramedic by npm
349
+ * [CB-8432](https://issues.apache.org/jira/browse/CB-8432) Correct styles for browser wrapper to display it correctly on some pages
350
+ * [CB-8659](https://issues.apache.org/jira/browse/CB-8659) - Update InAppBrowser to support both cordova-ios 4.0.x and 3.x (closes #93)
351
+ * [CB-7961](https://issues.apache.org/jira/browse/CB-7961) Add cordova-plugin-inappbrowser support for browser platform
352
+ * [CB-8653](https://issues.apache.org/jira/browse/CB-8653) Updated Readme
353
+ * Update docs for Android zoom=no option
354
+ * Added option to disable/enable zoom controls
355
+ * updated docs, set hardwareback default to true
356
+ * Add a hardwareback option to allow for the hardware back button to go back.
357
+ * [CB-8570](https://issues.apache.org/jira/browse/CB-8570) Integrate TravisCI
358
+ * [CB-8438](https://issues.apache.org/jira/browse/CB-8438) cordova-plugin-inappbrowser documentation translation: cordova-plugin-inappbrowser
359
+ * [CB-8538](https://issues.apache.org/jira/browse/CB-8538) Added package.json file
360
+ * Keep external android pages in a single tab. (close #61)
361
+ * [CB-8444](https://issues.apache.org/jira/browse/CB-8444) Add a clobber for `cordova.InAppBrowser.open` (close #80)
362
+ * [CB-8444](https://issues.apache.org/jira/browse/CB-8444) Don't clobber `window.open` - Add new symbol/clobber to access open function (`cordova.InAppBrowser.open`) - Change existing tests to use new symbol (i.e. don't rely on plugin clobber of `window.open`) - Add tests to use `window.open` via manual replace with new symbol - Update docs to deprecate plugin clobber of `window.open`
363
+ * [CB-8429](https://issues.apache.org/jira/browse/CB-8429) Incremented plugin version.
364
+ * [CB-8429](https://issues.apache.org/jira/browse/CB-8429) Updated version and RELEASENOTES.md for release 0.6.0
365
+ * Add missing license header for src/ubuntu/InAppBrowser_escapeScript.js
366
+ * [CB-8270](https://issues.apache.org/jira/browse/CB-8270) Remove usage of `[arr JSONString]`, since it's been renamed to `cdv_JSONString`
367
+ * ubuntu: implement inject* functions
368
+ * ubuntu: port to oxide
369
+ * [CB-7897](https://issues.apache.org/jira/browse/CB-7897) Update to work with whilelist plugins in Cordova 4.x
370
+ * [CB-7897](https://issues.apache.org/jira/browse/CB-7897) Update to work with whilelist plugins in Cordova 4.x
371
+ * [CB-8110](https://issues.apache.org/jira/browse/CB-8110) Incremented plugin version.
372
+ * [CB-8110](https://issues.apache.org/jira/browse/CB-8110) Updated version and RELEASENOTES.md for release 0.5.4
373
+ * Amazon specific changes: Removed reference to closebuttoncaption according to https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-inappbrowser.git;a=commit;h=50a78baf22843b0df96ccb4ca83a45bd9ef3fc39
374
+ * [CB-7784](https://issues.apache.org/jira/browse/CB-7784) Exit event is not fired after InAppBrowser closing
375
+ * [CB-7697](https://issues.apache.org/jira/browse/CB-7697) Add locationBar support to InAppBrowser windows platform version
376
+ * [CB-7690](https://issues.apache.org/jira/browse/CB-7690) InAppBrowser loadstart/loadstop events issues
377
+ * [CB-7695](https://issues.apache.org/jira/browse/CB-7695) Fix InAppBrowser injectScriptFile for Windows 8.1 / Windows Phone 8.1
378
+ * [CB-7692](https://issues.apache.org/jira/browse/CB-7692) InAppBrowser local url opening bug in 8.1
379
+ * [CB-7688](https://issues.apache.org/jira/browse/CB-7688) Alert is not supported in InAppBrowser on Windows platform
380
+ * [CB-7977](https://issues.apache.org/jira/browse/CB-7977) Mention deviceready in plugin docs
381
+ * Dropping trailing whitespace
382
+ * [CB-7876](https://issues.apache.org/jira/browse/CB-7876) change test target to avoid undesired redirects
383
+ * [CB-7712](https://issues.apache.org/jira/browse/CB-7712) remove references to closebuttoncaption
384
+ * [CB-7850](https://issues.apache.org/jira/browse/CB-7850) clarify role of whitelist
385
+ * [CB-7720](https://issues.apache.org/jira/browse/CB-7720) check if event is null since OK string from success callback was removed
386
+ * [CB-7700](https://issues.apache.org/jira/browse/CB-7700) cordova-plugin-inappbrowser documentation translation: cordova-plugin-inappbrowser
387
+ * [CB-7471](https://issues.apache.org/jira/browse/CB-7471) cordova-plugin-inappbrowser documentation translation: cordova-plugin-inappbrowser
388
+ * Incremented plugin version.
389
+ * Updated version and RELEASENOTES.md for release 0.5.3
390
+ * Amazon Specific changes: Added logs and corrected indentation according to 81161ebe668a14f87e1ef4b57f2d300a609b9a8b
391
+ * Windows implementation fixes and improvements
392
+ * zIndex fixed
393
+ * renamed InAppBrowser back to inappbrowser for case sensitive operating systems
394
+ * Clean plugin.xml
395
+ * Update french translation
396
+ * Update doc to add Windows 8
397
+ * Update windows proxy to be both compatible with windows 8 and 8.1
398
+ * Rename windows81 by windows8 in src directory
399
+ * Append Windows 8.1 platform configuration in plugin.xml
400
+ * Append Windows 8.1 proxy using x-ms-webview
401
+ * [CB-7571](https://issues.apache.org/jira/browse/CB-7571) Bump version of nested plugin to match parent plugin
402
+ * [CB-7571](https://issues.apache.org/jira/browse/CB-7571) Incremented plugin version.
403
+ * [CB-7571](https://issues.apache.org/jira/browse/CB-7571) Updated version and RELEASENOTES.md for release 0.5.2
404
+ * [CB-7471](https://issues.apache.org/jira/browse/CB-7471) cordova-plugin-inappbrowser documentation translation: cordova-plugin-inappbrowser
405
+ * [CB-7490](https://issues.apache.org/jira/browse/CB-7490) Fixes InAppBrowser manual tests crash on windows platform
406
+ * [CB-7249](https://issues.apache.org/jira/browse/CB-7249) cordova-plugin-inappbrowser documentation translation: cordova-plugin-inappbrowser
407
+ * [CB-7424](https://issues.apache.org/jira/browse/CB-7424) - Wrong docs: anchor tags are not supported by the InAppBrowser
408
+ * [CB-7133](https://issues.apache.org/jira/browse/CB-7133) clarify that anchor1 doesn't exist
409
+ * [CB-7133](https://issues.apache.org/jira/browse/CB-7133) more fixup of tests on Android
410
+ * [CB-7133](https://issues.apache.org/jira/browse/CB-7133) fix up the tests for Android
411
+ * Add just a bit more logging
412
+ * [CB-7133](https://issues.apache.org/jira/browse/CB-7133) port inappbrowser to plugin-test-framework
413
+ * phonegap events supported for _blank target
414
+ * inappbrowser _blank target position is fixed
415
+ * amazon-fireos related changes.
416
+ * [CB-7244](https://issues.apache.org/jira/browse/CB-7244) Incremented plugin version.
417
+ * [CB-7244](https://issues.apache.org/jira/browse/CB-7244) Updated version and RELEASENOTES.md for release 0.5.1
418
+ * ubuntu: support qt 5.2
419
+ * CB-7249cordova-plugin-inappbrowser documentation translation: cordova-plugin-inappbrowser
420
+ * update InAppBrowserProxy.js
421
+ * app needs to be privileged
422
+ * CB-6127lisa7cordova-plugin-consolecordova-plugin-inappbrowser documentation translation: cordova-plugin-inappbrowser
423
+ * [CB-6769](https://issues.apache.org/jira/browse/CB-6769) ios: Fix statusbar color reset wasn't working on iOS7+
424
+ * [CB-6877](https://issues.apache.org/jira/browse/CB-6877) Incremented plugin version.
425
+ * [CB-6877](https://issues.apache.org/jira/browse/CB-6877) Updated version and RELEASENOTES.md for release 0.5.0
426
+ * [CB-6127](https://issues.apache.org/jira/browse/CB-6127) Spanish and rench Translations added. Github close #23
427
+ * Clean up whitespace (mainly due to no newline at eof warning)
428
+ * after code review
429
+ * default parameter added
430
+ * doc updated
431
+ * console.log removed
432
+ * back/forward buttons added, iframe has no border
433
+ * not forcing the look of the inAppBrowserWrap and buttons
434
+ * Adding permission info
435
+ * [CB-6806](https://issues.apache.org/jira/browse/CB-6806) Add license
436
+ * documentation translation: cordova-plugin-inappbrowser
437
+ * Lisa testing pulling in plugins for plugin: cordova-plugin-inappbrowser
438
+ * Lisa testing pulling in plugins for plugin: cordova-plugin-inappbrowser
439
+ * [CB-6491](https://issues.apache.org/jira/browse/CB-6491) add CONTRIBUTING.md
440
+ * Add necessary capability so the plugin works on its own
441
+ * [CB-6474](https://issues.apache.org/jira/browse/CB-6474) InAppBrowser. Add data urls support to WP8
442
+ * [CB-6482](https://issues.apache.org/jira/browse/CB-6482) InAppBrowser calls incorrect callback on WP8
443
+ * Fixed use of iOS 6 deprecated methods
444
+ * [CB-6360](https://issues.apache.org/jira/browse/CB-6360) - improvement: feature detection instead of iOS version detection
445
+ * [CB-5649](https://issues.apache.org/jira/browse/CB-5649) - InAppBrowser overrides App's orientation
446
+ * [CB-6452](https://issues.apache.org/jira/browse/CB-6452) Incremented plugin version on dev branch.
447
+ * [CB-6452](https://issues.apache.org/jira/browse/CB-6452) Updated version and RELEASENOTES.md for release 0.4.0
448
+ * [CB-6460](https://issues.apache.org/jira/browse/CB-6460) Update license headers
449
+ * [CB-6360](https://issues.apache.org/jira/browse/CB-6360) Fix for crash on iOS < 6.0 (closes #37)
450
+ * [CB-3324](https://issues.apache.org/jira/browse/CB-3324) Add support for back-button inappbrowser [WP8] if there is no history -> InAppBrowser is closed
451
+ * await async calls, resolve warnings
452
+ * Make InAppBrowser work with embedded files, using system behavior
453
+ * [CB-6402](https://issues.apache.org/jira/browse/CB-6402) [WP8] pass empty string instead of null for [optional] windowFeatures string
454
+ * [CB-6422](https://issues.apache.org/jira/browse/CB-6422) [windows8] use cordova/exec/proxy
455
+ * [CB-3617](https://issues.apache.org/jira/browse/CB-3617) Document clearcache and clearsessioncache for ios
456
+ * [CB-6389](https://issues.apache.org/jira/browse/CB-6389) [CB-3617](https://issues.apache.org/jira/browse/CB-3617) Add clearcache and clearsessioncache options to iOS (like Android)
457
+ * refactoring fixed
458
+ * [CB-6396](https://issues.apache.org/jira/browse/CB-6396) [Firefox OS] Adding basic support
459
+ * Doc update: event name and example param (closes #31)
460
+ * [CB-6253](https://issues.apache.org/jira/browse/CB-6253) Add Network Capability to WMAppManifest.xml
461
+ * [CB-6212](https://issues.apache.org/jira/browse/CB-6212) iOS: fix warnings compiled under arm64 64-bit
462
+ * [CB-6218](https://issues.apache.org/jira/browse/CB-6218) Update docs for BB10
463
+ * Tweak RELEASENOTES.md (missed a bug fix in last release)
464
+ * Incremented plugin version on dev branch.
465
+ * [CB-6218](https://issues.apache.org/jira/browse/CB-6218) Update docs for BB10
466
+ * Updated version and RELEASENOTES.md for release 0.3.3
467
+ * [CB-6172](https://issues.apache.org/jira/browse/CB-6172) Fix inappbrowser install failure on case-sensitive filesystems.
468
+ * [CB-5534](https://issues.apache.org/jira/browse/CB-5534) Updating the plugin.xml with the new Dialog class
469
+ * fix for [CB-5534](https://issues.apache.org/jira/browse/CB-5534)
470
+ * Add NOTICE file
471
+ * [CB-6114](https://issues.apache.org/jira/browse/CB-6114) Incremented plugin version on dev branch.
472
+ * Add NOTICE file
473
+ * [CB-6114](https://issues.apache.org/jira/browse/CB-6114) Updated version and RELEASENOTES.md for release 0.3.2
474
+ * Validate that callbackId is correctly formed
475
+ * [CB-6035](https://issues.apache.org/jira/browse/CB-6035) - Move js-module so it is not loaded on unsupported platforms
476
+ * [CB-5980](https://issues.apache.org/jira/browse/CB-5980) Incremented plugin version on dev branch.
477
+ * [CB-5980](https://issues.apache.org/jira/browse/CB-5980) Updated version and RELEASENOTES.md for release 0.3.1
478
+ * Removed some iOS6 Deprecations
479
+ * Lisa testing pulling in plugins for plugin: cordova-plugin-inappbrowser
480
+ * Lisa testing pulling in plugins for plugin: cordova-plugin-inappbrowser
481
+ * [CB-5980](https://issues.apache.org/jira/browse/CB-5980) Updated version and RELEASENOTES.md for release 0.3.1
482
+ * Add missing import for previous commit
483
+ * [CB-5756](https://issues.apache.org/jira/browse/CB-5756) Android: Use WebView.evaluateJavascript for script injection on Android 4.4+
484
+ * Didn't test on ICS or lower, getDrawable isn't supported until Jellybean
485
+ * WTF? ubuntu got automerged twice
486
+ * add ubuntu platform
487
+ * Adding CC-A-2.5 Notice for Assets, modifying plugins to use resources
488
+ * Adding the buttons
489
+ * Adding drawables to the inAppBrowser. This doesn't look quite right, but it's a HUGE improvement over the previous settings
490
+ * [CB-5756](https://issues.apache.org/jira/browse/CB-5756) Add missing import
491
+ * [CB-5756](https://issues.apache.org/jira/browse/CB-5756) Android: Use WebView.evaluateJavascript for script injection on Android 4.4+
492
+ * Delete stale test/ directory
493
+ * Remove _alive from InAppBrowser.js since it didn't catch the case where the browser is closed by the user.
494
+ * [CB-5733](https://issues.apache.org/jira/browse/CB-5733) Fix IAB.close() not working if called before show() animation is done
495
+ * [CB-5719](https://issues.apache.org/jira/browse/CB-5719) Incremented plugin version on dev branch.
496
+ * [CB-5719](https://issues.apache.org/jira/browse/CB-5719) Updated version and RELEASENOTES.md for release 0.3.0
497
+ * [CB-5592](https://issues.apache.org/jira/browse/CB-5592) Add a comment explaining why we set MIME only for file:
498
+ * [CB-5592](https://issues.apache.org/jira/browse/CB-5592) Android - Add MIME type to Intent when opening file:/// URLs
499
+ * [CB-5658](https://issues.apache.org/jira/browse/CB-5658) Update license comment formatting of doc/index.md
500
+ * [CB-5658](https://issues.apache.org/jira/browse/CB-5658) Add doc.index.md for InAppBrowser plugin
501
+ * [CB-5658](https://issues.apache.org/jira/browse/CB-5658) Delete stale snapshot of plugin docs
502
+ * [CB-5594](https://issues.apache.org/jira/browse/CB-5594) Add disallowoverscroll option.
503
+ * [CB-5595](https://issues.apache.org/jira/browse/CB-5595) Rename "toolbarbarpostion" -> "toolbarposition"
504
+ * [CB-5595](https://issues.apache.org/jira/browse/CB-5595) Fixed the positioning and autoresizing for certain rotation scenarios.
505
+ * [CB-5595](https://issues.apache.org/jira/browse/CB-5595) Add toolbarposition=top option.
506
+ * Apply [CB-5193](https://issues.apache.org/jira/browse/CB-5193) to InAppBrowser
507
+ * [CB-5593](https://issues.apache.org/jira/browse/CB-5593) iOS: Make InAppBrowser localizable
508
+ * [CB-5591](https://issues.apache.org/jira/browse/CB-5591) Change window.escape to encodeURIComponent
509
+ * [CB-5565](https://issues.apache.org/jira/browse/CB-5565) Incremented plugin version on dev branch.
510
+ * [CB-5565](https://issues.apache.org/jira/browse/CB-5565) Updated version and RELEASENOTES.md for release 0.2.5
511
+ * Remove merge conflict tag
512
+ * [CB-4724](https://issues.apache.org/jira/browse/CB-4724) fixed UriFormatException
513
+ * add ubuntu platform
514
+ * [CB-3420](https://issues.apache.org/jira/browse/CB-3420) WP feature hidden=yes implemented
515
+ * Added amazon-fireos platform. Change to use amazon-fireos as the platform if user agent string contains 'cordova-amazon-fireos'
516
+ * [CB-5188](https://issues.apache.org/jira/browse/CB-5188)
517
+ * [CB-5188](https://issues.apache.org/jira/browse/CB-5188) Updated version and RELEASENOTES.md for release 0.2.4
518
+ * [CB-5128](https://issues.apache.org/jira/browse/CB-5128) added repo + issue tag to plugin.xml for inappbrowser plugin
519
+ * [CB-4995](https://issues.apache.org/jira/browse/CB-4995) Fix crash when WebView is quickly opened then closed.
520
+ * [CB-4930](https://issues.apache.org/jira/browse/CB-4930) - iOS - InAppBrowser should take into account the status bar
521
+ * [CB-5010](https://issues.apache.org/jira/browse/CB-5010) Incremented plugin version on dev branch.
522
+ * [CB-5010](https://issues.apache.org/jira/browse/CB-5010) Updated version and RELEASENOTES.md for release 0.2.3
523
+ * [CB-4858](https://issues.apache.org/jira/browse/CB-4858) - Run IAB methods on the UI thread.
524
+ * [CB-4858](https://issues.apache.org/jira/browse/CB-4858) Convert relative URLs to absolute URLs in JS
525
+ * [CB-3747](https://issues.apache.org/jira/browse/CB-3747) Fix back button having different dismiss logic from the close button.
526
+ * [CB-5021](https://issues.apache.org/jira/browse/CB-5021) Expose closeDialog() as a public function and make it safe to call multiple times.
527
+ * [CB-5021](https://issues.apache.org/jira/browse/CB-5021) Make it safe to call close() multiple times
528
+ * [CB-5010](https://issues.apache.org/jira/browse/CB-5010) Updated version and RELEASENOTES.md for release 0.2.3
529
+ * [CB-4915](https://issues.apache.org/jira/browse/CB-4915) Incremented plugin version on dev branch.
530
+ * [CB-4926](https://issues.apache.org/jira/browse/CB-4926) Fixes inappbrowser plugin loading for windows8
531
+ * [CB-4915](https://issues.apache.org/jira/browse/CB-4915) Updated version and RELEASENOTES.md for release 0.2.2
532
+ * [CB-4889](https://issues.apache.org/jira/browse/CB-4889) bumping&resetting version
533
+ * [CB-4788](https://issues.apache.org/jira/browse/CB-4788) Modified the onJsPrompt to warn against Cordova calls
534
+ * [windows8] commandProxy was moved
535
+ * [CB-4788](https://issues.apache.org/jira/browse/CB-4788) Modified the onJsPrompt to warn against Cordova calls
536
+ * [windows8] commandProxy was moved
537
+ * [CB-4889](https://issues.apache.org/jira/browse/CB-4889) renaming core references
538
+ * [CB-4889](https://issues.apache.org/jira/browse/CB-4889) renaming org.apache.cordova.core.inappbrowser to org.apache.cordova.inappbrowser
539
+ * CB-4864, [CB-4865](https://issues.apache.org/jira/browse/CB-4865) Minor improvements to InAppBrowser
540
+ * Rename CHANGELOG.md -> RELEASENOTES.md
541
+ * [CB-4792](https://issues.apache.org/jira/browse/CB-4792) Added keepCallback to the show function.
542
+ * [CB-4752](https://issues.apache.org/jira/browse/CB-4752) Incremented plugin version on dev branch.
543
+ * Add empty CHANGELOG.md
544
+ * [CB-4586](https://issues.apache.org/jira/browse/CB-4586) Making loadUrl run on the UI thread for close dialog to stop the WebView error
545
+ * [Windows8] add support for Windows 8 ( limited )
546
+ * [CB-3616](https://issues.apache.org/jira/browse/CB-3616) Change option name to "clearcache" to match original proposal
547
+ * add "clearallcache" and "clearsessioncache" option to InAppbrowser
548
+ * [CB-4595](https://issues.apache.org/jira/browse/CB-4595) updated version
549
+ * [CB-4417](https://issues.apache.org/jira/browse/CB-4417) Move cordova-plugin-inappbrowser to its own Java package.
550
+ * updated Readme, namespace and name tag
551
+ * [plugin.xml] standardizing license + meta
552
+ * [license] adding apache license file
553
+ * [CB-4399](https://issues.apache.org/jira/browse/CB-4399) removed blackberry entry in plugin xml. Installation of plugin interferes with natively supported childbrowser functionality. To support additional inappbrowser features, see [CB-4467.](https://issues.apache.org/jira/browse/CB-4467.)
554
+ * updating plugin.xml with registry data
555
+ * [CB-4368](https://issues.apache.org/jira/browse/CB-4368) Explicit CoreGraphics.framework dependency should be specified for some core plugins
556
+
557
+ ### 1.5.0 (Sep 08, 2016)
558
+ * [CB-11795](https://issues.apache.org/jira/browse/CB-11795) Add 'protective' entry to cordovaDependencies
559
+ * Add intent scheme to be handled by OS
560
+ * Plugin uses `Android Log class` and not `Cordova LOG class`
561
+ * Adding links to guide content and reference content at the top of the readme file Github: close #163
562
+ * [CB-10973](https://issues.apache.org/jira/browse/CB-10973) **Browser**: wrong height of webview with `location=yes`
563
+ * Size and position in browser platform
564
+ * [CB-10973](https://issues.apache.org/jira/browse/CB-10973) **Windows**: wrong height of webview with `location=yes`
565
+ * [CB-11013](https://issues.apache.org/jira/browse/CB-11013) IAB enabling background play of YouTube videos?
566
+ * [CB-10467](https://issues.apache.org/jira/browse/CB-10467) Hardware back button, while `InAppBrowser` is opened, closes the app too in addition to closing `InAppBrowser`
567
+ * [CB-11178](https://issues.apache.org/jira/browse/CB-11178) allow to open other apps on **iOS 9**
568
+ * fix some calls which used api level 16
569
+ * [CB-5402](https://issues.apache.org/jira/browse/CB-5402) added extra content from wiki page
570
+ * [CB-2063](https://issues.apache.org/jira/browse/CB-2063) (**ios**) Fixed presentation style
571
+ * [CB-11012](https://issues.apache.org/jira/browse/CB-11012) added some clarifications about `InAppBrowser` object
572
+ * [CB-3360](https://issues.apache.org/jira/browse/CB-3360) Set custom `inappbrowser` user agent for **ios**
573
+ * Add badges for paramedic builds on Jenkins
574
+ * [CB-11381](https://issues.apache.org/jira/browse/CB-11381) android: Does not pass sonarqube scan
575
+ * Add pull request template.
576
+ * [CB-10866](https://issues.apache.org/jira/browse/CB-10866) Adding engine requirements to `package.json`
577
+ * [CB-110003](https://issues.apache.org/jira/browse/CB-110003) Adding samples to Readme.
578
+ * [CB-10996](https://issues.apache.org/jira/browse/CB-10996) Adding front matter to README.md
579
+
580
+ ### 1.4.0 (Apr 15, 2016)
581
+ * [CB-7679](https://issues.apache.org/jira/browse/CB-7679) add fix for **iOS** upload.
582
+ * [CB-10944](https://issues.apache.org/jira/browse/CB-10944) `NoSuchMethodError` in `InAppBrowser` plugin
583
+ * [CB-10937](https://issues.apache.org/jira/browse/CB-10937) fix stretched icons
584
+ * [CB-10760](https://issues.apache.org/jira/browse/CB-10760) Fixing README for display on Cordova website
585
+ * [CB-10636](https://issues.apache.org/jira/browse/CB-10636) Add `JSHint` for plugins
586
+
587
+ ### 1.3.0 (Feb 09, 2016)
588
+ * [CB-3360](https://issues.apache.org/jira/browse/CB-3360) Set custom inappbrowser user agent for android
589
+ * [CB-10538](https://issues.apache.org/jira/browse/CB-10538) cordova-plugin-inappbrowser timeout issue
590
+ * [CB-10395](https://issues.apache.org/jira/browse/CB-10395) InAppBrowser's WebView not storing cookies reliable on Android
591
+ * Edit package.json license to match SPDX id
592
+ * [CB-10305](https://issues.apache.org/jira/browse/CB-10305) Gray bar appears in the wrong place on iOS
593
+ * [CB-7786](https://issues.apache.org/jira/browse/CB-7786) Support mediaPlaybackRequiresUserAction on Android
594
+ * [CB-7500](https://issues.apache.org/jira/browse/CB-7500) executeScript with callback kills/blurs inAppBrowser window on Android
595
+
596
+ ### 1.2.1 (Feb 02, 2016)
597
+ * [CB-10407](https://issues.apache.org/jira/browse/CB-10407) InAppBrowser not firing loadstart event on android
598
+ * [CB-10428](https://issues.apache.org/jira/browse/CB-10428) Fix syntax error when browserifying inAppBrowser plugin
599
+ * handle app store urls in system browser
600
+ * [CB-6702](https://issues.apache.org/jira/browse/CB-6702) InAppBrowser hangs when opening more than one instance
601
+ * [CB-10456](https://issues.apache.org/jira/browse/CB-10456) InAppBrowser is not closed if I close it programmatically on Android
602
+ * [CB-10451](https://issues.apache.org/jira/browse/CB-10451) InAppBrowser: loadstart event is not triggered on Windows
603
+ * [CB-10452](https://issues.apache.org/jira/browse/CB-10452) InAppBrowser: 'exit' event is not triggered on Windows
604
+ * [CB-10454](https://issues.apache.org/jira/browse/CB-10454) InAppBrowser: 'loaderror' event does not have code and message on Windows
605
+ * [CB-10450](https://issues.apache.org/jira/browse/CB-10450) InAppBrowser: Unable to get property 'canGoBack' of undefined on Windows
606
+ * [CB-10441](https://issues.apache.org/jira/browse/CB-10441) Add auto tests for InAppBrowser plugin
607
+
608
+ ### 1.2.0 (Jan 15, 2016)
609
+ * [CB-8180](https://issues.apache.org/jira/browse/CB-8180) Changing methods of interception in `WebViewClient` class
610
+ * [CB-10009](https://issues.apache.org/jira/browse/CB-10009) Improve `InAppBrowser` toolbar look and feel on **Windows**
611
+ * Open a new window on the **Browser** platform
612
+
613
+ ### 1.1.1 (Dec 10, 2015)
614
+
615
+ * [CB-9445](https://issues.apache.org/jira/browse/CB-9445) Improves executeScript callbacks on iOS
616
+ * [CB-10035](https://issues.apache.org/jira/browse/CB-10035) Incremented plugin version.
617
+ * [CB-10040](https://issues.apache.org/jira/browse/CB-10040) - re-fix: backwards compatible with cordova-ios < 4.0
618
+ * [CB-8534](https://issues.apache.org/jira/browse/CB-8534) Allow plugins to respond to onReceivedHttpAuthRequest. This closes #82
619
+ * [CB-3750](https://issues.apache.org/jira/browse/CB-3750) Fixes spinner on iOS. This closes #89
620
+ * [CB-7696](https://issues.apache.org/jira/browse/CB-7696) Document target=_self behavior for Windows
621
+ * [CB-10040](https://issues.apache.org/jira/browse/CB-10040) - Compile Error in InAppBrowser Plugin for iOS - No known instance method for selector 'URLIsWhitelisted:'
622
+
623
+ ### 1.1.0 (Nov 18, 2015)
624
+ * [CB-10035](https://issues.apache.org/jira/browse/CB-10035) Updated `RELEASENOTES` to be newest to oldest
625
+ * Invoke webview if using local file
626
+ * Fixed `zIndex` issue on **Windows 8**, **8.188 where InAppBrowser opens behind default app.
627
+ * fix `async` self usage
628
+ * [CB-9150](https://issues.apache.org/jira/browse/CB-9150) Fix InAppBrowser `executeScript` crash on **Windows** if no data returned
629
+ * [CB-10008](https://issues.apache.org/jira/browse/CB-10008) Fix InAppBrowser popup layout on **Windows**
630
+ * Setting `setStatusBarStyle` to `-1` causes `CGContextSaveGState`.
631
+ * [CB-9167](https://issues.apache.org/jira/browse/CB-9167) Fix crash on **browser** window close
632
+ * [CB-9799](https://issues.apache.org/jira/browse/CB-9799) Fixed `javaDoc` errors.
633
+ * Fixing contribute link.
634
+ * [CB-9760](https://issues.apache.org/jira/browse/CB-9760) InAppBrowser: fallback to default `window.open` behavior on **Ripple**
635
+ * [CB-9378](https://issues.apache.org/jira/browse/CB-9378) Fix InAppBrowser not taking whole screen on **Windows**
636
+ * [CB-9158](https://issues.apache.org/jira/browse/CB-9158) - InAppBrowser `zoomControls` are always set to true
637
+
638
+ ### 1.0.1 (Jun 17, 2015)
639
+ * [CB-9128](https://issues.apache.org/jira/browse/CB-9128) cordova-plugin-inappbrowser documentation translation: cordova-plugin-inappbrowser
640
+ * fix npm md issue
641
+
642
+ ### 1.0.0 (Apr 15, 2015)
643
+ * [CB-8746](https://issues.apache.org/jira/browse/CB-8746) gave plugin major version bump
644
+ * [CB-7689](https://issues.apache.org/jira/browse/CB-7689) Adds insertCSS support for windows platform
645
+ * [CB-4930](https://issues.apache.org/jira/browse/CB-4930) - (prefix) InAppBrowser should take into account the status bar
646
+ * [CB-8635](https://issues.apache.org/jira/browse/CB-8635) Improves UX on windows platform
647
+ * [CB-8661](https://issues.apache.org/jira/browse/CB-8661) Return executed script result on Windows
648
+ * [CB-8683](https://issues.apache.org/jira/browse/CB-8683) updated wp and browser specific references of old id to new id
649
+ * [CB-8683](https://issues.apache.org/jira/browse/CB-8683) changed plugin-id to pacakge-name
650
+ * [CB-8653](https://issues.apache.org/jira/browse/CB-8653) properly updated translated docs to use new id
651
+ * [CB-8653](https://issues.apache.org/jira/browse/CB-8653) updated translated docs to use new id
652
+ * Use TRAVIS_BUILD_DIR, install paramedic by npm
653
+ * [CB-8432](https://issues.apache.org/jira/browse/CB-8432) Correct styles for browser wrapper to display it correctly on some pages
654
+ * [CB-8659](https://issues.apache.org/jira/browse/CB-8659) - Update InAppBrowser to support both cordova-ios 4.0.x and 3.x (closes #93)
655
+ * [CB-7961](https://issues.apache.org/jira/browse/CB-7961) Add cordova-plugin-inappbrowser support for browser platform
656
+ * [CB-8653](https://issues.apache.org/jira/browse/CB-8653) Updated Readme
657
+ * Update docs for Android zoom=no option
658
+ * Added option to disable/enable zoom controls
659
+ * updated docs, set hardwareback default to true
660
+ * Add a hardwareback option to allow for the hardware back button to go back.
661
+ * [CB-8570](https://issues.apache.org/jira/browse/CB-8570) Integrate TravisCI
662
+ * [CB-8438](https://issues.apache.org/jira/browse/CB-8438) cordova-plugin-inappbrowser documentation translation: cordova-plugin-inappbrowser
663
+ * [CB-8538](https://issues.apache.org/jira/browse/CB-8538) Added package.json file
664
+ * Keep external android pages in a single tab. (close #61)
665
+ * [CB-8444](https://issues.apache.org/jira/browse/CB-8444) Add a clobber for `cordova.InAppBrowser.open` (close #80)
666
+ * [CB-8444](https://issues.apache.org/jira/browse/CB-8444) Don't clobber `window.open` - Add new symbol/clobber to access open function (`cordova.InAppBrowser.open`) - Change existing tests to use new symbol (i.e. don't rely on plugin clobber of `window.open`) - Add tests to use `window.open` via manual replace with new symbol - Update docs to deprecate plugin clobber of `window.open`
667
+
668
+ ### 0.6.0 (Feb 04, 2015)
669
+ * [CB-8270](https://issues.apache.org/jira/browse/CB-8270) ios: Remove usage of `[arr JSONString]`, since it's been renamed to `cdv_JSONString`
670
+ * ubuntu: implement `inject*` functions
671
+ * ubuntu: port to oxide
672
+ * [CB-7897](https://issues.apache.org/jira/browse/CB-7897) ios, android: Update to work with whilelist plugins in Cordova 4.x
673
+
674
+ ### 0.5.4 (Dec 02, 2014)
675
+ * [CB-7784](https://issues.apache.org/jira/browse/CB-7784) Exit event is not fired after `InAppBrowser` closing
676
+ * [CB-7697](https://issues.apache.org/jira/browse/CB-7697) Add `locationBar` support to `InAppBrowser` **Windows** platform version
677
+ * [CB-7690](https://issues.apache.org/jira/browse/CB-7690) `InAppBrowser` `loadstart/loadstop` events issues
678
+ * [CB-7695](https://issues.apache.org/jira/browse/CB-7695) Fix `InAppBrowser` `injectScriptFile` for **Windows 8.1** / **Windows Phone 8.1**
679
+ * [CB-7692](https://issues.apache.org/jira/browse/CB-7692) `InAppBrowser` local url opening bug in 8.1
680
+ * [CB-7688](https://issues.apache.org/jira/browse/CB-7688) `Alert` is not supported in `InAppBrowser` on **Windows** platform
681
+ * [CB-7977](https://issues.apache.org/jira/browse/CB-7977) Mention `deviceready` in plugin docs
682
+ * [CB-7876](https://issues.apache.org/jira/browse/CB-7876) change test target to avoid undesired redirects
683
+ * [CB-7712](https://issues.apache.org/jira/browse/CB-7712) remove references to `closebuttoncaption`
684
+ * [CB-7850](https://issues.apache.org/jira/browse/CB-7850) clarify role of whitelist
685
+ * [CB-7720](https://issues.apache.org/jira/browse/CB-7720) check if event is null since OK string from success callback was removed
686
+ * [CB-7471](https://issues.apache.org/jira/browse/CB-7471) cordova-plugin-inappbrowser documentation translation: cordova-plugin-inappbrowser
687
+
688
+ ### 0.5.3 (Oct 03, 2014)
689
+ * Windows implementation fixes and improvements
690
+ * zIndex fixed
691
+ * renamed InAppBrowser back to inappbrowser for case sensitive operating systems
692
+ * Update french translation
693
+ * Update doc to add Windows 8
694
+ * Update windows proxy to be both compatible with windows 8 and 8.1
695
+ * Rename windows81 by windows8 in src directory
696
+ * Append Windows 8.1 platform configuration in plugin.xml
697
+ * Append Windows 8.1 proxy using x-ms-webview
698
+
699
+ ### 0.5.2 (Sep 17, 2014)
700
+ * [CB-7471](https://issues.apache.org/jira/browse/CB-7471) cordova-plugin-inappbrowser documentation translation: cordova-plugin-inappbrowser
701
+ * [CB-7490](https://issues.apache.org/jira/browse/CB-7490) Fixes InAppBrowser manual tests crash on windows platform
702
+ * [CB-7249](https://issues.apache.org/jira/browse/CB-7249) cordova-plugin-inappbrowser documentation translation: cordova-plugin-inappbrowser
703
+ * [CB-7424](https://issues.apache.org/jira/browse/CB-7424) Wrong docs: anchor tags are not supported by the InAppBrowser
704
+ * [CB-7133](https://issues.apache.org/jira/browse/CB-7133) clarify that anchor1 doesn't exist
705
+ * [CB-7133](https://issues.apache.org/jira/browse/CB-7133) more fixup of tests on Android
706
+ * [CB-7133](https://issues.apache.org/jira/browse/CB-7133) fix up the tests for Android
707
+ * Add just a bit more logging
708
+ * [CB-7133](https://issues.apache.org/jira/browse/CB-7133) port inappbrowser to plugin-test-framework
709
+ * phonegap events supported for \_blank target
710
+ * inappbrowser \_blank target position is fixed
711
+ * amazon-fireos related changes.
712
+
713
+ ### 0.5.1 (Aug 06, 2014)
714
+ * ubuntu: support qt 5.2
715
+ * **FFOS** update InAppBrowserProxy.js
716
+ * **FFOS** app needs to be privileged
717
+ * [CB-6127](https://issues.apache.org/jira/browse/CB-6127) Updated translations for docs
718
+ * [CB-6769](https://issues.apache.org/jira/browse/CB-6769) ios: Fix statusbar color reset wasn't working on iOS7+
719
+
720
+ ### 0.5.0 (Jun 05, 2014)
721
+ * [CB-6127](https://issues.apache.org/jira/browse/CB-6127) Spanish and rench Translations added. Github close #23
722
+ * Clean up whitespace (mainly due to no newline at eof warning)
723
+ * Adding permission info
724
+ * [CB-6806](https://issues.apache.org/jira/browse/CB-6806) Add license
725
+ * [CB-6491](https://issues.apache.org/jira/browse/CB-6491) add CONTRIBUTING.md
726
+ * Add necessary capability so the plugin works on its own
727
+ * [CB-6474](https://issues.apache.org/jira/browse/CB-6474) InAppBrowser. Add data urls support to WP8
728
+ * [CB-6482](https://issues.apache.org/jira/browse/CB-6482) InAppBrowser calls incorrect callback on WP8
729
+ * Fixed use of iOS 6 deprecated methods
730
+ * [CB-6360](https://issues.apache.org/jira/browse/CB-6360) - improvement: feature detection instead of iOS version detection
731
+ * [CB-5649](https://issues.apache.org/jira/browse/CB-5649) - InAppBrowser overrides App's orientation
732
+ * refactoring fixed
733
+ * [CB-6396](https://issues.apache.org/jira/browse/CB-6396) [Firefox OS] Adding basic support
734
+
735
+ ### 0.4.0 (Apr 17, 2014)
736
+ * [CB-6360](https://issues.apache.org/jira/browse/CB-6360): [ios] Fix for crash on iOS < 6.0 (closes #37)
737
+ * [CB-3324](https://issues.apache.org/jira/browse/CB-3324): [WP8] Add support for back-button inappbrowser [WP8] if there is no history -> InAppBrowser is closed
738
+ * [WP] await async calls, resolve warnings
739
+ * [WP] Make InAppBrowser work with embedded files, using system behavior
740
+ * [CB-6402](https://issues.apache.org/jira/browse/CB-6402): [WP8] pass empty string instead of null for [optional] windowFeatures string
741
+ * [CB-6422](https://issues.apache.org/jira/browse/CB-6422): [windows8] use cordova/exec/proxy
742
+ * [CB-6389](https://issues.apache.org/jira/browse/CB-6389) [CB-3617](https://issues.apache.org/jira/browse/CB-3617): Add clearcache and clearsessioncache options to iOS (like Android)
743
+ * Doc update: event name and example param (closes #31)
744
+ * [CB-6253](https://issues.apache.org/jira/browse/CB-6253): [WP] Add Network Capability to WMAppManifest.xml
745
+ * [CB-6212](https://issues.apache.org/jira/browse/CB-6212): [iOS] fix warnings compiled under arm64 64-bit
746
+ * [CB-6218](https://issues.apache.org/jira/browse/CB-6218): Update docs for BB10
747
+ * [CB-6460](https://issues.apache.org/jira/browse/CB-6460): Update license headers
748
+
749
+ ### 0.3.3 (Mar 5, 2014)
750
+ * [CB-5534](https://issues.apache.org/jira/browse/CB-5534) Fix video/audio does not stop playing when browser is closed
751
+ * [CB-6172](https://issues.apache.org/jira/browse/CB-6172) Fix broken install on case-sensitive file-systems
752
+
753
+ ### 0.3.2 (Feb 26, 2014)
754
+ * Validate that callbackId is correctly formed
755
+ * [CB-6035](https://issues.apache.org/jira/browse/CB-6035) Move js-module so it is not loaded on unsupported platforms
756
+ * Removed some iOS6 Deprecations
757
+
758
+ ### 0.3.1 (Feb 05, 2014)
759
+ * [CB-5756](https://issues.apache.org/jira/browse/CB-5756): Android: Use WebView.evaluateJavascript for script injection on Android 4.4+
760
+ * Didn't test on ICS or lower, getDrawable isn't supported until Jellybean
761
+ * add ubuntu platform
762
+ * Adding drawables to the inAppBrowser. This doesn't look quite right, but it's a HUGE improvement over the previous settings
763
+ * [CB-5756](https://issues.apache.org/jira/browse/CB-5756): Android: Use WebView.evaluateJavascript for script injection on Android 4.4+
764
+ * Remove alive from InAppBrowser.js since it didn't catch the case where the browser is closed by the user.
765
+ * [CB-5733](https://issues.apache.org/jira/browse/CB-5733) Fix IAB.close() not working if called before show() animation is done
766
+
767
+ ### 0.2.5 (Dec 4, 2013)
768
+ * Remove merge conflict tag
769
+ * [CB-4724](https://issues.apache.org/jira/browse/CB-4724) fixed UriFormatException
770
+ * add ubuntu platform
771
+ * [CB-3420](https://issues.apache.org/jira/browse/CB-3420) WP feature hidden=yes implemented
772
+ * Added amazon-fireos platform. Change to use amazon-fireos as the platform if user agent string contains 'cordova-amazon-fireos'
773
+
774
+ ### 0.2.4 (Oct 28, 2013)
775
+ * [CB-5128](https://issues.apache.org/jira/browse/CB-5128): added repo + issue tag to plugin.xml for inappbrowser plugin
776
+ * [CB-4995](https://issues.apache.org/jira/browse/CB-4995) Fix crash when WebView is quickly opened then closed.
777
+ * [CB-4930](https://issues.apache.org/jira/browse/CB-4930) - iOS - InAppBrowser should take into account the status bar
778
+ * [CB-5010](https://issues.apache.org/jira/browse/CB-5010) Incremented plugin version on dev branch.
779
+ * [CB-5010](https://issues.apache.org/jira/browse/CB-5010) Updated version and RELEASENOTES.md for release 0.2.3
780
+ * [CB-4858](https://issues.apache.org/jira/browse/CB-4858) - Run IAB methods on the UI thread.
781
+ * [CB-4858](https://issues.apache.org/jira/browse/CB-4858) Convert relative URLs to absolute URLs in JS
782
+ * [CB-3747](https://issues.apache.org/jira/browse/CB-3747) Fix back button having different dismiss logic from the close button.
783
+ * [CB-5021](https://issues.apache.org/jira/browse/CB-5021) Expose closeDialog() as a public function and make it safe to call multiple times.
784
+ * [CB-5021](https://issues.apache.org/jira/browse/CB-5021) Make it safe to call close() multiple times
785
+
786
+ ### 0.2.3 (Oct 9, 2013)
787
+ * [CB-4915](https://issues.apache.org/jira/browse/CB-4915) Incremented plugin version on dev branch.
788
+ * [CB-4926](https://issues.apache.org/jira/browse/CB-4926) Fixes inappbrowser plugin loading for windows8
789
+
790
+ ### 0.2.2 (Sept 25, 2013)
791
+ * [CB-4889](https://issues.apache.org/jira/browse/CB-4889) bumping&resetting version
792
+ * [CB-4788](https://issues.apache.org/jira/browse/CB-4788): Modified the onJsPrompt to warn against Cordova calls
793
+ * [windows8] commandProxy was moved
794
+ * [CB-4788](https://issues.apache.org/jira/browse/CB-4788): Modified the onJsPrompt to warn against Cordova calls
795
+ * [windows8] commandProxy was moved
796
+ * [CB-4889](https://issues.apache.org/jira/browse/CB-4889) renaming core references
797
+ * [CB-4889](https://issues.apache.org/jira/browse/CB-4889) renaming org.apache.cordova.core.inappbrowser to org.apache.cordova.inappbrowser
798
+ * [CB-4864](https://issues.apache.org/jira/browse/CB-4864), [CB-4865](https://issues.apache.org/jira/browse/CB-4865): Minor improvements to InAppBrowser
799
+ * Rename CHANGELOG.md -> RELEASENOTES.md
800
+ * [CB-4792](https://issues.apache.org/jira/browse/CB-4792) Added keepCallback to the show function.
801
+ * [CB-4752](https://issues.apache.org/jira/browse/CB-4752) Incremented plugin version on dev branch.