@capgo/capacitor-realtimekit 8.0.8 → 8.0.10

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/Package.swift CHANGED
@@ -10,7 +10,7 @@ let package = Package(
10
10
  targets: ["CapacitorRealtimekitPlugin"])
11
11
  ],
12
12
  dependencies: [
13
- .package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "8.0.1"),
13
+ .package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "8.0.0"),
14
14
  .package(url: "https://github.com/dyte-in/RealtimeKitCoreiOS.git", from: "1.6.0"),
15
15
  .package(url: "https://github.com/dyte-in/RealtimeKitUI.git", from: "0.5.3")
16
16
  ],
package/README.md CHANGED
@@ -12,6 +12,17 @@ Cloudflare Calls integration for Capacitor apps with built-in UI for meetings.
12
12
 
13
13
  The most complete doc is available here: https://capgo.app/docs/plugins/realtimekit/
14
14
 
15
+ ## Compatibility
16
+
17
+ | Plugin version | Capacitor compatibility | Maintained |
18
+ | -------------- | ----------------------- | ---------- |
19
+ | v8.\*.\* | v8.\*.\* | ✅ |
20
+ | v7.\*.\* | v7.\*.\* | On demand |
21
+ | v6.\*.\* | v6.\*.\* | ❌ |
22
+ | v5.\*.\* | v5.\*.\* | ❌ |
23
+
24
+ > **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.
25
+
15
26
  ## Install
16
27
 
17
28
  ```bash
@@ -27,7 +27,7 @@ public class CapacitorRealtimekitPlugin extends Plugin {
27
27
 
28
28
  private static final String TAG = "RealtimekitPlugin";
29
29
  private static final String REALTIMEKIT_BASE_DOMAIN = "realtime.cloudflare.com";
30
- private final String pluginVersion = "8.0.8";
30
+ private final String pluginVersion = "8.0.10";
31
31
  private boolean isInitialized = false;
32
32
  private PendingMeetingRequest pendingMeetingRequest;
33
33
 
@@ -7,7 +7,7 @@ import Capacitor
7
7
  */
8
8
  @objc(CapacitorRealtimekitPlugin)
9
9
  public class CapacitorRealtimekitPlugin: CAPPlugin, CAPBridgedPlugin {
10
- private let pluginVersion: String = "8.0.8"
10
+ private let pluginVersion: String = "8.0.10"
11
11
  public let identifier = "CapacitorRealtimekitPlugin"
12
12
  public let jsName = "CapacitorRealtimekit"
13
13
  public let pluginMethods: [CAPPluginMethod] = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-realtimekit",
3
- "version": "8.0.8",
3
+ "version": "8.0.10",
4
4
  "description": "Cloudflare Calls integration for Capacitor apps with built-in UI for meetings.",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",