Skip to content

Commit

Permalink
0.0.12
Browse files Browse the repository at this point in the history
fix issue with last PR that broke the ability to recognize currently printing file.
  • Loading branch information
jneilliii committed Feb 13, 2024
1 parent ff58636 commit 3d0cc26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions octoprint_bambu_printer/virtual.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,7 @@ def new_update(self, event_type):
self._sdPrintingPausedSemaphore.clear()
self._sdPrintStarting = False
if not self._sdPrinting:
filename = print_job.get("gcode_file")
# TODO: swap this out to use 8 dot 3 name based on long name/path
filename = print_job.get("subtask_name")
self._selectSdFile(filename)
self._startSdPrint(from_printer=True)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
plugin_name = "OctoPrint-BambuPrinter"

# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
plugin_version = "0.0.11"
plugin_version = "0.0.12"

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

0 comments on commit 3d0cc26

Please sign in to comment.