Bigtree3DPluginSuit icon indicating copy to clipboard operation
Bigtree3DPluginSuit copied to clipboard

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

Open hapklaar opened this issue 3 years ago • 16 comments

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

hapklaar avatar May 10 '21 19:05 hapklaar

I concur - I see the same thing.

Wombat37 avatar May 12 '21 03:05 Wombat37

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 avatar May 13 '21 01:05 bigtreetech

@bigtreetech Still same problem here.

Is there any update on this topic yet?

thanks in advance

discip avatar May 28 '21 21:05 discip

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

bigtreetech avatar Jun 22 '21 01:06 bigtreetech

Oh thanks. Will try this later and report accordingly.

discip avatar Jun 22 '21 07:06 discip

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

discip avatar Jun 23 '21 20:06 discip

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.

gitmacer avatar Jun 27 '21 10:06 gitmacer

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

thanks in advance regards

discip avatar Jul 07 '21 21:07 discip

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

radek8 avatar Jul 25 '21 08:07 radek8

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

kind regards

discip avatar Jul 25 '21 23:07 discip

Doesn't work for me either under Cura 4.9.0.

Wombat37 avatar Jul 26 '21 02:07 Wombat37

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?

radek8 avatar Jul 26 '21 03:07 radek8

Yes I did. Win 10 Cura 4.10.0

discip avatar Jul 26 '21 11:07 discip

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

Cura 4.9.0 Windows 10

Wombat37 avatar Jul 27 '21 03:07 Wombat37

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

discip avatar Aug 15 '21 21:08 discip

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"

tttttim5 avatar Sep 09 '21 19:09 tttttim5