From 304c0919a7629761db854ac9c036f10a1bcb253b Mon Sep 17 00:00:00 2001 From: make-ing Date: Thu, 10 Sep 2015 11:52:17 +0200 Subject: [PATCH] chaned defualt settings in update software --- .../plugins/softwareupdate/__init__.py | 21 +++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/src/octoprint/plugins/softwareupdate/__init__.py b/src/octoprint/plugins/softwareupdate/__init__.py index 9811f210..35eb45e7 100644 --- a/src/octoprint/plugins/softwareupdate/__init__.py +++ b/src/octoprint/plugins/softwareupdate/__init__.py @@ -136,16 +136,25 @@ class SoftwareUpdatePlugin(octoprint.plugin.BlueprintPlugin, "restart": "octoprint" }, "svgtogcode": { - "checkout_folder": "/home/pi/mrbeam-inkscape-ext", - "type": "git_commit" + "update_folder": "/home/pi/mrbeam-inkscape-ext", + "type": "github_commit", + "repo": "mrbeam-inkscape-ext", + "user": "mrbeam", + "branch": "mrbeam-stable", }, "lcd": { - "checkout_folder": "/home/pi/lcd", - "type": "git_commit" + "update_folder": "/home/pi/lcd", + "type": "github_commit", + "repo": "lcd", + "user": "mrbeam", + "branch": "mrbeam-stable", }, "netconnectd": { - "checkout_folder": "/home/pi/netconnectd", - "type": "git_commit" + "update_folder": "/home/pi/netconnectd", + "type": "github_commit", + "repo": "netconnectd", + "user": "mrbeam", + "branch": "mrbeam-stable", }, },