@capgo/capacitor-printer 8.0.6 → 8.0.7
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 @@ Perfect for invoice generation, report printing, document sharing, and any app r
|
|
|
24
24
|
|
|
25
25
|
The most complete doc is available here: https://capgo.app/docs/plugins/printer/
|
|
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
|
|
@@ -9,7 +9,7 @@ import com.getcapacitor.annotation.CapacitorPlugin;
|
|
|
9
9
|
@CapacitorPlugin(name = "Printer")
|
|
10
10
|
public class PrinterPlugin extends Plugin {
|
|
11
11
|
|
|
12
|
-
private final String pluginVersion = "8.0.
|
|
12
|
+
private final String pluginVersion = "8.0.7";
|
|
13
13
|
|
|
14
14
|
private Printer implementation;
|
|
15
15
|
|
|
@@ -3,7 +3,7 @@ import Capacitor
|
|
|
3
3
|
|
|
4
4
|
@objc(PrinterPlugin)
|
|
5
5
|
public class PrinterPlugin: CAPPlugin, CAPBridgedPlugin {
|
|
6
|
-
private let pluginVersion: String = "8.0.
|
|
6
|
+
private let pluginVersion: String = "8.0.7"
|
|
7
7
|
public let identifier = "PrinterPlugin"
|
|
8
8
|
public let jsName = "Printer"
|
|
9
9
|
public let pluginMethods: [CAPPluginMethod] = [
|
package/package.json
CHANGED