aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/core.lv2
AgeCommit message (Collapse)AuthorFilesLines
2023-04-30Remove trailing newlines from Turtle data filesDavid Robillard5-5/+0
2022-09-06Replace change history data with a plain text NEWS fileDavid Robillard2-362/+1
2022-08-31Fix missing example plugin UI binariesDavid Robillard1-0/+2
2022-08-22Only install lv2specgen when required Python modules are foundDavid Robillard1-0/+2
2022-08-14Fix include flags in pkg-config fileHubert Figuière1-0/+9
2022-08-12LV2 1.18.8v1.18.8David Robillard3-5/+8
2022-08-12Remove release news prior to the unified "lv2" releaseDavid Robillard1-91/+1
Some of this metadata had issues, and presenting both the old individual extension releases and the new unified releases tends to confuse people. So, simply remove it; a summary of changes that old aren't really useful to anyone now anyway.
2022-08-12Fix 1.18.6 release linkDavid Robillard1-1/+1
2022-08-08eg-sampler: Add resampling via libsampleratefalkTX1-0/+2
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.