aboutsummaryrefslogtreecommitdiffstats
path: root/lv2
AgeCommit message (Collapse)AuthorFilesLines
2020-09-13Fix reference to the wrong function in documentationDavid Robillard1-1/+1
2020-09-12Fix typo in documentationDavid Robillard1-1/+1
2020-09-11Fix a mistake in the doc commentsJean Pierre Cimalando1-1/+1
2020-07-25Add missing define for bufsz:coarseBlockLengthAtsushi Eno1-0/+1
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-16Fix unused variable warning in release buildsDavid Robillard1-0/+4
2020-07-15Fix incorrect printf format specifiersDavid Robillard2-9/+12
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-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 Robillard11-18/+26
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 Robillard8-24/+49
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-10Move documentation to metadata files and convert it to MarkdownDavid Robillard49-2741/+4253
2020-03-28Add lv2:Markdown datatypeDavid Robillard3-1/+22
2020-03-28Rename spec metadata files to name.meta.ttlDavid Robillard48-24/+24
Towards putting more here than just the project metadata, and is a bit cleaner of a naming scheme anyway.
2020-03-28Add missing namespace prefix in example snippetDavid Robillard1-0/+1
2020-03-28Add missing labels and a test to prevent this in the futureDavid Robillard5-3/+15
2020-03-28Remove redundant seeAlso linksDavid Robillard1-2/+0
These are in the manifest as usual.
2020-03-28Fix invalid Turtle in MIDI vocabulary exampleDavid Robillard1-1/+1
This caused weird syntax highlighting in the documentation.
2020-03-17Add missing rdfs:label for time:beatUnitHanspeter Portner1-0/+1
2020-03-17Add UI scale factor and color propertiesRobin Gareus3-0/+52
2020-03-17Add note about toolkits unsuitable for binary UI distributionDavid Robillard1-4/+4
2020-03-17Add a UI feature to request a parameter value from the hostDavid Robillard5-2/+114
2020-03-12Put all code documentation in an "lv2" groupDavid Robillard25-0/+33
This makes it feasible to merge the LV2 documentation into more broad documentation in a meta-project.
2020-03-07Fix mismatched documentation grouping commandsDavid Robillard1-1/+0
2020-02-23Use the same name for recursive struct typesDavid Robillard3-16/+16
Similar to the previous commit, this was non-standard and caused documentation issues. With this commit, the data structures index page looks as expected. Unlike the previous commit, though, these names are actually needed because the struct definition refers to itself. Simply use the same name instead of the underscore prefix, since the "struct namespace" in C is different anyway.
2020-02-23Remove unnecessary struct namesDavid Robillard7-16/+16
These are not necessary since they are not recursive types, and the names violated the C standard. There also seems to be a bug in Doxygen where TYPEDEF_HIDES_STRUCT was not working, which made the documentation confusing and ugly. Strictly speaking, this could break user code that used these names directly, but this was never intended to be supported and should be fixed if it actually occurs anywhere.
2020-02-16Update version in metadata to match wscriptDavid Robillard1-1/+1
2020-02-16Make all specifications a lv2:SpecificationDavid Robillard17-17/+34
2020-02-16Normalise syntax of all specification data with serdiDavid Robillard74-207/+268
2020-02-16Separate developers from project metadataDavid Robillard4-50/+54
2019-12-07Add state:freePath featureDavid Robillard4-6/+50
2019-04-27Fix broken linksDavid Robillard3-5/+2
2019-04-27Replace broken links with detailed Ambisonic channel descriptionsDavid Robillard3-103/+189
2019-04-27Fix incorrect prefixes in URI define commentsDavid Robillard2-35/+35
2019-04-27Consistently use example.org in documentationDavid Robillard1-3/+3
2019-04-27Flatten documentation to fix fragment linksDavid Robillard6-14/+14
This removes all the extra bundle content from the documentation output and instead makes pages directly at the URI of specifications. This way, links to fragments in spec pages (which are often copy and pasted) are correct fragment identifiers like <http://lv2plug.in/ns/lv2core#Plugin> instead of <http://lv2plug.in/ns/lv2core/#Plugin>.
2019-04-14Remove unused namespace prefixesDavid Robillard2-2/+0
2019-03-30Fix crash when forging containers into a short bufferDavid Robillard2-6/+137
2019-03-30Clean up memory after unit testsDavid Robillard3-1/+17
2019-03-27Add news item for documentation improvementsDavid Robillard1-0/+9
2019-03-24Fix documentation typoDavid Robillard1-1/+1
2019-03-24Use the same LV2 blurb everywhereDavid Robillard1-1/+1
2019-03-24Fix broken links to API documentationDavid Robillard1-1/+1