@capgo/capacitor-accelerometer 8.0.11 → 8.0.13

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/README.md CHANGED
@@ -25,6 +25,17 @@ Perfect for fitness apps, games, gesture detection, and motion-based interfaces.
25
25
 
26
26
  The most complete doc is available here: https://capgo.app/docs/plugins/accelerometer/
27
27
 
28
+ ## Compatibility
29
+
30
+ | Plugin version | Capacitor compatibility | Maintained |
31
+ | -------------- | ----------------------- | ---------- |
32
+ | v8.\*.\* | v8.\*.\* | ✅ |
33
+ | v7.\*.\* | v7.\*.\* | On demand |
34
+ | v6.\*.\* | v6.\*.\* | ❌ |
35
+ | v5.\*.\* | v5.\*.\* | ❌ |
36
+
37
+ > **Note:** The major version of this plugin follows the major version of Capacitor. Use the version that matches your Capacitor installation (e.g., plugin v8 for Capacitor 8). Only the latest major version is actively maintained.
38
+
28
39
  ## Install
29
40
 
30
41
  ```bash
@@ -15,7 +15,7 @@ import com.getcapacitor.annotation.CapacitorPlugin;
15
15
  @CapacitorPlugin(name = "CapacitorAccelerometer")
16
16
  public class CapacitorAccelerometerPlugin extends Plugin implements SensorEventListener {
17
17
 
18
- private final String pluginVersion = "8.0.11";
18
+ private final String pluginVersion = "8.0.13";
19
19
  private static final String PERMISSION_GRANTED = "granted";
20
20
  private static final String PERMISSION_DENIED = "denied";
21
21
 
@@ -4,7 +4,7 @@ import Foundation
4
4
 
5
5
  @objc(CapacitorAccelerometerPlugin)
6
6
  public class CapacitorAccelerometerPlugin: CAPPlugin, CAPBridgedPlugin {
7
- private let pluginVersion: String = "8.0.11"
7
+ private let pluginVersion: String = "8.0.13"
8
8
  public let identifier = "CapacitorAccelerometerPlugin"
9
9
  public let jsName = "CapacitorAccelerometer"
10
10
  public let pluginMethods: [CAPPluginMethod] = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-accelerometer",
3
- "version": "8.0.11",
3
+ "version": "8.0.13",
4
4
  "description": "Read device accelerometer measurements with Capacitor",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",