cordova.plugins.diagnostic 7.1.0 → 7.1.2
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.
- package/CHANGELOG.md +20 -1
- package/README.md +302 -142
- package/cordova.plugins.diagnostic.d.ts +13 -0
- package/package.json +1 -1
- package/plugin.xml +1 -1
- package/src/android/Diagnostic.java +47 -7
- package/src/android/Diagnostic_Camera.java +41 -2
- package/src/ios/Diagnostic.h +1 -0
- package/src/ios/Diagnostic.m +17 -0
- package/src/ios/Diagnostic_Bluetooth.m +10 -13
- package/src/ios/Diagnostic_Camera.m +1 -1
- package/www/android/diagnostic.camera.js +18 -18
- package/www/android/diagnostic.js +16 -0
- package/www/ios/diagnostic.camera.js +3 -5
- package/www/ios/diagnostic.js +16 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,29 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
**v7.1.2**
|
|
4
|
+
* (Android) fix: Data roaming setting not available on API 32+
|
|
5
|
+
* (Android) Support new media storage permissions on Android 13 / API 33.
|
|
6
|
+
* Resolves [#488](https://github.com/dpa99c/cordova-diagnostic-plugin/issues/488).
|
|
7
|
+
* (ios) bugfix: Check argument for Photo Library Access Level is not null before attempting to perform string compare.
|
|
8
|
+
* Resolves [#483](https://github.com/dpa99c/cordova-diagnostic-plugin/issues/483).
|
|
9
|
+
* (doc) Document issue with "Only this time" option in run-time permissions on Android 11+.
|
|
10
|
+
* Resolves [#486](https://github.com/dpa99c/cordova-diagnostic-plugin/issues/486).
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
**v7.1.1**
|
|
14
|
+
* (Android, iOS) feat: Add `isMobileDataEnabled()` to core module.
|
|
15
|
+
* Based on PR [#478](https://github.com/dpa99c/cordova-diagnostic-plugin/pull/478)
|
|
16
|
+
* (iOS) bugfix: Only allow Bluetooth permission request if not already requested.
|
|
17
|
+
* Resolves [#477](https://github.com/dpa99c/cordova-diagnostic-plugin/issues/477).
|
|
18
|
+
* (iOS) bugfix: Resolve the correct authorization status after requesting camera roll authorization and granting LIMITED access.
|
|
19
|
+
* Resolves [#476](https://github.com/dpa99c/cordova-diagnostic-plugin/issues/476).
|
|
20
|
+
|
|
21
|
+
|
|
3
22
|
**v7.1.0**
|
|
4
23
|
* (Android, iOS) feat: add support to fetch device OS and build SDK details
|
|
5
24
|
|
|
6
|
-
**v7.0.0**
|
|
7
25
|
|
|
26
|
+
**v7.0.0**
|
|
8
27
|
* (Android) BREAKING chore: Remove deprecated aliases `cordova.plugins.diagnostic.runtimePermission` and `cordova.plugins.diagnostic.runtimePermissionStatus`
|
|
9
28
|
- Use `cordova.plugins.diagnostic.permission` and `cordova.plugins.diagnostic.permissionStatus` instead.
|
|
10
29
|
* (iOS) feat: Add support for Photo Library access levels on iOS 14+
|