@capgo/capacitor-printer 8.0.8 → 8.0.10

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.
@@ -32,7 +32,7 @@ android {
32
32
  buildTypes {
33
33
  release {
34
34
  minifyEnabled false
35
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
35
+ proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
36
36
  }
37
37
  }
38
38
  lintOptions {
@@ -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.8";
12
+ private final String pluginVersion = "8.0.10";
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.8"
6
+ private let pluginVersion: String = "8.0.10"
7
7
  public let identifier = "PrinterPlugin"
8
8
  public let jsName = "Printer"
9
9
  public let pluginMethods: [CAPPluginMethod] = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-printer",
3
- "version": "8.0.8",
3
+ "version": "8.0.10",
4
4
  "description": "Capacitor plugin for printing documents, HTML, PDFs, images and web views",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",
@@ -49,7 +49,8 @@
49
49
  "build": "npm run clean && npm run docgen && tsc && rollup -c rollup.config.mjs",
50
50
  "clean": "rimraf ./dist",
51
51
  "watch": "tsc --watch",
52
- "prepublishOnly": "npm run build"
52
+ "prepublishOnly": "npm run build",
53
+ "check:wiring": "node scripts/check-capacitor-plugin-wiring.mjs"
53
54
  },
54
55
  "devDependencies": {
55
56
  "@capacitor/android": "^8.0.0",