@capgo/capacitor-downloader 7.1.3 → 7.1.5

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
@@ -11,6 +11,10 @@ Download file in background or foreground
11
11
 
12
12
  WIP: the plugin is not yet ready for production
13
13
 
14
+ ## Documentation
15
+
16
+ The most complete doc is available here: https://capgo.app/docs/plugins/downloader/
17
+
14
18
  ## Install
15
19
 
16
20
  ```bash
@@ -22,7 +22,7 @@ import java.util.Map;
22
22
  @CapacitorPlugin(name = "CapacitorDownloader")
23
23
  public class CapacitorDownloaderPlugin extends Plugin {
24
24
 
25
- private final String PLUGIN_VERSION = "7.1.3";
25
+ private final String PLUGIN_VERSION = "7.1.5";
26
26
 
27
27
  private DownloadManager downloadManager;
28
28
  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 PLUGIN_VERSION: String = "7.1.3"
11
+ private let PLUGIN_VERSION: String = "7.1.5"
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": "7.1.3",
3
+ "version": "7.1.5",
4
4
  "description": "Download file in background or foreground",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",