Thomas Mullaney

Results 27 comments of Thomas Mullaney

All of that could be done with python. Feel free to open a PR. At this time I am not really interested in adding that information myself.

Interesting. I will double check this on my printer to see if I get the same results. Feel free to submit a PR if you find the bug.

Could you provide more information on your setup? I am not seeing these issues, but am running on a pi with python 2. I need to update to python 3,...

The lines have to be highlighted when you save to be shown when printing, but even if they are not then they should not vanish. I will take some time...

I just updated to python3 since I have been meaning to for a while. I am unable to create duplicates on both python2 and python3. There has to be something...

That is interesting. Looking at the code [here](https://github.com/tpmullan/OctoPrint-DetailedProgress/blob/fa91b49b8f4dbe70d05039c9b3223e0d27795aa1/octoprint_detailedprogress/__init__.py#L52) I would think it would not generate any messages since the layer is not changing. But if there are things that trigger...

I will have to look at the code, but I think this plugin should not affect which ip shows up. I think it gets that info from somewhere and does...

I think that message is hard coded to be displayed when the printer boots. If you want to make that programmable it should be possible, but will need a code...

Found the line of code that displays the IP address on the screen: https://github.com/tpmullan/OctoPrint-DetailedProgress/blob/master/octoprint_detailedprogress/__init__.py#L51 ```python self._printer.commands("M117 IP {}".format(ip)) ``` If we add a variable to make that optional then we...

I added the code to the release that I just made that will make displaying the ip on start optional. If that is good enough to close this bug please...