cordova.plugins.diagnostic 7.2.9 → 7.3.0
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 +8 -0
- package/README.md +567 -456
- package/cordova.plugins.diagnostic.d.ts +65 -1
- package/package.json +1 -1
- package/plugin.xml +1 -1
- package/src/android/Diagnostic.java +78 -0
- package/src/ios/Diagnostic.h +2 -0
- package/src/ios/Diagnostic.m +26 -0
- package/src/ios/Diagnostic_Bluetooth.m +3 -1
- package/src/ios/Diagnostic_Location.m +35 -0
- package/www/android/diagnostic.js +59 -1
- package/www/ios/diagnostic.js +38 -2
- package/www/ios/diagnostic.location.js +19 -3
- package/.specstory/.project.json +0 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
**v7.3.0**
|
|
4
|
+
* (ios & android) feat: add `isLowPowerModeEnabled()` and `onLowPowerModeChange()` to core module to check if low power mode is enabled on the device.
|
|
5
|
+
* (android) feat: add `isIgnoringBatteryOptimizations()` and `requestIgnoreBatteryOptimizations()` to core module to check if the app is ignoring battery optimizations and request to be added to the ignore list.
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
**v7.2.10**
|
|
9
|
+
(ios) feat: support optional specification of desired location accuracy when requesting location accuracy permission.
|
|
10
|
+
|
|
3
11
|
**v7.2.9**
|
|
4
12
|
(ios) crashfix: Refactored local-network permission flow to use one deterministic start path with guarded callback handling:
|
|
5
13
|
- Consolidated duplicated browse/publish start logic into a single helper used by both status and authorisation APIs.
|