Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-10-06 | Tolerate reduce floating point precision on Apple Silicon | David Robillard | 1 | -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-23 | Avoid use of deprecated meson string formatting with files | David Robillard | 2 | -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-23 | Explicitly specify all documentation dependencies | David Robillard | 5 | -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-22 | Suppress new warnings in clang-tidy 16 | David Robillard | 1 | -1/+2 | |
2023-09-22 | Fix documentation dependencies | David Robillard | 3 | -4/+4 | |
2023-09-22 | Fix potential realloc leaks | David Robillard | 2 | -6/+12 | |
2023-09-22 | Remove unused include | David Robillard | 1 | -1/+0 | |
2023-09-22 | Suppress new warnings in clang 16 | David Robillard | 1 | -0/+2 | |
2023-09-22 | Remove custom documentation CSS | David Robillard | 1 | -18/+0 | |
This doesn't seem to be necessary, and spacing issues like this should be addressed by fixing the theme anyway. | |||||
2023-09-22 | Clean up meson formatting | David Robillard | 3 | -61/+102 | |
Formatted automatically with muon, with some manual changes to make things format more nicely. | |||||
2023-09-22 | Sort options in meson commands on CI | David Robillard | 1 | -10/+10 | |
Sorting things alphabetically, although less natural in a way, makes it easier to find a given option in a row. | |||||
2023-09-22 | Clean up sphinx build commands | David Robillard | 3 | -9/+19 | |
2023-09-22 | Fix documentation build in a virtualenv | David Robillard | 1 | -2/+2 | |
2023-09-22 | Move man pages to their own directory | David Robillard | 7 | -56/+86 | |
2023-08-31 | Update gitignore file | David Robillard | 1 | -3/+3 | |
2023-08-23 | Update sphinxygen wrap | David Robillard | 1 | -6/+6 | |
2023-05-15 | Clean up and organize configuration summary | David Robillard | 2 | -22/+40 | |
2023-05-11 | Upload documentation from cleaner installed version | David Robillard | 1 | -6/+7 | |
2023-05-11 | Clean up documentation and remove junk files from install | David Robillard | 14 | -167/+170 | |
2023-05-08 | Avoid use of strtoul() | David Robillard | 3 | -9/+16 | |
This function is overkill for the simple cases actually needed here, and pretty slow anyway. | |||||
2023-05-05 | Update benchmarks | David Robillard | 5 | -388/+453 | |
2023-05-05 | Run mandoc with strict errors | David Robillard | 2 | -3/+10 | |
2023-05-05 | Add options to disable html or singlehtml documentation | David Robillard | 3 | -30/+41 | |
2023-05-05 | Remove unused meson.build file | David Robillard | 1 | -8/+0 | |
2023-05-05 | Fail on documentation warnings when werror=true | David Robillard | 1 | -6/+9 | |
2023-05-05 | Fix stylelint issues | David Robillard | 2 | -3/+5 | |
2023-05-04 | Fix whitespace | David Robillard | 1 | -2/+2 | |
2023-05-03 | Make serd_reader_read_chunk() work with NQuads | David Robillard | 5 | -10/+110 | |
2023-05-03 | Remove test output file after execution | David Robillard | 1 | -0/+1 | |
2023-05-03 | Factor out read_nquads_statement() | David Robillard | 1 | -42/+54 | |
2023-05-03 | Remove redundant wrapper function | David Robillard | 1 | -7/+1 | |
2023-05-01 | Use warning_level=everything on FreeBSD CI | David Robillard | 1 | -1/+1 | |
2023-05-01 | Clean up warning suppressions | David Robillard | 1 | -28/+40 | |
2023-04-30 | Suppress cross-compilation warnings in MacOS builds | David Robillard | 3 | -1/+10 | |
2023-04-30 | Add long "help" and "version" options to serdi | David Robillard | 6 | -6/+17 | |
Although serdi still "officially" has a BSD-style interface, meson uses --version to find the version of executables. So, support that, and also add --help, since users will often try that for unknown commands. | |||||
2023-04-30 | Fix redundant nested max() in benchmark script | David Robillard | 1 | -1/+1 | |
2023-04-25 | Remove stale comment | David Robillard | 1 | -5/+2 | |
2023-04-16 | Gracefully handle errors when writing text | David Robillard | 12 | -89/+312 | |
2023-04-06 | Add test for different comment termination cases | David Robillard | 3 | -0/+13 | |
2023-04-06 | Clean up error handling and use TRY macros more broadly | David Robillard | 2 | -37/+41 | |
2023-04-06 | Improve pretty-printing of lists and inline subjects | David Robillard | 18 | -171/+335 | |
2023-04-06 | Remove support for writing Turtle named inline nodes extension | David Robillard | 4 | -48/+7 | |
2023-04-06 | Simplify remove_dot_segments() implementation | David Robillard | 1 | -53/+15 | |
2023-04-06 | Make URI writing stricter by default | David Robillard | 6 | -11/+55 | |
2023-04-06 | Gracefully handle boolean subject and predicate errors | David Robillard | 7 | -2/+20 | |
2023-04-06 | Fix benchmark plot axis range | David Robillard | 1 | -4/+7 | |
2023-04-06 | Improve help text | David Robillard | 1 | -2/+2 | |
2023-04-06 | Check formatting of project Turtle files | David Robillard | 4 | -0/+89 | |
2023-04-06 | Use portable names for all test targets | David Robillard | 1 | -8/+8 | |
2023-04-06 | Simplify stdout capturing code | David Robillard | 1 | -4/+2 | |
This is slightly less excruciatingly slow on Windows, sometimes, maybe. |