Christian Fillion

Results 66 comments of Christian Fillion

Not currently. I'm planning to add a dependency system with versioning requirements. A way for script developers to specify a REAPER version requirement would be a part of that work....

There are a few workarounds: - Installing Arch's `libxml2-legacy` package - Using Arch's `reapack` package - Building ReaPack from source I've started some groundwork in the libxml2.14 branch for having...

Ah yes... libxml2.so is provided by a separate package `libxml2-dev` on distros that split them (Debian, Fedora...). Reverting this (and hot-fixing v1.2.5.1 binaries), thanks!

There is a 2 frames delay before a window requested via `Begin` actually opens. So between 60 and 90 ms (depending when the script is launched within a defer timer...

https://github.com/dearimgui/dear_bindings

"API" does not imply a shared library. In fact, building dear imgui statically is the [recommended](https://github.com/ocornut/imgui/blob/0fc4967ebc6a2d40b7b048296ff5e0cc24f91f26/imgui.cpp#L263) usage. 1. Grab dcimgui.{cpp,h} from the above repository's [CI build page](https://github.com/dearimgui/dear_bindings/actions) or generate them...

The error suggests that the libdcimgui found by the compiler doesn't actually contain dcimgui.o for some reason. (Also don't forget to compile dear imgui too: all 5 source files plus...

Can you post a backtrace? Using gdb, the `bt` (backtrace) command will say exactly what the process was doing at the time of the crash. ```sh $ gdb reaper -ex...

> ``` > Program terminated with signal SIGKILL, Killed. > The program no longer exists. > No stack. > ``` That would happen if something did `kill -9` to that...

It turns out this issue arises from a bad interaction between REAPER, realtime privileges, PipeWire's libjack and RTKit. Anything that makes the main thread busy for 200ms or longer makes...