Robbert van der Helm
Robbert van der Helm
Hi, I've been using winedump to parse a whole bunch of Windows library files to check whether they export certain functions. This has been working fine, but shelling out for...
Based on https://github.com/free-audio/clap/compare/1.0.3...1.1.0. - State context is a new draft extension. - The voice info extension has been moved out of drafts.
I recently replaced `Boost.Filesystem` with `ghc::filesystem` in [yabridge](https://github.com/robbert-vdh/yabridge). I'm using Meson, and during ordinary builds the `ghc_filesystem` dependency resolves to a subproject wrap dependency contained within the repo, but when...
This has been an issue for as long as I can remember, but I always forget to create a ticket for it. Not sure if this is the same issue...
This fixes #176. Check the issue for more details.
I'd expect this to return an error if JACK is not available, but right now it just panics on an unwrap. When creating a client, the library immediately calls `jack_set_error_function`:...
Recently I got the suggestion to add an updater to yabridgectl. Since I only provide compiled binaries and AUR packages, updating yabridge on non Arch based distros involves downloading new...
I would expect to be able to target the root element and set its background color, font size, text color etc. by targeting the [`:root`](https://developer.mozilla.org/en-US/docs/Web/CSS/:root) selector in a stylesheet. (being...
Running the following example: ```rust use vizia::*; fn main() { Application::new(WindowDescription::new().with_title("Basic"), |cx| { ScrollView::new(cx, 0.0, 0.0, false, true, |cx| { for i in 0..100 { Label::new(cx, &format!("Label {i}")) .border_color(Color::black()) .border_width(Pixels(1.0));...
Like `PropSet` makes setting styling properties much simpler, `PropGet` makes it a lot simpler to write widgets that need to be aware of their styling (for instance, to be able...