Merge commit '0bdd62c35b6cfed3a9d0e72ad37647487bf95bb1' into devel

This commit is contained in:
thelastWallE 2021-05-30 15:00:48 +02:00
commit 84bc7c9ddd
4 changed files with 42 additions and 2 deletions

View File

@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: "[Feature Request]"
labels: enhancement
assignees: ''
---
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
Add any other context or screenshots about the feature request here.

View File

@ -0,0 +1,20 @@
---
name: Issue Template
about: For bugs, problems etc.
title: ''
labels: new
assignees: ''
---
Before submitting your issue please make sure to provide the following information
About your environment:
Distribution version. Eg. octopi, armbian
Octoprint version
An OctoPrint log file. You can access and download it in the OctoPrint settings under the "Logging" menu entry.
Thanks

View File

@ -386,7 +386,7 @@ class KlipperPlugin(
elif "// probe" in line or "// Failed to verify BLTouch" in line:
msg = line.strip('/')
self.log_info(msg)
write_parsing_response_buffer()
self.write_parsing_response_buffer()
elif "//" in line:
# add lines with // to a buffer
self._message = self._message + line.strip('/')

View File

@ -19,7 +19,7 @@ plugin_package = "octoprint_klipper"
plugin_name = "OctoKlipper"
plugin_version = "0.3.8.2"
plugin_version = "0.3.8.3"
plugin_description = """A plugin for OctoPrint to configure,control and monitor the Klipper 3D printer software."""