FergusL
FergusL
I got a bit confused by the overriding capability, I finally found out by trying several things. I first tried in standard PureData that doesn't not allow overriding default objects...
For comparison, here's the output of running Carla.exe in windows cmd where the bridge command is different. For clarity **this is the working case**, the plugin does show and work....
Hello! I made a quick attempt at adding the :poll() method in PR #34 :) Interestingly I needed that feature yesterday and it's currently being discussed here!
Hey there thanks for the thoughts. I absolutely agree about not automatically dispatching although semantically speaking a non-blocking mode doesn't imply dispatching any differently than the blocking mode, but I...
I think I can confirm this on `develop` as of today. Replacing [line 505 of EventHandlers.cpp](https://github.com/DISTRHO/DPF/blob/develop/dgl/src/EventHandlers.cpp#L505) with this seems to fix: `valueTmp = invlogscale(logscale(valueTmp));`
You're right, I just checked and the value before and after is actually the same. While investigating this and testing with `AidaKnob`, which I had to modify a bit, I...
I misunderstood the solution given above, changing to this fixes log scale as far as I can tell: ```c++ const float divisor = (ev.mod & kModifierControl) ? accel * 10.f...