We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04460c0 commit 3e551feCopy full SHA for 3e551fe
octoprint_firmware_check/__init__.py
@@ -132,6 +132,18 @@ def get_update_information(self):
132
user="OctoPrint",
133
repo="OctoPrint-FirmwareCheck",
134
current=self._plugin_version,
135
+ stable_branch={
136
+ "name": "Stable",
137
+ "branch": "master",
138
+ "comittish": ["master"],
139
+ },
140
+ prerelease_branches=[
141
+ {
142
+ "name": "Prerelease",
143
+ "branch": "devel",
144
+ "comittish": ["devel", "master"],
145
+ }
146
+ ],
147
# update method: pip
148
pip="https://github.com/OctoPrint/OctoPrint-FirmwareCheck/archive/{target_version}.zip",
149
)
0 commit comments