diff --git a/README.md b/README.md index 1dcff97..8821ec6 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ The easiest way to set this up, is using cups and configure a RAW printer device ## Installation > [!IMPORTANT] -> This plugin is only compatible with InvenTree>=0.16 because this uses the new label printer driver interface introduced with [inventree/InvenTree#4824](https://github.com/inventree/InvenTree/pull/4824). +> This plugin is only compatible with InvenTree>=0.16 because this uses the new label printer driver interface introduced with [inventree/InvenTree#4824](https://github.com/inventree/InvenTree/pull/4824) and was fixed with 0.16 to work inside of workers. Goto "Admin Center > Plugins > Install Plugin" and enter `inventree-dymo-plugin` as package name. diff --git a/inventree_dymo/InvenTreeDymoPlugin.py b/inventree_dymo/InvenTreeDymoPlugin.py index cbd9462..75e26ef 100644 --- a/inventree_dymo/InvenTreeDymoPlugin.py +++ b/inventree_dymo/InvenTreeDymoPlugin.py @@ -18,7 +18,8 @@ class InvenTreeDymoPlugin(InvenTreePlugin): VERSION = DYMO_PLUGIN_VERSION # Machine driver registry is only available in InvenTree 0.14.0 and later - MIN_VERSION = "0.14.0" + # Machine driver interface was fixed with 0.16.0 to work inside of inventree workers + MIN_VERSION = "0.16.0" TITLE = "InvenTree Dymo Plugin" SLUG = "inventree-dymo-plugin"