Skip to content

Commit

Permalink
fixes #45
Browse files Browse the repository at this point in the history
  • Loading branch information
synman committed Dec 13, 2021
1 parent a7e01fb commit 5a4d4c2
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions octoprint_bettergrblsupport/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5a4d4c2

Please sign in to comment.