p0nce
p0nce
> Basically if you have a component model the components should implement nsaccessibility on macOS and the uia messages in win32. Linux is a mess. - [ ] Clarify how...
Our onboarding tests shows that people can't download LDC on Windows since their browser will tell them their download is unsafe. Trying to download this file https://github.com/ldc-developers/ldc/releases/download/v1.39.0/ldc2-1.39.0-windows-multilib.7z Shows a "this...
On Windows the x86_64 and arm64ec are made to interoperate (each can host the other in the same process). `arm64ec` may well be there for a long time.
In case anyone does a video decoding library, there are quite liberally licenced codec out there now. Decoders: - VVC: https://github.com/ultravideo/uvg266/tree/master/src - MPEG 1: https://github.com/phoboslab/pl_mpeg - H.264: https://github.com/tvlabs/edge264 - HEVC:...
Else the wraparound makes spurious bugs to fix, it also break expectations. Remove < 0 and > 1 Basically all scanline function with float -> int should be modified.
This should be a part of the public API. ```d int convertEncodeFlagStringToValue(string s) { if (s in allEncodeFlags) return allEncodeFlags[s]; else throw new Exception("Unknown encode flag: " ~ s); }...

**Issue:** redub doesn't seem to support envvar in recipes. To repro: checkout this example https://github.com/AuburnSounds/Dplug/tree/master/tools/latency-check **How to repro:** ```sh $ git clone [email protected]:AuburnSounds/Dplug.git cd Dplug cd tools cd latency-check redub...
Regular resizing widget works, but not the VST3 window resize. Pretty sure it used to work...