diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..11eb268 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -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. diff --git a/.github/ISSUE_TEMPLATE/issue-template.md b/.github/ISSUE_TEMPLATE/issue-template.md new file mode 100644 index 0000000..68c2bb4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/issue-template.md @@ -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 diff --git a/octoprint_klipper/__init__.py b/octoprint_klipper/__init__.py index 47ea17d..d171c3e 100644 --- a/octoprint_klipper/__init__.py +++ b/octoprint_klipper/__init__.py @@ -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('/') diff --git a/setup.py b/setup.py index cf3a836..b27da43 100644 --- a/setup.py +++ b/setup.py @@ -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."""