From 4e40e87c6ce9ff75d3b1f3ddb295f5223ff5b4c7 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Sun, 14 Aug 2022 20:56:11 +0200 Subject: [PATCH] add plugin version to docs --- docs/extend/plugins.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/extend/plugins.md b/docs/extend/plugins.md index a980ed0..b405767 100644 --- a/docs/extend/plugins.md +++ b/docs/extend/plugins.md @@ -71,8 +71,11 @@ TITLE = None # A nice human friendly name for the plugin -> used in titles, as AUTHOR = None # Author of the plugin, git commit information is used if not present PUBLISH_DATE = None # Publishing date of the plugin, git commit information is used if not present -VERSION = None # Version of the plugin WEBSITE = None # Website for the plugin, developer etc. -> is shown in plugin overview if set + +VERSION = None # Version of the plugin +MIN_VERSION = None # Lowest InvenTree version number that is supported by the plugin +MAX_VERSION = None # Highest InvenTree version number that is supported by the plugin ``` Refer to the [sample plugins](https://github.com/inventree/InvenTree/tree/master/InvenTree/plugin/samples) for further examples.