File tree 2 files changed +19
-1
lines changed
octoprint_bettergrblsupport
2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -1012,6 +1012,24 @@ def get_update_information(self):
1012
1012
user = 'synman' ,
1013
1013
repo = 'OctoPrint-Bettergrblsupport' ,
1014
1014
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
+ ],
1015
1033
pip = 'https://github.com/synman/OctoPrint-Bettergrblsupport/archive/{target_version}.zip' ))
1016
1034
1017
1035
# If you want your plugin to be registered within OctoPrint under a different name than what you defined in setup.py
Original file line number Diff line number Diff line change 14
14
plugin_name = "Better Grbl Support"
15
15
16
16
# 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 "
18
18
19
19
# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
20
20
# module
You can’t perform that action at this time.
0 commit comments