Skip to content

Commit d0fd4a5

Browse files
committed
0.1.7
add back missing PREPARE printing state and associate printing status
1 parent 3c218a5 commit d0fd4a5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

octoprint_bambu_printer/printer/bambu_virtual_printer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def _update_printer_info(self):
193193
or print_job_state == "FAILED"
194194
):
195195
self.change_state(self._state_idle)
196-
elif print_job_state == "RUNNING":
196+
elif print_job_state == "RUNNING" or print_job_state == "PREPARE":
197197
self.change_state(self._state_printing)
198198
elif print_job_state == "PAUSE":
199199
self.change_state(self._state_paused)

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
plugin_name = "OctoPrint-BambuPrinter"
1515

1616
# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
17-
plugin_version = "0.1.6"
17+
plugin_version = "0.1.7"
1818

1919
# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
2020
# module

0 commit comments

Comments
 (0)