Boscop

Results 479 comments of Boscop

@MarcAntoine-Arnaud Does yaserde already support telling the serializer to serialize a struct field as a xml attribute? Or what is the current progress status of yaserde? It seems to support...

I also get `error: macro `error` may not be used in attributes` :( Is there any workaround?

Yes, I'm using this: ```rust #[macro_use(trace, info, warn)] extern crate log; ``` But I wish there was a way to import the error macro as a different name. Also I...

Nice to hear from you. I'm a big fan of your ReaLearn VST and wrote a similar VST in Rust, but since I have hundreds of mappings that are auto...

Nice, I'm looking forward to see how I can register my VST as a control surface in Reaper.. Yeah, in case of a panic, we could show that message box...

Yeah, feel free to give it a go. (I'm currently quite busy with life etc.) Btw, we also have a [discord server](https://discord.gg/b3hjnGw) where we sometimes discuss such things. (Originally we...

Yes, there is `audioMasterIOChanged` / `AudioEffectX::ioChanged`: ```cpp //------------------------------------------------------------------------------------------------------- /** VST 2.x dispatcher Opcodes (Plug-in to Host). Extension of #AudioMasterOpcodes */ //------------------------------------------------------------------------------------------------------- enum AudioMasterOpcodesX { //------------------------------------------------------------------------------------------------------- DECLARE_VST_DEPRECATED (audioMasterWantMidi) = DECLARE_VST_DEPRECATED (audioMasterPinConnected)...

How does the host notify the plugin?

Any update on this? :) I'm looking forward to the migration to actix.. (I'm only getting 4kb/s over LAN with this version currently.)

@SimonSapin I think it'd be much more preferable if one wasn't forced to make things mutable (or to wrap the yield in braces), just to prevent size increase of the...