I'm working on a setup tool for reaper, with the ability to parse and assign keyboard shortcuts (working), mouse modifiers (in progress), settings (todo), and hopefully install reapack packages. The problem is that while ReaPack has APIs for adding repositories, there's not an API for queuing things to be installed, or for enumerating the available packages.
I can see about submitting a PR, but I'm not at all familiar with the code so it might take me a while.
EDIT: Suggested APIs
bool ok, string name = reaper.ReaPack_EnumRepositories(int index)
PackageEntry retval, string error = reaper.ReaPack_EnumRepositoryPackages(string repo_name, int index)
I'm working on a setup tool for reaper, with the ability to parse and assign keyboard shortcuts (working), mouse modifiers (in progress), settings (todo), and hopefully install reapack packages. The problem is that while ReaPack has APIs for adding repositories, there's not an API for queuing things to be installed, or for enumerating the available packages.
I can see about submitting a PR, but I'm not at all familiar with the code so it might take me a while.
EDIT: Suggested APIs