@rdlabo/capacitor-brotherprint 6.2.0-1 → 6.2.0-2

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
@@ -28,6 +28,10 @@ Amazon Affiliate Links: **https://amzn.to/3AiiOFT**
28
28
 
29
29
  ※1 The iOS/BT implementation for the QL-820NWBc is in place, but it’s uncertain if it functions correctly. It’s unclear whether this is an implementation issue, as Brother’s official app also doesn’t work well.
30
30
 
31
+ ### Note
32
+
33
+ iOS `BRLMQLPrintSettingsLabelSize.dieCutW29H90` may work as `BRLMQLPrintSettingsLabelSize.dieCutW29H42`.
34
+
31
35
  ## How to install
32
36
 
33
37
  ```
@@ -24,7 +24,7 @@ class PrinterSettingsModel {
24
24
  case "ScaleValue":
25
25
  printSettings.scaleMode = BRLMPrintSettingsScaleMode.scaleValue
26
26
  if call.getInt("scaleValue") != nil {
27
- printSettings.scaleValue = CGFloat(call.getInt("scaleValue")!)
27
+ printSettings.scaleValue = CGFloat(call.getFloat("scaleValue")!)
28
28
  }
29
29
  default: break
30
30
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rdlabo/capacitor-brotherprint",
3
- "version": "6.2.0-1",
3
+ "version": "6.2.0-2",
4
4
  "description": "Capacitor plugin for Brother Print SDK",
5
5
  "main": "dist/plugin.js",
6
6
  "module": "dist/esm/index.js",