@capgo/capacitor-printer 8.0.3 → 8.0.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.
@@ -3,7 +3,7 @@ require 'json'
3
3
  package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
4
4
 
5
5
  Pod::Spec.new do |s|
6
- s.name = 'CapgoPrinter'
6
+ s.name = 'CapgoCapacitorPrinter'
7
7
  s.version = package['version']
8
8
  s.summary = package['description']
9
9
  s.license = package['license']
package/Package.swift CHANGED
@@ -2,11 +2,11 @@
2
2
  import PackageDescription
3
3
 
4
4
  let package = Package(
5
- name: "CapgoPrinter",
5
+ name: "CapgoCapacitorPrinter",
6
6
  platforms: [.iOS(.v15)],
7
7
  products: [
8
8
  .library(
9
- name: "CapgoPrinter",
9
+ name: "CapgoCapacitorPrinter",
10
10
  targets: ["PrinterPlugin"])
11
11
  ],
12
12
  dependencies: [
@@ -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.3";
12
+ private final String pluginVersion = "8.0.5";
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.3"
6
+ private let pluginVersion: String = "8.0.5"
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.3",
3
+ "version": "8.0.5",
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",
@@ -13,7 +13,7 @@
13
13
  "ios/Sources",
14
14
  "ios/Tests",
15
15
  "Package.swift",
16
- "CapgoPrinter.podspec"
16
+ "CapgoCapacitorPrinter.podspec"
17
17
  ],
18
18
  "author": "Capgo",
19
19
  "license": "MPL-2.0",
@@ -37,7 +37,7 @@
37
37
  ],
38
38
  "scripts": {
39
39
  "verify": "npm run verify:ios && npm run verify:android && npm run verify:web",
40
- "verify:ios": "xcodebuild -scheme CapgoPrinter -destination generic/platform=iOS",
40
+ "verify:ios": "xcodebuild -scheme CapgoCapacitorPrinter -destination generic/platform=iOS",
41
41
  "verify:android": "cd android && ./gradlew clean build test && cd ..",
42
42
  "verify:web": "npm run build",
43
43
  "lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint",