bigtreetech / Bigtree3DPluginSuit

Gcode model preview icon
https://github.com/bigtreetech/Bigtree3DPluginSuit
Apache License 2.0
126 stars 23 forks source link

Unable to Eject after saving with 'Bigtree3D to Removable Drive' #12

Open hapklaar opened 3 years ago

hapklaar commented 3 years ago

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

image

Wombat37 commented 3 years ago

I concur - I see the same thing.

bigtreetech commented 3 years ago

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.

discip commented 3 years ago

@bigtreetech Still same problem here.

Is there any update on this topic yet?

thanks in advance

bigtreetech commented 3 years ago

Sorry, guys; I fixed the problem in the last update, but I forgot to notify everyone, so you can use the new version instead.

discip commented 3 years ago

Oh thanks. Will try this later and report accordingly.

discip commented 3 years ago

@bigtreetech Good evening sir, what new version you are referring to? Because the latest commit of the master branch does still not work! 😩

gitmacer commented 3 years ago

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.

discip commented 2 years ago

@bigtreetech Would be nice, if you could take a stand on the 'update' you mentioned above.

thanks in advance regards

radek8 commented 2 years ago

@discip, try this, it works for me Bigtree3DPlugin.zip

discip commented 2 years ago

@radek8 First of all: Thank you! But unfortunately this does not work for me. 😩🤷‍♂️

kind regards

Wombat37 commented 2 years ago

Doesn't work for me either under Cura 4.9.0.

radek8 commented 2 years ago

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?

discip commented 2 years ago

Yes I did. Win 10 Cura 4.10.0

Wombat37 commented 2 years ago

OK - it's working for me now. I think I must have been doing something wrong earlier.

Cura 4.9.0 Windows 10

discip commented 2 years ago

@bigtreetech Are there any updates available by now? I even tried it while all plugins were disabled. Without any success!

tttttim5 commented 2 years ago

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"