Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-01-13 | Remove support for Turtle named inline nodes extension | David Robillard | 10 | -84/+7 | |
2022-01-13 | Remove escape parameter from serd_node_new_file_uri | David Robillard | 4 | -19/+11 | |
Since characters are escaped because they are not valid characters in a URI, any use of this function without escaping is problematic at best. | |||||
2022-01-13 | Remove useless character counting | David Robillard | 11 | -101/+55 | |
2022-01-13 | Remove serd_uri_to_path() | David Robillard | 4 | -95/+7 | |
2022-01-13 | Define _POSIX_C_SOURCE globally in the build system | David Robillard | 4 | -8/+8 | |
Using inconsistent defines like this that affect the standard library implementation can cause issues. So, doing this consistently for the whole library is a better approach, although it unfortunately makes the code more difficult to compile manually. | |||||
2022-01-13 | Switch to Meson | David Robillard | 22 | -727/+859 | |
2022-01-13 | Factor out test suite running to a standalone script | David Robillard | 2 | -199/+442 | |
2022-01-13 | Add dark theme for HTML man pages | David Robillard | 1 | -10/+70 | |
2022-01-13 | Fix name shadowing in benchmarking script | David Robillard | 1 | -3/+3 | |
2022-01-13 | Suppress new warnings in clang-tidy 13 | David Robillard | 2 | -2/+4 | |
2021-07-10 | Fix out of bounds read in test | David Robillard | 1 | -0/+4 | |
2021-07-10 | Clean up socket-like stream reading test | David Robillard | 1 | -5/+17 | |
2021-07-10 | Add missing include | David Robillard | 1 | -0/+1 | |
2021-07-09 | Fix accidentally disabled writer test | David Robillard | 2 | -5/+4 | |
2021-07-08 | Suppress new warnings in clang-tidy 12 | David Robillard | 2 | -0/+5 | |
2021-06-30 | dox_to_sphinx.py: Show macro parameter names in prototype | David Robillard | 1 | -2/+16 | |
2021-06-30 | Fix clang-format configuration for pragmas | David Robillard | 1 | -0/+1 | |
2021-06-30 | Move local URI utility functions | David Robillard | 1 | -28/+28 | |
2021-06-30 | Make node qualify and expand functions tolerate a null Env | David Robillard | 3 | -3/+20 | |
This is convenient in places where you don't necessarily need an Env, since these methods will work the same as with an empty Env. | |||||
2021-06-30 | Avoid writing invalid prefixed name prefixes | David Robillard | 1 | -1/+2 | |
2021-06-30 | Format long comments consistently | David Robillard | 1 | -14/+14 | |
2021-06-06 | Move type definitions inside the corresponding documentation group | David Robillard | 1 | -102/+102 | |
2021-05-31 | Make most function parameters const | David Robillard | 11 | -212/+283 | |
More const never hurts in general, but in particular this allows the compiler to make better nullability deductions, which reduces the amount of manual nullability casting required. | |||||
2021-05-31 | Fix include order | David Robillard | 1 | -1/+2 | |
2021-05-31 | Remove "static inline" for functions in implementation files | David Robillard | 7 | -26/+26 | |
This is just noise since these are static functions local to a C compilation unit. | |||||
2021-05-31 | Remove default case from exhaustive switch | David Robillard | 3 | -3/+1 | |
2021-05-31 | Clean up switch case comments | David Robillard | 1 | -5/+5 | |
2021-05-31 | Fix unannotated switch fallthroughs | David Robillard | 3 | -8/+27 | |
Unfortunately, clang does not support doing this with comments, requiring yet more preprocessor gunk. | |||||
2021-05-31 | Fix some conversion warnings | David Robillard | 3 | -7/+7 | |
2021-05-16 | Suppress silly VS2019 warning | David Robillard | 1 | -0/+1 | |
2021-05-16 | Add examples to man page | David Robillard | 1 | -0/+8 | |
2021-05-16 | Fix inconsistent argument name in man page | David Robillard | 1 | -1/+1 | |
2021-05-16 | Remove redundant cast | David Robillard | 1 | -1/+1 | |
2021-05-16 | Avoid else after break | David Robillard | 1 | -3/+3 | |
2021-04-12 | Group API declarations by topic | David Robillard | 1 | -42/+47 | |
2021-04-12 | Sort command line argument handling code | David Robillard | 1 | -7/+7 | |
2021-04-12 | dox_to_sphinx.py: Support emphasis | David Robillard | 1 | -0/+3 | |
2021-04-12 | dox_to_sphinx.py: Support computeroutput nodes with children | David Robillard | 1 | -2/+1 | |
2021-04-11 | Support combining several BSD-style command line flags in serdi | David Robillard | 3 | -60/+73 | |
2021-04-09 | Write invalid characters in URIs with percent encoding | David Robillard | 1 | -5/+9 | |
2021-04-09 | Write statements with invalid URI characters in lax mode | David Robillard | 7 | -10/+24 | |
2021-03-07 | Rewrite man page in mdoc and use mandoc to generate HTML | David Robillard | 3 | -78/+344 | |
2021-02-15 | Fix writing long literals with triple quotes | David Robillard | 5 | -4/+83 | |
2021-01-20 | Serd 0.30.10v0.30.10 | David Robillard | 3 | -4/+4 | |
2021-01-17 | Remove aligned_alloc support | David Robillard | 4 | -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-16 | Fix documentation installation directory | Guido Aulisi | 2 | -1/+3 | |
2021-01-16 | Add fallback configuration if documentation theme is unavailable | David Robillard | 2 | -27/+52 | |
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. |