Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-01-10 | Add clant configuration | David Robillard | 2 | -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-10 | Add missing includes | David Robillard | 1 | -0/+2 | |
2021-01-10 | Avoid use of strcpy | David Robillard | 1 | -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-10 | Only use modern deprecated attributes on clang 7 and newer | David Robillard | 1 | -1/+1 | |
2021-01-10 | Only use nullability attributes on clang 7 and newer | David Robillard | 1 | -1/+1 | |
These have existed for longer, but the names were changed. | |||||
2021-01-09 | Fix plots in README | David Robillard | 1 | -3/+3 | |
2021-01-09 | Only define WIN32_LEAN_AND_MEAN for MSVC | David Robillard | 1 | -1/+3 | |
This avoids a warning with MinGW. | |||||
2021-01-09 | Avoid GCC warning about printed string overflow | David Robillard | 1 | -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-09 | Avoid GCC warning about potential signed overflow | David Robillard | 1 | -1/+1 | |
2021-01-09 | Add missing pure attributes | David Robillard | 2 | -2/+2 | |
2021-01-09 | Fix fallback aligned_alloc() detection | David Robillard | 1 | -1/+1 | |
2021-01-09 | Fix SERD_DISABLE_DEPRECATED | David Robillard | 4 | -2/+12 | |
2021-01-07 | Update fallback version | David Robillard | 1 | -1/+1 | |
Oops. | |||||
2021-01-07 | Serd 0.30.8v0.30.8 | David Robillard | 2 | -3/+3 | |
2021-01-07 | Update autowaf | David Robillard | 1 | -0/+0 | |
2021-01-07 | Use globally unique Doxygen group names | David Robillard | 2 | -11/+11 | |
This is necessary to avoid clashes when building unified documentation as a subproject. | |||||
2021-01-07 | Remove unused file | David Robillard | 1 | -11/+0 | |
2021-01-06 | Only publish documentation on master | David Robillard | 1 | -2/+2 | |
2021-01-06 | Switch to LV2 documentation theme | David Robillard | 9 | -210/+60 | |
2021-01-06 | dox_to_sphinx.py: Emit documentation in groups | David Robillard | 1 | -52/+23 | |
2021-01-06 | dox_to_sphinx.py: Clean up whitespace in output | David Robillard | 1 | -9/+10 | |
2021-01-06 | dox_to_sphinx.py: Fix computeroutput support | David Robillard | 1 | -1/+1 | |
2021-01-06 | dox_to_sphinx.py: Add support for fancy quotes | David Robillard | 1 | -0/+6 | |
2021-01-02 | Update date in version output | David Robillard | 2 | -2/+2 | |
2021-01-02 | Use email address instead of website for attribution | David Robillard | 32 | -33/+33 | |
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 | |