Skip to content

Commit

Permalink
Add release channel options
Browse files Browse the repository at this point in the history
  • Loading branch information
RoboMagus authored Dec 20, 2022
1 parent 313e358 commit 7d4aa70
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions octoprint_preheathelper/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,25 @@ def get_update_information(self):
"repo": "OctoPrint-PreheatHelper",
"current": self._plugin_version,

"stable_branch": {
"name": "Stable",
"branch": "master",
"comittish": ["master"],
},
"prerelease_branches": [
{
"name": "Release Candidate",
"branch": "RC",
"comittish": ["RC", "master"],
},
{
"name": "Development",
"branch": "dev",
"comittish": ["dev", "RC", "master"],
}
],


# update method: pip
"pip": "https://github.com/RoboMagus/OctoPrint-PreheatHelper/archive/{target_version}.zip",
}
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 = "OctoPrint-PreheatHelper"

# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
plugin_version = "0.1.1"
plugin_version = "0.1.2"

# 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 7d4aa70

Please sign in to comment.