Skip to content

Commit

Permalink
0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jneilliii committed Aug 6, 2018
1 parent af41d01 commit 0301f6c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ or manually using this URL:

## Changelog

**[0.1.4]** (08/06/2018)
- Fixed issue introduced with previous updates.

**[0.1.3]** (08/05/2018)

**Added**
Expand Down
2 changes: 1 addition & 1 deletion octoprint_bedlevelvisualizer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def processGCODE(self, comm, line, *args, **kwargs):

new_line = re.findall(r"(\+?\-?\d*\.\d*)",line)

if re.match(r"^Bed.+$", line.strip()):
if re.match(r"^Bed x:.+$", line.strip()):
self.old_marlin = True

if self._settings.get(["stripFirst"]):
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 = "Bed Visualizer"

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

# 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 0301f6c

Please sign in to comment.