aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/core.lv2
AgeCommit message (Collapse)AuthorFilesLines
2022-08-08eg-sampler: Fix potentially corrupt notification eventsDavid Robillard1-0/+2
2022-08-07midigate: Fix output timingTimothy Krause1-0/+2
Previously, the state was updated before writing the output (up to the current time), so output "in the past" would be incorrectly written based on the current state. This fixes that by switching things around, so the output is first written up to the current time, then the state is updated (and the loop continues). This takes advantage of the fact that write_output() effectively does nothing with a zero length.
2022-08-05Fix documentation build with Python 3.7David Robillard1-0/+2
2022-08-04Fix inconsistent plugin class labelsDavid Robillard3-4/+13
2022-08-04Fix lv2.h missing from installationDavid Robillard1-1/+3
2022-07-21Fix documentation build with meson 0.56.2David Robillard1-0/+2
2022-07-19Fix invalid syntaxDavid Robillard1-0/+1
2022-07-19lv2specgen: Fix installed data pathsDavid Robillard1-0/+7
2022-07-17LV2 1.18.6v1.18.6David Robillard1-1/+4
2022-07-17Rearrange source tree to be directly usable by dependantsDavid Robillard5-0/+1882
This allows the LV2 source distribution to be used as an include path for compilers and an LV2_PATH for applications, at the expense of self-contained bundles. That's a nice idea, but it made LV2 itself weird and annoying to depend on. This rearranges things so that directories in the source tree correspond more closely to installation directories. To make this possible, the "aux" directory in the documentation output has been changed to "style", to avoid the reserved name "aux" on Windows.