diff --git a/README.md b/README.md index 983e38e..8b0f5e8 100644 --- a/README.md +++ b/README.md @@ -58,6 +58,10 @@ The kiosk will display a configuration page initially. * Download and install the driver from [here](https://support.brother.com/g/b/downloadtop.aspx?c=us_ot&lang=en&prod=lpql820nwbeus) * Go into printer preferences and set the label size to paper size = 62mm, 62mm (width), 100mm (length), 3mm (Feed) +### QL-800 - Config type = ```brotherQL800``` +* Download and install the driver from [here](https://support.brother.com/g/b/downloadtop.aspx?c=us_ot&lang=en&prod=lpql800eus) +* Go into printer preferences and set the label size to paper size = 62mm, 62mm (width), 100mm (length), 3mm (Feed) + # Application Configuration The application configuration file can be found in ```/kardinia-kiosk/config.conf```. The file contains the following information: * ```printerType``` The printer type to use, see supported printer types above. (Can be set in the application) diff --git a/package-lock.json b/package-lock.json index 1bbe88c..a95fc68 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "kardinia-kiosk-checkin", - "version": "2.4.3", + "version": "2.4.5", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 8b51c28..aefc6cd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "kardinia-kiosk-checkin", - "version": "2.4.4", + "version": "2.4.5", "description": "Kardinia Checkin Kiosk", "main": "app.js", "scripts": { diff --git a/printerHandler.js b/printerHandler.js index 7624a72..9b726bb 100644 --- a/printerHandler.js +++ b/printerHandler.js @@ -19,6 +19,14 @@ const supportedPrinters = { "height": 100, "rotate": false }, + "brotherQL800": { + friendlyName: "Brother QL800", + USBName: "Brother QL-QL800", + // printOptions: ['-print-settings "fit"'], + "width": 62, + "height": 100, + "rotate": false + }, "brotherQL820NWB": { friendlyName: "Brother QL820NWB", USBName: "Brother QL-820NWB", diff --git a/versions.md b/versions.md index 4faf521..1c8f745 100644 --- a/versions.md +++ b/versions.md @@ -35,4 +35,6 @@ First stable release. ## v2.4.3 * Added extra functionality to provide age from contact's dob as #computedAge ## v2.4.4 -* Added a feature where the poster kiosk window is disable if screen count is 1 \ No newline at end of file +* Added a feature where the poster kiosk window is disable if screen count is 1 +## v2.4.5 +* Added new printer config for Brother-QL800 \ No newline at end of file