diff --git a/README.md b/README.md index 8e34959..ce47bca 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,11 @@ Printer emulator for zpl rendering engine. The emulator is based on the [labelar ## Release notes +### Version 1.5 + +* **New** Support to print multtiple labels in one request. +* **New** Support to print multtiple labels in one request. + ### Version 1.4.1 * **Fix** Minor fixes diff --git a/ZplPrinter.zip b/ZplPrinter.zip index a0ce015..fd12801 100644 Binary files a/ZplPrinter.zip and b/ZplPrinter.zip differ diff --git a/ZplPrinter/js/main.js b/ZplPrinter/js/main.js index 1458f82..a62252a 100644 --- a/ZplPrinter/js/main.js +++ b/ZplPrinter/js/main.js @@ -21,9 +21,6 @@ $(document).ready(function () { var zpls = String.fromCharCode.apply(null, new Uint8Array(info.data)).split(/\^XZ/); if (!configs.keepTcpSocket) { chrome.sockets.tcp.close(info.socketId); - notify('Closing TCP Socket.'); - } else { - notify('Keeping TCP Socket.'); } var factor = (configs.unit == '1') ? 1 : (configs.unit == '2') ? 2.54 : 25.4; var width = parseFloat(configs.width) / factor; diff --git a/ZplPrinter/main.html b/ZplPrinter/main.html index a11adcc..9023b90 100644 --- a/ZplPrinter/main.html +++ b/ZplPrinter/main.html @@ -1,4 +1,5 @@ +
|
-
- |
-
+
\ No newline at end of file
diff --git a/ZplPrinter/manifest.json b/ZplPrinter/manifest.json
index 9343400..12e4bb3 100644
--- a/ZplPrinter/manifest.json
+++ b/ZplPrinter/manifest.json
@@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Zpl Printer",
"short_name": "Zpl Printer",
- "version": "1.4.2",
+ "version": "1.5",
"description": "Printer emulator for zpl rendering engine.",
"author": "Simon Binkert",
"app": {
|