@capgo/capacitor-downloader 8.1.4 → 8.1.6

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
@@ -28,6 +28,17 @@ Perfect for downloading large media files, offline content, app updates, and any
28
28
 
29
29
  The most complete doc is available here: https://capgo.app/docs/plugins/downloader/
30
30
 
31
+ ## Compatibility
32
+
33
+ | Plugin version | Capacitor compatibility | Maintained |
34
+ | -------------- | ----------------------- | ---------- |
35
+ | v8.\*.\* | v8.\*.\* | ✅ |
36
+ | v7.\*.\* | v7.\*.\* | On demand |
37
+ | v6.\*.\* | v6.\*.\* | ❌ |
38
+ | v5.\*.\* | v5.\*.\* | ❌ |
39
+
40
+ > **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.
41
+
31
42
  ## Install
32
43
 
33
44
  ```bash
@@ -23,7 +23,7 @@ import java.util.Map;
23
23
  @CapacitorPlugin(name = "CapacitorDownloader")
24
24
  public class CapacitorDownloaderPlugin extends Plugin {
25
25
 
26
- private final String pluginVersion = "8.1.4";
26
+ private final String pluginVersion = "8.1.6";
27
27
 
28
28
  private DownloadManager downloadManager;
29
29
  private final Map<String, Long> downloads = new HashMap<>();
@@ -8,7 +8,7 @@ import Capacitor
8
8
 
9
9
  @objc(CapacitorDownloaderPlugin)
10
10
  public class CapacitorDownloaderPlugin: CAPPlugin, CAPBridgedPlugin {
11
- private let pluginVersion: String = "8.1.4"
11
+ private let pluginVersion: String = "8.1.6"
12
12
  public let identifier = "CapacitorDownloaderPlugin"
13
13
  public let jsName = "CapacitorDownloader"
14
14
  public let pluginMethods: [CAPPluginMethod] = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-downloader",
3
- "version": "8.1.4",
3
+ "version": "8.1.6",
4
4
  "description": "Download file in background or foreground",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",