@capgo/capacitor-file-compressor 8.0.10 → 8.0.12

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
@@ -24,6 +24,17 @@ Essential for apps that need to optimize image uploads, reduce storage, or impro
24
24
 
25
25
  The most complete doc is available here: https://capgo.app/docs/plugins/file-compressor/
26
26
 
27
+ ## Compatibility
28
+
29
+ | Plugin version | Capacitor compatibility | Maintained |
30
+ | -------------- | ----------------------- | ---------- |
31
+ | v8.\*.\* | v8.\*.\* | ✅ |
32
+ | v7.\*.\* | v7.\*.\* | On demand |
33
+ | v6.\*.\* | v6.\*.\* | ❌ |
34
+ | v5.\*.\* | v5.\*.\* | ❌ |
35
+
36
+ > **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.
37
+
27
38
  ## Install
28
39
 
29
40
  ```bash
@@ -18,7 +18,7 @@ import java.util.UUID;
18
18
  @CapacitorPlugin(name = "FileCompressor")
19
19
  public class FileCompressorPlugin extends Plugin {
20
20
 
21
- private final String pluginVersion = "8.0.10";
21
+ private final String pluginVersion = "8.0.12";
22
22
 
23
23
  @PluginMethod
24
24
  public void compressImage(PluginCall call) {
@@ -4,7 +4,7 @@ import UIKit
4
4
 
5
5
  @objc(FileCompressorPlugin)
6
6
  public class FileCompressorPlugin: CAPPlugin, CAPBridgedPlugin {
7
- private let pluginVersion: String = "8.0.10"
7
+ private let pluginVersion: String = "8.0.12"
8
8
  public let identifier = "FileCompressorPlugin"
9
9
  public let jsName = "FileCompressor"
10
10
  public let pluginMethods: [CAPPluginMethod] = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-file-compressor",
3
- "version": "8.0.10",
3
+ "version": "8.0.12",
4
4
  "description": "Capacitor plugin for efficient image compression supporting PNG, JPEG, and WebP formats across iOS, Android, and Web platforms",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",