Skip to content

Commit

Permalink
fix: min version
Browse files Browse the repository at this point in the history
  • Loading branch information
wolflu05 committed Jul 10, 2024
1 parent c6d88b0 commit 074f326
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
3 changes: 2 additions & 1 deletion inventree_dymo/InvenTreeDymoPlugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 074f326

Please sign in to comment.