Paul Ferrand

Results 125 comments of Paul Ferrand

OK, so my test was way too simple :) I did not even know that sfizz had a flatpak version. Did you get this and Ardour from Flathub? What I...

> Looking at the portal documentation, it seems that unfortunately one cannot communicate to the file chooser that the file will be opened read-only, so the portal will presumably always...

Cross-platform/cross-distribution file choosing is harder than it looks 😄 But in a Flatpak application (or any kind of container) can you really bypass the portal? I'd think this is the...

OK I see. In this case you wouldn't want to ask the portal then, although people unaware of Flatpaks and such would probably be very surprised. This doesn't seem to...

@falkTX yeah I had this noted down somewhere, I'll probably try to integrate this into VSTGUI in our own fork, and possibly upstream if this is OK with you. However,...

> You could use the two-step selection only when running inside of a flatpak, although I am not sure if the minor convenience of not having to select a folder...

Let's see, I think this is a minor annoyance in the grand scheme of things. We could even cheat and ask the user for a file, but actually ask the...

I'm okay with all this, I have no strong opinions. I tend to prefix with _ in python but I'm flexible :) I also think we could pimpl everything if...

This is the full extract: ```c++ #if defined(__FreeBSD__) #if defined(__ELF_WORD_SIZE) && __ELF_WORD_SIZE == 64 using Elf64_auxv_t = Elf64_Auxinfo; #endif using Elf32_auxv_t = Elf32_Auxinfo; #endif ``` so I guess the elf...

Heh... JUCE actually has something for this nowadays, but I guess VSTGUI doesn't out of the box. It's a worthy goal, but it's not an easy one so I can't...