Merge branch 'master' into devel
Conflicts: setup.py src/octoprint/gcodefiles.py src/octoprint/printer.py src/octoprint/server/ajax/control.py src/octoprint/server/ajax/gcodefiles.py src/octoprint/static/js/app/dataupdater.js src/octoprint/static/js/app/main.js src/octoprint/util/comm.py
This commit is contained in:
commit
0509eb3f0a
2 changed files with 2 additions and 0 deletions
|
|
@ -42,6 +42,7 @@ function DataUpdater(loginStateViewModel, connectionViewModel, printerStateViewM
|
|||
$("#offline_overlay").hide();
|
||||
self.logViewModel.requestData();
|
||||
self.timelapseViewModel.requestData();
|
||||
$("#webcam_image").attr("src", CONFIG_WEBCAM_STREAM + "?" + new Date().getTime());
|
||||
self.loginStateViewModel.requestData();
|
||||
self.gcodeFilesViewModel.requestData();
|
||||
self.gcodeViewModel.reset();
|
||||
|
|
|
|||
|
|
@ -728,6 +728,7 @@ class MachineCom(object):
|
|||
})
|
||||
elif 'Writing to file' in line:
|
||||
# anwer to M28, at least on Marlin, Repetier and Sprinter: "Writing to file: %s"
|
||||
self._printSection = "CUSTOM"
|
||||
self._changeState(self.STATE_PRINTING)
|
||||
line = "ok"
|
||||
elif 'Done printing file' in line:
|
||||
|
|
|
|||
Loading…
Reference in a new issue