From 31b01bdd1f5b2fed39d6c5c084155b100f47ae1f Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Thu, 14 Jan 2021 23:51:08 +1100 Subject: [PATCH] Update release notes --- docs/releases/0.1.5.md | 5 +++++ docs/report/labels.md | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/releases/0.1.5.md b/docs/releases/0.1.5.md index 084f84a..d97b00a 100644 --- a/docs/releases/0.1.5.md +++ b/docs/releases/0.1.5.md @@ -37,6 +37,10 @@ Refer to the [build documentation](../../build/build/#overdue-builds) for more i - Purchase Orders - Sales Orders +### Improved Label Printing + +[#1212](https://github.com/inventree/InvenTree/pull/1212) significantly improves the existing label printing functionality. Documentation for the new label printing system [can be found here](../../report/labels). + ### Improved Permission System [#1221](https://github.com/inventree/InvenTree/pull/1221) adds new permission roles as follows: @@ -44,6 +48,7 @@ Refer to the [build documentation](../../build/build/#overdue-builds) for more i - **Part** role split into *Part* and *Part Category* roles - **Stock** role spit into *Stock Item* and *Stock Location* roles + ## Major Bug Fixes | PR | Description | diff --git a/docs/report/labels.md b/docs/report/labels.md index 3f51651..a80f1cc 100644 --- a/docs/report/labels.md +++ b/docs/report/labels.md @@ -4,7 +4,7 @@ title: Custom Labels ## Custom Labels -InvenTree supports printing of custom template-based labels, using the [blabel](https://github.com/Edinburgh-Genome-Foundry/blabel) plugin for Python. +InvenTree supports printing of custom template-based labels, using the [blabel](https://github.com/Edinburgh-Genome-Foundry/blabel) Python library. Custom labels can be generated using simple HTML templates, with support for QR-codes, and conditional formatting using the Jinja template engine. @@ -15,7 +15,7 @@ Simple (generic) label templates are supplied 'out of the box' with InvenTree - ## Label Templates -Label templates are written using a mixture of [HTML](https://www.w3schools.com/html/) and [CSS](https://www.w3schools.com/css). The blabel plugin is based on [weasyprint](https://weasyprint.org/), which supports a *subset* of HTML and CSS features. In addition to supporting HTML and CSS formatting, the label templates support the Jinja templating engine, allowing conditional formatting of the label data. +Label templates are written using a mixture of [HTML](https://www.w3schools.com/html/) and [CSS](https://www.w3schools.com/css). The blabel library is based on [weasyprint](https://weasyprint.org/), which supports a *subset* of HTML and CSS features. In addition to supporting HTML and CSS formatting, the label templates support the Jinja templating engine, allowing conditional formatting of the label data. A label template is a single `.html` file which is uploaded to the InvenTree server by the user.