Skip to content

Releases: OllisGit/OctoPrint-DisplayLayerProgress

V1.15.0

21 Dec 17:42
Compare
Choose a tag to compare

[Enhancement]

  • #89 OctoPrint V1.4.0 and Python 3 and compatible. Still works with OctoPrint V1.3.x and Python V2.7.x
  • #99 removed deprecated api

downloaded

Support my Efforts

This plugin, as well as my other plugins were developed in my spare time.
If you like it, I would be thankful about a cup of coffee :)

More coffee, more code

V1.14.2

26 Oct 15:16
Compare
Choose a tag to compare

[BugFix]

  • #90 current height now detects relative movement
G28
;Absolute positioning
G90
G1 Z5
G1 Z10
;Relative positioning
G91
G1 Z5    --> current height is now 20mm

downloaded

Support my Efforts

This plugin, as well as my other plugins were developed in my spare time.
If you like it, I would be thankful about a cup of coffee :)

More coffee, more code

V1.14.1

24 Oct 16:11
Compare
Choose a tag to compare

[BugFix]

  • #91 fan speed precision. If you use 50% fan-speed in slicer the plugin showed 49%. Reason: "rounding error"

downloaded

V1.14.0

01 Oct 18:50
Compare
Choose a tag to compare

[Enhancement]

  • #85 added unformatted output in seconds for lastLayerDuration and averageLayerDuration. The payload of events and rest api look like this:
    ...
    "averageLayerDuration": "0h:01m:03s",
    "averageLayerDurationInSeconds": 63,
    
    "lastLayerDuration": "0h:00m:58s",
    "lastLayerDurationInSeconds": 58,
    ...

downloaded

V1.13.0

19 Aug 17:47
Compare
Choose a tag to compare

[Enhancement]

  • #82 It is now possible to define an expression in the settings-page for the max-z height value
    image

downloaded

V1.12.0

17 Aug 14:17
Compare
Choose a tag to compare

[Enhancement]

  • #79 REST-API to receive all values, like height/layer and other data. See Developer-Section in README.md for more details

[BugFix]

  • #76 Ignore negative extruder moves when calculating max height

downloaded

V1.11.0

18 May 16:28
Compare
Choose a tag to compare

[Enhancement]

  • #74 add last layer-duration and average layer-duration. See plugin settings how to configure the output format.
  • #73, #75 added Slic3r- and ideaMaker-Pattern
  • Send events via eventbus, so that other plugins can listen on this (e.g. layer changed). More details see readme.md.
  • Add download statistics to readme.md

downloaded

V1.10.0

17 Mar 16:21
Compare
Choose a tag to compare

[BugFix]

  • #70 Prevent that M117 messages are send twice, if message is not changed

[Enhancement]

  • #68, #53 feedrate could now be calculated with a factor. So, it is possible to change from mm/minute to mm/second
  • Turn on/off plugin logging. Events and G-Code is logged to separat log-file

downloaded

V1.9.0

12 Jan 17:31
Compare
Choose a tag to compare

[BugFix]

[Enhancement]

  • #67 new keyword printtime_left
    image

V1.8.1

10 Jan 17:47
Compare
Choose a tag to compare

[BugFix]
#66 fixed "Can't remove the Printer Display Desktop pop-up"
#64 new option "Update Printer Display only while printing", so no conflict for other Plugins that use M117 before printing like "ipOnConnect"