Timofey Kazantsev
Timofey Kazantsev
Oh, by the way! I've found, that exiting because of the signal is, probably, normal way of exiting in Linux. So, maybe, there is a point to return `Ok(())` in...
Example: ```Rust fn test_midi_events() { let rpr = Reaper::get().medium_reaper(); let pr = reaper_medium::ProjectContext::CurrentProject; let track = rpr.get_track(pr, 2).unwrap(); let item = get_track_items(track).expect("should be item")[0]; unsafe { let take = rpr.get_active_take(item).expect("should...
Now, I'm pretty sure in iterators. And again thinking of adding original single-event functions, as additional tool for self-check, and because more complex iterators through raw midi lays out of...
OK. Now the idea looks fine for me. Please, check if you like this API and realization, and I'll finish other `MIDI_*` functions. I've checked, that everything works OK with...
> Are you sure you executed this and not something else? If I panic right after the assert, it fails, so, probably, it walks through the code, but I've done...
I've got the problem: before running `cargo test`, `cargo build --workspace` should be invoked 🙂 Maybe the testing in brief should be considered in docs for... Medium API? - register...
Actually, I liked how you've managed integration test! It would be awesome to have something similar as crate. For the moment by myself I've made only a couple of assert...
I've checked. At the moment everything works, if turn the test for importing terminus off. Needed the new way to check its availability. As hotfix just comment the lines 98-101:...
Actually within installation through reapack the extension provides python bindings. So I do not see any restriction to use it 'as it is'. Mainly, someone can make typed\object-oriented binging library,...
Without the code (it can be formatted by ` ```Python [your code]``` `) it is hard to tell what is wrong. But I would suggest a couple of things: -...