aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2020-03-28Switch to 2-space indentation for all CSSDavid Robillard2-745/+745
Some lint tools warn about this, it's less work to just change it than configure them specially. There was previously some inconsistency with spaces and tabs anyway.
2020-03-28Cleanup: Remove commented out documentation headerDavid Robillard1-1/+0
2020-03-28Update waf wrapper to print submodule help messageDavid Robillard1-2/+13
2020-03-28Fix building plugins as independent projectsVladimir Molokov1-1/+1
2020-03-17Add missing rdfs:label for time:beatUnitHanspeter Portner1-0/+1
2020-03-17Use LV2_ATOM_BODY macros in examples instead of pointer arithmeticRuoxi Wang3-3/+3
2020-03-17Disable CI pages rule for merge requestsDavid Robillard1-1/+4
2020-03-17Add UI scale factor and color propertiesRobin Gareus3-0/+52
2020-03-17eg-sampler: Destroy widgets in the correct orderMichael Fisher1-6/+19
2020-03-17eg-sampler: Improve UI show/hide handlingMichael Fisher1-4/+43
Ensures that gtk_init() is only called once, and that the idle callback does not block the UI thread.
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 Robillard8-10/+143
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-03-07Fix building documentation as a subprojectDavid Robillard1-2/+2
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 autowafDavid Robillard2-49/+61
2020-02-16Remove NEWS from gitignore fileDavid Robillard1-1/+0
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-16Use standard Turtle lexer in PygmentsDavid Robillard5-64/+8
A Turtle lexer was finally added in Pygments 2.1.
2020-02-16Add test that all data files are normalised and validDavid Robillard1-0/+24
2020-02-16Normalise syntax of all specification data with serdiDavid Robillard74-207/+268
2020-02-16Make parameter data validateDavid Robillard2-5/+6
This is rather annoying, but unfortunately xsd:decimal is not a related type to xsd:float. A future smarter version of the validator will be able to deal with this, but for now we'll have to be explicit and tolerate a bit of unpleasant syntactic noise.
2020-02-16Separate developers from project metadataDavid Robillard6-53/+61
2020-02-16Remove dead codeDavid Robillard1-19/+0
2020-02-16Remove deprecated Doxygen configuration keysDavid Robillard1-15/+0
2020-02-09Use "needs" instead of "dependencies" for CI order definitionDavid Robillard1-11/+11
This should allow things to run in parallel across stages.
2020-02-09Add tags to Windows builds to exclude Gitlab shared runnersDavid Robillard1-4/+4
Gitlab now has shared Windows runners, which is cool, but unfortunately they don't have Python, so they are useless here and will cause failed builds if they pick up the job.
2020-02-09Use terser lists in Gitlab CI configurationDavid Robillard1-53/+25
2020-02-09Fix arrow style in API documentationDavid Robillard1-2/+8
Hiding this broke the indentation for nested lists. This reverts to something like the default Doxygen style.
2019-12-09Fix autowaf submodule referenceDavid Robillard1-1/+1
2019-12-07Add state:freePath featureDavid Robillard5-7/+51
2019-11-10Simplify plugin building and set up source tree run environmentDavid Robillard9-75/+43
This sets up LV2_PATH in waf tests so that tests can use specifications and plugins from the source tree without installing.
2019-10-17Set Gtk as a system dependency to suppress warningsDavid Robillard2-2/+8
2019-10-17Don't link against librt on Windows or DarwinDavid Robillard1-1/+3
2019-10-17Update autowafDavid Robillard8-15/+11
2019-04-27Fix broken linksDavid Robillard4-6/+3
2019-04-27Replace broken links with detailed Ambisonic channel descriptionsDavid Robillard4-104/+190
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 Robillard9-60/+52
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-27Remove file list from documentation pagesDavid Robillard1-25/+3
2019-04-27Only check links during buildDavid Robillard1-1/+2
2019-04-22Run unit tests on WindowsDavid Robillard1-1/+2
2019-04-22Fix running tests in a recursive projectDavid Robillard1-3/+2
2019-04-21Don't add -Wconversion flag with MSVCDavid Robillard1-1/+1
2019-04-21Switch to using a submodule for autowafDavid Robillard186-41937/+6
2019-04-21Update autowafDavid Robillard2-51/+24