@capgo/capacitor-pdf-generator 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/Package.swift CHANGED
@@ -10,7 +10,7 @@ let package = Package(
10
10
  targets: ["PdfGeneratorPlugin"])
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
  ],
15
15
  targets: [
16
16
  .target(
package/README.md CHANGED
@@ -15,6 +15,17 @@ Port of the Cordova [pdf-generator](https://github.com/feedhenry-staff/pdf-gener
15
15
 
16
16
  The most complete doc is available here: https://capgo.app/docs/plugins/pdf-generator/
17
17
 
18
+ ## Compatibility
19
+
20
+ | Plugin version | Capacitor compatibility | Maintained |
21
+ | -------------- | ----------------------- | ---------- |
22
+ | v8.\*.\* | v8.\*.\* | ✅ |
23
+ | v7.\*.\* | v7.\*.\* | On demand |
24
+ | v6.\*.\* | v6.\*.\* | ❌ |
25
+ | v5.\*.\* | v5.\*.\* | ❌ |
26
+
27
+ > **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.
28
+
18
29
  ## Install
19
30
 
20
31
  ```bash
@@ -29,7 +29,7 @@ import java.util.Locale;
29
29
  @CapacitorPlugin(name = "PdfGenerator")
30
30
  public class PdfGeneratorPlugin extends Plugin {
31
31
 
32
- private final String pluginVersion = "8.0.7";
32
+ private final String pluginVersion = "8.0.9";
33
33
 
34
34
  private final Handler mainHandler = new Handler(Looper.getMainLooper());
35
35
  private final List<PdfGenerationTask> tasks = new ArrayList<>();
@@ -4,7 +4,7 @@ import WebKit
4
4
 
5
5
  @objc(PdfGeneratorPlugin)
6
6
  public class PdfGeneratorPlugin: CAPPlugin, CAPBridgedPlugin {
7
- private let pluginVersion: String = "8.0.7"
7
+ private let pluginVersion: String = "8.0.9"
8
8
  public let identifier = "PdfGeneratorPlugin"
9
9
  public let jsName = "PdfGenerator"
10
10
  public let pluginMethods: [CAPPluginMethod] = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-pdf-generator",
3
- "version": "8.0.7",
3
+ "version": "8.0.9",
4
4
  "description": "Generate PDF files from HTML strings or URLs on iOS and Android.",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",