sometimes I really do want 7.5 seconds

Most of oooo is meant to be changed by dragging and listening, but sometimes I know that I want a 7.5 second loop, a -12 dB send, or a filter at 1,200 Hz. In 1.1.0 I made the displayed value editable with a double-click.

The small editor selects the current value and understands percentages, decibels, time, frequency, and ratios. Enter commits it, Escape cancels it, and then the text box disappears. I did not want to permanently cover the interface in fields just to support the few times I need an exact number.

opening and closing the editor many times

While testing in real DAWs I found crashes around repeatedly opening the editor and around host shutdown. The embedded Lua runtime was too closely tied to the lifetime of the window, even though a DAW is allowed to destroy and recreate that window whenever it wants.

I moved more runtime ownership into the processor, made startup and stopping explicit, and guarded the bridge while everything is being torn down. Closing a plugin window is not an interesting feature, but it should also not be an interesting event.