aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2022-09-06Remove change history from specification documentation pagesDavid Robillard2-81/+0
Towards simplifying everything around change history. This information seems out of place here anyway, and is available elsewhere.
2022-09-06Ensure local lv2specgen files are used for documentation buildDavid Robillard1-0/+2
2022-09-01Use standard ISC license textDavid Robillard1-10/+8
I'm not sure where the disclaimer variant that starts with "THIS" came from (although it is better that way), but this one that starts with "THE" is the standard text which is recognized by tools like `licensee` (and therefore Github) as a perfect match. There are no other changes other than whitespace.
2022-08-31Fix missing example plugin UI binariesDavid Robillard4-0/+41
2022-08-22Only install lv2specgen when required Python modules are foundDavid Robillard2-1/+7
2022-08-22Fix documentation buildDavid Robillard2-2/+2
2022-08-22Add note about developer-only configuration optionsDavid Robillard1-0/+4
2022-08-16Fix bundle installation directory on WindowsHannes Braun2-10/+6
2022-08-14Fix include flags in pkg-config fileHubert Figuière2-2/+10
2022-08-12LV2 1.18.8v1.18.8David Robillard4-6/+9
2022-08-12Avoid running syntax check on WindowsDavid Robillard1-1/+2
2022-08-12Warn when a stable release description has no file-releaseDavid Robillard1-0/+2
2022-08-12Remove release news prior to the unified "lv2" releaseDavid Robillard11-434/+11
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 documentation buildDavid Robillard1-0/+2
2022-08-12Fix 1.18.6 release linkDavid Robillard1-1/+1
2022-08-09Fix syntax check on WindowsDavid Robillard1-3/+6
2022-08-09Avoid running syntax check in cross buildsDavid Robillard1-1/+1
This doesn't work because lv2_check_syntax.py uses serdi, and so would need to call it with a wrapper. That's possible (and is how the test scripts work), but this check doesn't need to run everywhere, so just disable it in cross builds to avoid the issue.
2022-08-08eg-sampler: Add resampling via libsampleratefalkTX3-7/+52
2022-08-08eg-sampler: Convert multi-channel audio files to monofalkTX1-4/+25
2022-08-08eg-sampler: Fix potentially corrupt notification eventsDavid Robillard2-12/+13
2022-08-08eg-sampler: Install click.wav to plugin bundleDavid Robillard1-1/+1
2022-08-07midigate: Fix output timingTimothy Krause2-3/+5
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-07Avoid running checks or building documentation if Python is too oldDavid Robillard1-1/+10
2022-08-07Only run flake8/pylint/black tests with strict option enabledDavid Robillard1-21/+23
Older versions of these tools can cause issues, but they are only useful for development anyway. So, just disable them by default to avoid build issues for users on ancient systems.
2022-08-05Remove unused Doxygen configurationDavid Robillard2-174/+0
Older versions of Doxygen warn about these. So, remove them to make the build less noisy since they are all either unused or set to their defaults anyway.
2022-08-05Fix inconsistent namespace index orderDavid Robillard1-1/+1
This was "automatically" sorted on some systems and/or Python versions, but not others.
2022-08-05Fix documentation build with Python 3.7David Robillard3-4/+6
2022-08-04Fix inconsistent plugin class labelsDavid Robillard3-4/+13
2022-08-04Fix lv2.h missing from installationDavid Robillard2-1/+6
2022-07-21Fix documentation build with meson 0.56.2David Robillard2-1/+3
2022-07-21Remove configuration not supported by Doxygen 1.9.1David Robillard1-57/+0
These all have the default value anyway.
2022-07-19Fix pylint warningDavid Robillard1-2/+2
2022-07-19Log syntax error origins when building indexDavid Robillard1-1/+5
2022-07-19Fix invalid syntaxDavid Robillard1-0/+1
2022-07-19lv2specgen: Fix installed data pathsDavid Robillard3-4/+11
2022-07-17LV2 1.18.6v1.18.6David Robillard2-2/+5
2022-07-17lv2specgen: Fix style and validation when installedDavid Robillard2-18/+84
2022-07-17lv2specgen: Remove warnings on external termsDavid Robillard1-3/+0
This conveniently pointed out potential issues in the LV2 documentation, but makes the tool very noisy to use on anything else. Referring to some external thing really shouldn't be treated like a warning in linked data. Preventing mistakes (where full URIs are in the output instead of the expected prefixed names) will have to be done in some other, better way (probably based on an explicitly given set of prefixes that should be documented).
2022-07-17lv2specgen: Fix invalid output for terms about the spec itselfDavid Robillard1-1/+5
2022-07-17Use the same set of external vocabulary prefixes everywhereDavid Robillard3-49/+21
The RDFa in specification pages doesn't actually use prefixed names for the documented resources. So, simplify things by trimming the namespaces down to a consistent set that is actually used in the LV2 universe.
2022-07-17Suppress new warnings in clang and clang-tidy 14David Robillard3-0/+8
2022-07-17Fix outdated doc commentsDavid Robillard1-12/+4
2022-07-17Rearrange source tree to be directly usable by dependantsDavid Robillard146-1202/+465
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.
2022-07-17Switch to meson build systemDavid Robillard85-1593/+3554
2022-07-17Remove unnecessary parenthesesDavid Robillard2-7/+6
Unfortunately, GCC and clang-tidy have conflicting warnings here. Side with compiler warnings, being generally more relevant than a tool only used by developers.
2022-07-17Add missing release metadataDavid Robillard2-0/+20
These should have been added for the 1.18.4 release. This seems a bit silly for minor changes like this that span the entire project, but the documentation tools currently require it. Simplifying this would be nice, perhaps by using NEWS files as the canonical source instead, which would be a nicer and more typical developer experience.
2022-07-17Consistently use the prefix "dcterms" everywhereDavid Robillard12-23/+23
2022-07-17Format all schemas consistently with serdiDavid Robillard6-1007/+1101
2022-07-17Replace canonical dcs ontology with a minimal version for LV2David Robillard2-238/+41
Since most applications pay to keep these ontologies in memory, it is best to keep them small. This replaces the "canonical" dcs ontology with a minimal and restricted version specifically written for the subset of the vocabulary that LV2 uses (like the xsd ontology).
2022-07-17Remove archaic properties from foaf vocabularyDavid Robillard2-53/+2