@capgo/capacitor-audio-recorder 8.0.7 → 8.0.9

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 voice memo apps, audio messaging, podcast recording, and any app nee
25
25
 
26
26
  The most complete doc is available here: https://capgo.app/docs/plugins/audio-recorder/
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
@@ -24,7 +24,7 @@ import java.util.Locale;
24
24
  )
25
25
  public class CapacitorAudioRecorderPlugin extends com.getcapacitor.Plugin {
26
26
 
27
- private final String pluginVersion = "8.0.7";
27
+ private final String pluginVersion = "8.0.9";
28
28
 
29
29
  private enum RecordingStatus {
30
30
  INACTIVE,
@@ -4,7 +4,7 @@ import Foundation
4
4
 
5
5
  @objc(CapacitorAudioRecorderPlugin)
6
6
  public class CapacitorAudioRecorderPlugin: CAPPlugin, CAPBridgedPlugin, AVAudioRecorderDelegate {
7
- private let pluginVersion: String = "8.0.7"
7
+ private let pluginVersion: String = "8.0.9"
8
8
  public let identifier = "CapacitorAudioRecorderPlugin"
9
9
  public let jsName = "CapacitorAudioRecorder"
10
10
  public let pluginMethods: [CAPPluginMethod] = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-audio-recorder",
3
- "version": "8.0.7",
3
+ "version": "8.0.9",
4
4
  "description": "Record audio on iOS, Android, and Web with Capacitor",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",