Skip to content

Commit 5a4d4c2

Browse files
committed
fixes #45
1 parent a7e01fb commit 5a4d4c2

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

octoprint_bettergrblsupport/__init__.py

+18
Original file line numberDiff line numberDiff line change
@@ -1012,6 +1012,24 @@ def get_update_information(self):
10121012
user='synman',
10131013
repo='OctoPrint-Bettergrblsupport',
10141014
current=self._plugin_version,
1015+
stable_branch={
1016+
"name": "Stable",
1017+
"branch": "master",
1018+
"commitish": ["master"],
1019+
},
1020+
prerelease_branches=[
1021+
{
1022+
"name": "Release Candidate",
1023+
"branch": "rc",
1024+
"commitish": ["rc", "master"],
1025+
},
1026+
{
1027+
"name": "Development",
1028+
"branch": "devel",
1029+
"commitish": ["devel", "rc", "master"],
1030+
}
1031+
1032+
],
10151033
pip='https://github.com/synman/OctoPrint-Bettergrblsupport/archive/{target_version}.zip'))
10161034

10171035
# If you want your plugin to be registered within OctoPrint under a different name than what you defined in setup.py

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
plugin_name = "Better Grbl Support"
1515

1616
# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
17-
plugin_version = "1.7.5"
17+
plugin_version = "1.7.6dev1"
1818

1919
# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
2020
# module

0 commit comments

Comments
 (0)