aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2023-12-02Align node allocationsDavid Robillard3-6/+46
2023-12-02Make nodes opaqueDavid Robillard24-596/+651
2023-12-02Add node accessor APIDavid Robillard2-0/+44
2023-12-02Shorten node constructor namesDavid Robillard7-66/+67
2023-12-02Rename string view fieldsDavid Robillard7-77/+77
2023-12-02Use more human-readable status codesDavid Robillard15-139/+157
2023-12-02Add version constants to public headerDavid Robillard7-6/+68
2023-12-02Split up public API headerDavid Robillard47-977/+1554
2023-12-02Remove "get" from accessor namesDavid Robillard6-18/+18
2023-12-02Rename function types for consistencyDavid Robillard9-62/+62
2023-12-02Rename SerdStyle to SerdWriterFlagsDavid Robillard5-60/+64
2023-12-02Rename SerdType to SerdNodeTypeDavid Robillard5-25/+28
The old name will be even more ambiguous with the increased scope.
2023-12-02Rename SerdURI to SerdURIViewDavid Robillard8-111/+113
2023-12-02Rename SerdChunk to SerdStringViewDavid Robillard8-32/+38
2023-12-02Add SerdBuffer type for mutable buffersDavid Robillard7-45/+50
This avoids const violations from abusing SerdChunk as a mutable buffer for string sinks.
2023-12-02Use char* for strings in public APIDavid Robillard24-430/+388
The constant casting just makes user code a mess, for no benefit.
2023-12-02Remove support for reading Turtle named inline nodes extensionDavid Robillard9-61/+1
2023-12-02Remove escape parameter from serd_node_new_file_uriDavid Robillard4-34/+16
Since characters are escaped because they are not valid characters in a URI, any use of this function without escaping is problematic at best.
2023-12-02Remove useless character countingDavid Robillard11-101/+55
2023-12-02Remove serd_uri_to_path()David Robillard9-104/+11
2023-12-02Delete trailing whitespaceDavid Robillard1-1/+1
2023-10-22Serd 0.32.0v0.32.0David Robillard4-5/+5
2023-10-06Tolerate reduce floating point precision on Apple SiliconDavid Robillard1-2/+2
This is... strange, and slightly worrying, although it's already known that this conversion code isn't exact in all cases. The next major version will fix that (and I've confirmed that these issues aren't present there), but that's a major change so, for now, just reduce the very large number in the test case slightly so that it passes on these chips as well.
2023-09-23Avoid use of deprecated meson string formatting with filesDavid Robillard2-24/+29
Meson annoyingly doesn't provide access to the path of file objects (but it should). It was possible to do that by formatting a string with a file argument, but now this triggers a loud warning that claims it has always been broken and will be deprecated. So, avoid this by juggling things around and maintaining unchecked path strings instead, and hope that they're all passed to files() at some point so they can't get stale.
2023-09-23Explicitly specify all documentation dependenciesDavid Robillard5-14/+37
Yet another attempt to sort out flaky documentation builds. This tries to be careful and describe the complete documentation dependency graph to meson explicitly (ignoring tool outputs that aren't used). Also remove the shared doctrees directory option, since I suspect this causes issues in parallel builds.
2023-09-22Suppress new warnings in clang-tidy 16David Robillard1-1/+2
2023-09-22Fix documentation dependenciesDavid Robillard3-4/+4
2023-09-22Fix potential realloc leaksDavid Robillard2-6/+12
2023-09-22Remove unused includeDavid Robillard1-1/+0
2023-09-22Suppress new warnings in clang 16David Robillard1-0/+2
2023-09-22Remove custom documentation CSSDavid Robillard1-18/+0
This doesn't seem to be necessary, and spacing issues like this should be addressed by fixing the theme anyway.
2023-09-22Clean up meson formattingDavid Robillard3-61/+102
Formatted automatically with muon, with some manual changes to make things format more nicely.
2023-09-22Sort options in meson commands on CIDavid Robillard1-10/+10
Sorting things alphabetically, although less natural in a way, makes it easier to find a given option in a row.
2023-09-22Clean up sphinx build commandsDavid Robillard3-9/+19
2023-09-22Fix documentation build in a virtualenvDavid Robillard1-2/+2
2023-09-22Move man pages to their own directoryDavid Robillard7-56/+86
2023-08-31Update gitignore fileDavid Robillard1-3/+3
2023-08-23Update sphinxygen wrapDavid Robillard1-6/+6
2023-05-15Clean up and organize configuration summaryDavid Robillard2-22/+40
2023-05-11Upload documentation from cleaner installed versionDavid Robillard1-6/+7
2023-05-11Clean up documentation and remove junk files from installDavid Robillard14-167/+170
2023-05-08Avoid use of strtoul()David Robillard3-9/+16
This function is overkill for the simple cases actually needed here, and pretty slow anyway.
2023-05-05Update benchmarksDavid Robillard5-388/+453
2023-05-05Run mandoc with strict errorsDavid Robillard2-3/+10
2023-05-05Add options to disable html or singlehtml documentationDavid Robillard3-30/+41
2023-05-05Remove unused meson.build fileDavid Robillard1-8/+0
2023-05-05Fail on documentation warnings when werror=trueDavid Robillard1-6/+9
2023-05-05Fix stylelint issuesDavid Robillard2-3/+5
2023-05-04Fix whitespaceDavid Robillard1-2/+2
2023-05-03Make serd_reader_read_chunk() work with NQuadsDavid Robillard5-10/+110