RobWalt

Results 96 comments of RobWalt

I'm still having this issue, the fix @bonjune posted doesn't work on my system (Manjaro) or isn't up to date anymore due to newer versions of rust. (I suppose)

Ok, so I found the final workaround. You should add this to the manuscript @timClicks Due to the rapid evolution of rust, installing nightly breaks your example. Because of this,...

I also stumbled upon an issue considering the dependencies versions. I tested some combinations. The one with the latest versions which was still compiling and executing fine was: ``` bootloader...

Hey, I'd like to contribute. Can anyone give me some hints on how the PluginPane and the plugins themselves communicate? I'm particularly interested in how I get information from the...

I'm on Nixos using the latest stable version of `speechd` and I'm running into the same issue.

@mrchilliballs I didn't feel like I wanted to finish that. It's still there so feel free to pick the PR up. The changes aren't too technical

What do you think about ```rust // I'm using empty types for everything just for demonstrating purposes struct Gizmo; struct Circle; struct CircleDetails; struct Rect; struct RectDetails; pub trait GizmoPrimitive2D...

Sorry for the short answer in before. Yeah that makes total sense. So this is closer to the API we already have for circles & arcs. I started to like...

I went for something like this here ```rust /// A trait for rendering 3D geometric primitives (`P`) with [`Gizmos`]. pub trait GizmoPrimitive3d where Self: 's, 's: 'a; /// Renders a...

Any ideas on how we can proceed here @Jondolf ?