Guy Sheffer
Guy Sheffer
They did that because markdown uses notations. When posting code you should add before it `` ``` ``. and again after it `` ``` ``. That way the code would...
That error means there is another error in your octoprint.log. I can't understand what the error is without seeing that. Can you please provide your octoprint.log? Thanks.
Error from the log is: ```python3 Traceback (most recent call last): File "/home/pi/oprint/lib/python3.7/site-packages/flask/app.py", line 2447, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/lib/python3.7/site-packages/flask/app.py", line 1952, in full_dispatch_request rv = self.handle_user_exception(e) File...
@Nicoautoxp This is the error in the plugin: ``` Traceback (most recent call last): File "/home/pi/oprint/lib/python3.7/site-packages/flask/app.py", line 2447, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/lib/python3.7/site-packages/flask/app.py", line 1952, in full_dispatch_request rv...
@Nicoautoxp I jsut had a look, there arn't any tabs there. please make sure you are using the latest version of the plugin
Nope, i have no access to settings. I think you should just change the default branch, after reading i am not sure its possible for a user repo to give...
I think its best if you just change the default branch, its under "Settings>Branches' then there is a default branch dropdown, set it to devel and not master
It not something I have the time to add, if you have a PR for this will gladly review test and merge
What is needed to calculate the bounding box out of an SVG path?
For now what I did was use inkscape, which is a nasty hack, but I had a time limit to solve this: ``` inkscape --without-gui --query-all /tmp/test.svg ``` With a...