aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2020-07-25Add missing define for bufsz:coarseBlockLengthAtsushi Eno1-0/+1
2020-07-25Revert "Use LV2_ATOM_BODY macros in examples instead of pointer arithmetic"David Robillard3-3/+3
This reverts commit 3aad5eb1b08ed5c27e60aa36021c4a85ce90c08f, which broke the example plugins.
2020-07-18Fix CI configurationDavid Robillard1-6/+1
2020-07-16Only upload pages for masterDavid Robillard1-0/+2
2020-07-16Modernize compiler checks in attributes.hDavid Robillard1-3/+3
These caused warnings in compilers where __GNUC__ is not defined. That could be fixed, but it makes things quite ugly, these versions are quite old at this point, and these features are just for developers. So, instead, simply check the major version instead of the specific minor version to keep things terse.
2020-07-16Use ultra-strict warnings and Werror on CIDavid Robillard1-10/+10
2020-07-16Fix unused variable warning in release buildsDavid Robillard1-0/+4
2020-07-16Be explicit about warningsDavid Robillard2-2/+73
2020-07-15Fix incorrect printf format specifiersDavid Robillard4-12/+15
2020-07-15Add missing static specifiersDavid Robillard1-2/+2
2020-06-19Fix state:StateChanged URI in metadata and documentationDavid Robillard3-4/+12
This was a mistake, and it's arguable which URI was correct before. It was supposed to be "StateChanged" since the name of URIs should stand alone (ignoring the conventional prefix, even though this has been screwed up in several places in the past). Normally, the specification in Turtle is considered canonical for URIs, but in this case, the URI defined in the corresponding header used "StateChanged" (both in name and value), as did all the news. Really everything except the subject in the metadata. So, consider this a documentation bug, and fix the URI in the spec/documentation to match the implemented one.
2020-05-22eg-sampler: Fix size of note-on atom sent from UIDavid Robillard2-2/+2
2020-04-26Fix specification directory indexDavid Robillard1-2/+3
2020-04-26Fix links in online documentation indexDavid Robillard2-4/+15
2020-04-26Fix htaccess filesDavid Robillard1-3/+3
2020-04-26Fix distcheck targetv1.18.0David Robillard1-1/+4
2020-04-26Fix version of core specificationDavid Robillard1-1/+1
The previous commit was a mistake, this is actually LV2 1.18.0.
2020-04-26LV2 1.18.0David Robillard12-19/+27
2020-04-26Fix top level news generation for core specificationDavid Robillard1-2/+8
2020-04-26Add tests for specification manifestsDavid Robillard1-0/+27
2020-04-26Add title variable for news postsDavid Robillard1-0/+1
2020-04-26Add Doxygen layout file to move detailed description to the topDavid Robillard2-1/+227
2020-04-26Ignore top-level generated NEWS fileDavid Robillard1-0/+1
2020-04-26Add C++ header compile testDavid Robillard1-6/+24
2020-04-26Update autowafDavid Robillard2-2/+2
2020-04-11Disable Turtle syntax test on WindowsDavid Robillard1-1/+1
This causes problems because tempfile.NamedTemporaryFile is not reopenable by name on Windows, but doesn't really need to run there anyway since this test just ensures that the syntax in the repository is normalized and it only needs to run once.
2020-04-10lv2specgen: Fix various flake8 issuesDavid Robillard1-32/+39
2020-04-10lv2specgen: Format code with blackDavid Robillard1-346/+567
2020-04-10Shorten data-access descriptionDavid Robillard1-1/+1
2020-04-10Fix reference to non-existent C typeDavid Robillard1-1/+1
2020-04-10Remove most uses of "e.g." in documentationDavid Robillard16-63/+68
This causes typesetting issues in some cases (because it is interpreted as the end of a sentence), and it's probably more accessible to write out fully anyway.
2020-04-10Remove incorrect type of pg:letterCodeDavid Robillard2-2/+3
OWL does not support inverse functional datatype properties.
2020-04-10Fix incorrect type of patch:sequenceNumberDavid Robillard3-2/+11
2020-04-10Add more specific property typesDavid Robillard9-24/+58
2020-04-10Remove redundant lv2:Specification type propertiesDavid Robillard24-46/+30
These are included in the manifest so that hosts can discover them. Having them in the data file as well is redundant, and in some cases requires an otherwise unnecessary import of the core spec.
2020-04-10Add test that documentation is properly formatted MarkdownDavid Robillard1-0/+10
The leading and trailing blank line requirement is just to ease editing and maintenance, for example so that naive tools can wrap paragraphs.
2020-04-10Add tests for vocabulary integrityDavid Robillard1-12/+46
2020-04-10Move documentation to metadata files and convert it to MarkdownDavid Robillard49-2741/+4253
2020-04-10Update documentation styleDavid Robillard5-448/+592
2020-03-28lv2specgen: Add type label to resource documentation headersDavid Robillard1-0/+1
2020-03-28lv2specgen: Flatten page structureDavid Robillard2-11/+21
2020-03-28lv2specgen: Show label in metadata table for all resourcesDavid Robillard1-6/+19
2020-03-28lv2specgen: Don't show label in page description bodyDavid Robillard1-8/+2
2020-03-28lv2specgen: Use a consistent order for owl and rdfs metadataDavid Robillard1-1/+1
2020-03-28lv2specgen: Add support for Markdown documentationDavid Robillard2-17/+57
2020-03-28lv2specgen: Put restrictions in the same definition listDavid Robillard1-4/+8
2020-03-28lv2specgen: Factor out vocabulary linkificationDavid Robillard1-23/+31
2020-03-28lv2specgen: Show rdfs:seeAlso links nicelyDavid Robillard1-0/+2
2020-03-28lv2specgen: Factor out HTML linkificationDavid Robillard1-95/+101
2020-03-28lv2specgen: Show links within the current page without prefixesDavid Robillard1-1/+1
This makes things quite a bit more readable since the prefixes don't interrupt the flow of the text.