Billy Messenger

Results 30 issues of Billy Messenger

I was really struggling to figure out how to create a custom icon font for my GUI library that actually worked with `cosmic-text`, so I just went ahead and implemented...

Does Dplug have any plans to support the new CLAP audio plugin standard? https://github.com/free-audio/clap

How does the quality of the FFT resampler compare to the sync resampler? I'm creating an audio file loading library, and I wonder if I should bother with adding multiple...

I noticed that the Svg view is currently implemented like this: ```rust pub struct Svg {} impl Svg { /// Creates a new [Svg] view. pub fn new(cx: &mut Context,...

When you have a `Textbox` in a `Spinbox`, it appears to behave strangely when you click on it. Have any idea why this could be happening? ```rust use vizia::prelude::*; #[derive(Lens)]...

I've experimented with using corrected srgb alpha blending, like what `egui` has done in their latest release https://github.com/emilk/egui/releases/tag/0.32.0. To me, the text at small sizes looks significantly better and more...

I have finished my 3rd party crate for egui support in nih-plug: https://codeberg.org/BillyDM/egui-baseview This PR removes the outdated first party crates and links the 3rd party ones in the readme.

Egui recently got a big update. I also went ahead and updated the egui backend to use the latest version of baseview.

Someone on KVR emailed me about an issue they were having with my VitaliumVerb plugin. https://github.com/BillyDM/vitalium-verb Maybe this is related to #210 ? ## Their report: In Studio One (v.7.2.2.107056,...

I've been testing out various open source compressors, and I've came across CTAGDRC. It is surprisingly good! Building it was kind of tricky, so I went ahead and replaced the...