aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2021-04-09Write statements with invalid URI characters in lax modeDavid Robillard7-10/+24
2021-03-07Rewrite man page in mdoc and use mandoc to generate HTMLDavid Robillard3-78/+344
2021-02-15Fix writing long literals with triple quotesDavid Robillard5-4/+83
2021-01-20Serd 0.30.10v0.30.10David Robillard3-4/+4
2021-01-17Remove aligned_alloc supportDavid Robillard4-27/+2
This causes build issues when targeting older versions of MacOS. That could be fixed, but I don't have the ability to reproduce it at the moment, and it's a problem in the build system check code which is about to be entirely replaced anyway. Since, as far as I know, this does not actually add aligned allocation support to any real system (they all support one of the other methods), just remove it for now.
2021-01-16Fix documentation installation directoryGuido Aulisi2-1/+3
2021-01-16Add fallback configuration if documentation theme is unavailableDavid Robillard2-27/+52
2021-01-10Add clant configurationDavid Robillard2-0/+10
Older versions of include-what-you-use do not understand stdint.h for some reason, so add some local configuration for this for now.
2021-01-10Add missing includesDavid Robillard1-0/+2
2021-01-10Avoid use of strcpyDavid Robillard1-3/+3
Again, really just skirting around warnings here, but this is faster anyway since we know what we're doing here and doing require any fine-grained null termination.
2021-01-10Only use modern deprecated attributes on clang 7 and newerDavid Robillard1-1/+1
2021-01-10Only use nullability attributes on clang 7 and newerDavid Robillard1-1/+1
These have existed for longer, but the names were changed.
2021-01-09Fix plots in READMEDavid Robillard1-3/+3
2021-01-09Only define WIN32_LEAN_AND_MEAN for MSVCDavid Robillard1-1/+3
This avoids a warning with MinGW.
2021-01-09Avoid GCC warning about printed string overflowDavid Robillard1-9/+14
GCC seems to think there was a potential overflow here, but I don't see it. I think it just can't figure out that the printed text and the size both depend on the same variable. In any case, avoiding formatting functions here avoids the warning, and is probably faster anyway.
2021-01-09Avoid GCC warning about potential signed overflowDavid Robillard1-1/+1
2021-01-09Add missing pure attributesDavid Robillard2-2/+2
2021-01-09Fix fallback aligned_alloc() detectionDavid Robillard1-1/+1
2021-01-09Fix SERD_DISABLE_DEPRECATEDDavid Robillard4-2/+12
2021-01-07Update fallback versionDavid Robillard1-1/+1
Oops.
2021-01-07Serd 0.30.8v0.30.8David Robillard2-3/+3
2021-01-07Update autowafDavid Robillard1-0/+0
2021-01-07Use globally unique Doxygen group namesDavid Robillard2-11/+11
This is necessary to avoid clashes when building unified documentation as a subproject.
2021-01-07Remove unused fileDavid Robillard1-11/+0
2021-01-06Only publish documentation on masterDavid Robillard1-2/+2
2021-01-06Switch to LV2 documentation themeDavid Robillard9-210/+60
2021-01-06dox_to_sphinx.py: Emit documentation in groupsDavid Robillard1-52/+23
2021-01-06dox_to_sphinx.py: Clean up whitespace in outputDavid Robillard1-9/+10
2021-01-06dox_to_sphinx.py: Fix computeroutput supportDavid Robillard1-1/+1
2021-01-06dox_to_sphinx.py: Add support for fancy quotesDavid Robillard1-0/+6
2021-01-02Update date in version outputDavid Robillard2-2/+2
2021-01-02Use email address instead of website for attributionDavid Robillard32-33/+33
2021-01-02Use SERD_STATIC instead of SERD_SHARED to control visibilityDavid Robillard2-7/+7
For consistency, this seems to be the most common convention.
2021-01-01Remove the need for a generated configuration headerDavid Robillard5-11/+127
2020-12-31Format all code with clang-formatDavid Robillard31-4625/+4918
2020-12-31Avoid "else" after "break" and "return"David Robillard11-53/+117
2020-12-21Fix documentation page widthDavid Robillard1-1/+1
2020-12-21Remove old Doxygen configurationDavid Robillard1-2426/+0
2020-12-21Generate documentation with SphinxDavid Robillard21-1142/+1076
2020-12-18Fix build on ancient GCCDavid Robillard1-1/+3
2020-12-17Add test for attempting to convert a non-file URI to a pathDavid Robillard1-0/+3
2020-12-17Don't install API man pagesDavid Robillard2-2/+3
These weren't particularly useful, and the project will be migrating away from Doxygen entirely anyway. The serdi man page, which is manually written, of course remains.
2020-12-15Clean up includesDavid Robillard5-7/+7
2020-12-15Suppress new clang-tidy warningsDavid Robillard3-1/+10
2020-12-15Fix nullable annotations on allocating function return valuesDavid Robillard1-2/+2
2020-11-17Fix broken links in documentationDavid Robillard2-3/+3
2020-11-15Port serd_bench.py to argparseDavid Robillard1-28/+22
2020-11-15Strengthen null annotation on serd_env_get_base_uri()David Robillard1-1/+1
2020-11-15Run flake8 on serd_bench.pyDavid Robillard1-0/+4
2020-11-15Format serd_bench.py with blackDavid Robillard1-65/+94