Bigtree3DPluginSuit
Bigtree3DPluginSuit copied to clipboard
Unable to Eject after saving with 'Bigtree3D to Removable Drive'
Whenever I use this plugin to save the gcode to file, I can't use the Eject function to close the drive access before removal. This works fine when I save to drive without the Bigtree3D plugin.
It looks like something plugin related is keeping the file open
I concur - I see the same thing.
Yes, I have found the problem, which is not caused by file occupation. I am working on the problem, and I will update the plug-in again and inform you after the problem is solved.
@bigtreetech Still same problem here.
Is there any update on this topic yet?
thanks in advance
Sorry, guys; I fixed the problem in the last update, but I forgot to notify everyone, so you can use the new version instead.
Oh thanks. Will try this later and report accordingly.
@bigtreetech Good evening sir, what new version you are referring to? Because the latest commit of the master branch does still not work! 😩
Sorry, guys; I fixed the problem in the last update, but I forgot to notify everyone, so you can use the new version instead.
I also can't find that updated version.
@bigtreetech Would be nice, if you could take a stand on the 'update' you mentioned above.
thanks in advance regards
@discip, try this, it works for me Bigtree3DPlugin.zip
@radek8 First of all: Thank you! But unfortunately this does not work for me. 😩🤷♂️
kind regards
Doesn't work for me either under Cura 4.9.0.
I have Windows10 and Ultimaker Cura 4.9.1 and it works well. The plugin also worked in older versions of Cura. Did you copy the "Bigree3DPlugin" folder to the "plugins" folder?
Yes I did. Win 10 Cura 4.10.0
OK - it's working for me now. I think I must have been doing something wrong earlier.
Cura 4.9.0 Windows 10
@bigtreetech Are there any updates available by now? I even tried it while all plugins were disabled. Without any success!
Well @radek8 what did you actually change in the code than? Because I can't find the issue.
By the way, I was adjusting the code and if you would like to save the gcode as the remaining time between brackets instead of "[Bigtree]" followed by ".gcode", change the following line (with notepad++ for example) (line 358 but depends on version):
bigtree3dfile = os.path.splitext(gfile)[0]+"[Bigtree].gcode"
by
bigtree3dfile = os.path.splitext(gfile)[0]+"["+str(Application.getInstance().getPrintInformation().currentPrintTime.days)+""+str(Application.getInstance().getPrintInformation().currentPrintTime.hours)+""+str(Application.getInstance().getPrintInformation().currentPrintTime.minutes)+"].gcode"