Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-01-02 | Use SERD_STATIC instead of SERD_SHARED to control visibility | David Robillard | 2 | -7/+7 | |
For consistency, this seems to be the most common convention. | |||||
2021-01-01 | Remove the need for a generated configuration header | David Robillard | 5 | -11/+127 | |
2020-12-31 | Format all code with clang-format | David Robillard | 31 | -4625/+4918 | |
2020-12-31 | Avoid "else" after "break" and "return" | David Robillard | 11 | -53/+117 | |
2020-12-21 | Fix documentation page width | David Robillard | 1 | -1/+1 | |
2020-12-21 | Remove old Doxygen configuration | David Robillard | 1 | -2426/+0 | |
2020-12-21 | Generate documentation with Sphinx | David Robillard | 21 | -1142/+1076 | |
2020-12-18 | Fix build on ancient GCC | David Robillard | 1 | -1/+3 | |
2020-12-17 | Add test for attempting to convert a non-file URI to a path | David Robillard | 1 | -0/+3 | |
2020-12-17 | Don't install API man pages | David Robillard | 2 | -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-15 | Clean up includes | David Robillard | 5 | -7/+7 | |
2020-12-15 | Suppress new clang-tidy warnings | David Robillard | 3 | -1/+10 | |
2020-12-15 | Fix nullable annotations on allocating function return values | David Robillard | 1 | -2/+2 | |
2020-11-17 | Fix broken links in documentation | David Robillard | 2 | -3/+3 | |
2020-11-15 | Port serd_bench.py to argparse | David Robillard | 1 | -28/+22 | |
2020-11-15 | Strengthen null annotation on serd_env_get_base_uri() | David Robillard | 1 | -1/+1 | |
2020-11-15 | Run flake8 on serd_bench.py | David Robillard | 1 | -0/+4 | |
2020-11-15 | Format serd_bench.py with black | David Robillard | 1 | -65/+94 | |
2020-11-15 | Move benchmark script to scripts subdirectory | David Robillard | 1 | -0/+0 | |
2020-11-15 | Only use aligned_alloc in C11 | David Robillard | 1 | -1/+1 | |
2020-11-14 | Deprecate serd_uri_to_path() | David Robillard | 4 | -4/+30 | |
2020-11-14 | Refuse to write relative URI references to NTriples | David Robillard | 3 | -2/+19 | |
2020-11-14 | Simplify abbreviated URI writing code | David Robillard | 1 | -13/+14 | |
2020-11-13 | Make sanitizer failures fatal on CI | David Robillard | 1 | -3/+3 | |
2020-11-13 | Do sanitize run on CI in a single job | David Robillard | 1 | -7/+3 | |
2020-11-13 | Fix test coverage | David Robillard | 1 | -9/+7 | |
2020-11-13 | Remove tests that pass null to nonnull parameters | David Robillard | 2 | -8/+4 | |
2020-11-13 | Add failure test for unescaped quotes in URIs | David Robillard | 2 | -0/+7 | |
2020-11-13 | Remove dead code | David Robillard | 2 | -22/+0 | |
2020-11-13 | Improve documentation | David Robillard | 1 | -19/+36 | |
2020-11-13 | Simplify writer statement validity checking | David Robillard | 1 | -5/+3 | |
2020-11-13 | Use line comment | David Robillard | 1 | -3/+1 | |
2020-11-13 | Suppress simple test output | David Robillard | 1 | -1/+1 | |
2020-11-13 | Improve IRI reading performance | David Robillard | 1 | -10/+13 | |
This allows the compiler to construct a jump table, and avoids a branch. | |||||
2020-11-13 | Improve documentation summary for SerdEnv | David Robillard | 1 | -6/+1 | |
2020-11-13 | Improve add and chop prefix functions when given empty strings | David Robillard | 2 | -8/+10 | |
2020-11-13 | Remove use of C character class functions that may use locale | David Robillard | 4 | -6/+16 | |
Some of these cause warnings, and should never have been used in the first place since they depend on locale. | |||||
2020-11-13 | Use line comments where appropriate and clean up header | David Robillard | 1 | -222/+115 | |
2020-11-13 | Allow setting the base URI of an Env to NULL | David Robillard | 2 | -3/+12 | |
2020-11-13 | Use aligned allocation via C11 or Windows API where possible | David Robillard | 6 | -13/+72 | |
2020-11-12 | Use C11 if possible | David Robillard | 3 | -1/+5 | |
2020-11-12 | Relax nullability annotation on allocation functions | David Robillard | 1 | -3/+5 | |
In practice almost nobody checks for failed allocation, including unfortunately the serd tests and serdi itself. Adding a struct mode to conditionally define this would be a good idea to support allocation-hardened code, but for now just mark them as unspecified instead. On the bright side, this documents the nature of the returned pointers nicely. | |||||
2020-11-12 | Add missing const qualifiers | David Robillard | 1 | -4/+4 | |
2020-11-12 | Factor out output style selection | David Robillard | 1 | -22/+34 | |
2020-11-12 | Suppress nullability warnings in tests | David Robillard | 1 | -0/+1 | |
2020-11-12 | Use built-in abspath() | David Robillard | 1 | -1/+1 | |
2020-11-11 | Set up environment for using serdi as a subproject | David Robillard | 1 | -0/+9 | |
2020-11-11 | Disable coverage on sanitizer CI row | David Robillard | 1 | -1/+1 | |
2020-11-11 | Fix link errors with sanitizers at the source in autowaf | David Robillard | 2 | -6/+0 | |
2020-11-11 | Fix build as a subproject | David Robillard | 1 | -5/+7 | |