Page 1 of 3
New Feature Request
Posted: Wed Dec 25, 2024 3:15 am
by dellsam34
Can you guys add "Load" button next to eject on the Toolbar so the disc tray can be closed from the app? Thanks.
Re: New Feature Request
Posted: Sun Dec 29, 2024 9:15 pm
by dellsam34
Any response from the developers?
Re: New Feature Request
Posted: Sun Dec 29, 2024 10:07 pm
by Woodstock
"The developers" is "Mike Admin", and he hasn't been very visible recently. His last login was when he updated the beta key.
Re: New Feature Request
Posted: Sun Dec 29, 2024 10:33 pm
by Ezatoka
dellsam34 wrote: ↑Wed Dec 25, 2024 3:15 am
Can you guys add "Load" button next to eject on the Toolbar so the disc tray can be closed from the app? Thanks.
Because I really want to know why: What is the usecase of this? You have to place the disc in the tray anyway, so you also can either give the tray a slight nudge or press the button on the disc drive to close the tray.
Re: New Feature Request
Posted: Mon Dec 30, 2024 10:03 am
by dellsam34
I'll give you two reasons, 1- If the drive is connected externally to the computer and just sitting on the desk it's hard to push the close/load button or the tray, it will slide the entire drive backward, So closing the tray from the program makes it much more convenient and safe, 2- Some computers sitting on the floor level are too low to bend down and press the load button when the tray is open, in this case you can push the tray but some people prefer to use the button.
Re: New Feature Request
Posted: Mon Dec 30, 2024 10:10 am
by Ezatoka
Thank you, makes it much easier for me to understand such a need (and maybe others as well)
Re: New Feature Request
Posted: Mon Dec 30, 2024 8:41 pm
by dellsam34
Thanks, and I don't think the implementation is extreme, Basically all drives accept the load/close command, So not a lot of change is needed, the same button could be repurposed for both ejecting and closing by just knowing what the last action was, or a new button could be added. I'm not a coder so it could look simple to me but a lot of work to the experts, so excuse my ignorance.
Re: New Feature Request
Posted: Tue Dec 31, 2024 2:38 pm
by drxenos
I just use a tool I write myself. It will display all the drivers in the machine with the disc's label (if present) and provide open/close buttons for each (I tried using just one toggling button but it can be hard knowing what state the drive is in). I wrote it because the machine I use for ripping is actually located in another room (I remote into it), and a lot of times I need to cycle a drive, or I don't want a tool to "react" until I can observe it. It's also nice to be able to eject discs for tools that don't have the ability to do it itself (so, when I go to swap discs, I don't accidentally open the wrong drive. there are 5 of them).
Re: New Feature Request
Posted: Tue Dec 31, 2024 6:11 pm
by flojo
Use a double eject with pauses...
Code: Select all
eject -a /dev/cdrom # turn off auto-eject
eject /dev/cdrom # eject
sleep 5 # sleep
eject /dev/cdrom # eject again to be safe
sleep 5
eject --trayclose # close tray
sleep 5
... # your command to discern a successful load
Re: New Feature Request
Posted: Wed Jan 01, 2025 8:38 am
by dellsam34
I wish I know how to use that code, but I don't.
Re: New Feature Request
Posted: Wed Jan 01, 2025 8:42 am
by dellsam34
Ezatoka wrote: ↑Sun Dec 29, 2024 10:33 pm
Because I really want to know why: What is the usecase of this? You have to place the disc in the tray anyway, so you also can either give the tray a slight nudge or press the button on the disc drive to close the tray.
From your wording I take it as you are one of the developers, right?
Re: New Feature Request
Posted: Wed Jan 01, 2025 3:13 pm
by Ezatoka
Nope, I just have seen this request before and I thought, such a request could be just from a single person. But now I see, that more persons seemingly need such.
Re: New Feature Request
Posted: Thu Jan 02, 2025 6:50 am
by dellsam34
That was a bizarre quote then in post #4, Anyway I'm glad more people are interested in such a feature.
Re: New Feature Request
Posted: Mon Jan 06, 2025 7:57 am
by dcoke22
On a Mac, if you have the
Eject menu item in the menu bar, you can open & close optical drives.
I presume (though I don't know) there's some equivalent thing in Windows.
Re: New Feature Request
Posted: Mon Jan 06, 2025 2:38 pm
by DukeFleed
On Linux I created a shortcut that uses the eject command to open/close the burner door.
dellsam34 wrote: ↑Wed Jan 01, 2025 8:38 am
I wish I know how to use that code, but I don't.
They are commands that you write in a terminal, or have them executed in a script. But you have to use Linux:
https://man7.org/linux/man-pages/man1/eject.1.html