From 5a4d4c2da3d9329f5723eeace1797c29de6ea2ae Mon Sep 17 00:00:00 2001 From: "Shell M. Shrader" Date: Mon, 13 Dec 2021 15:22:16 -0500 Subject: [PATCH] fixes #45 --- octoprint_bettergrblsupport/__init__.py | 18 ++++++++++++++++++ setup.py | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/octoprint_bettergrblsupport/__init__.py b/octoprint_bettergrblsupport/__init__.py index 1e27820..ea9cd1f 100644 --- a/octoprint_bettergrblsupport/__init__.py +++ b/octoprint_bettergrblsupport/__init__.py @@ -1012,6 +1012,24 @@ def get_update_information(self): user='synman', repo='OctoPrint-Bettergrblsupport', current=self._plugin_version, + stable_branch={ + "name": "Stable", + "branch": "master", + "commitish": ["master"], + }, + prerelease_branches=[ + { + "name": "Release Candidate", + "branch": "rc", + "commitish": ["rc", "master"], + }, + { + "name": "Development", + "branch": "devel", + "commitish": ["devel", "rc", "master"], + } + + ], pip='https://github.com/synman/OctoPrint-Bettergrblsupport/archive/{target_version}.zip')) # If you want your plugin to be registered within OctoPrint under a different name than what you defined in setup.py diff --git a/setup.py b/setup.py index 6b9e8f3..12e9de3 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ plugin_name = "Better Grbl Support" # The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module -plugin_version = "1.7.5" +plugin_version = "1.7.6dev1" # The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin # module