Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-11-25 | Always handle the return value of serd_env_set_base_uri() | David Robillard | 2 | -16/+20 | |
2022-11-25 | Always handle the return value of eat_byte_safe() | David Robillard | 3 | -61/+56 | |
2022-11-24 | Gracefully handle bad characters in Turtle blank node syntax | David Robillard | 3 | -2/+11 | |
2022-11-24 | Gracefully handle bad characters in Turtle datatype syntax | David Robillard | 1 | -2/+5 | |
2022-11-24 | Explicitly ignore the posix_fadvise() return value | David Robillard | 2 | -2/+3 | |
I can't figure out a sensible way to test this, and even if it did fail, at most a warning message could be printed because this is just a performance hint anyway. | |||||
2022-11-24 | Avoid redundant comparison | David Robillard | 1 | -1/+1 | |
2022-11-24 | Simplify error handling logic | David Robillard | 1 | -6/+5 | |
2022-11-24 | Fix improper use of chunk sink | David Robillard | 1 | -4/+4 | |
2022-11-15 | Fix implementation-defined integer conversion | David Robillard | 1 | -1/+1 | |
2022-11-14 | Add Windows path separator support to serd_node_new_file_uri() | David Robillard | 1 | -4/+16 | |
2022-10-23 | Fix hang when skipping an error at EOF when lax parsing | David Robillard | 1 | -1/+1 | |
2022-10-23 | Fix crash when trying to read chunks without starting | David Robillard | 1 | -2/+7 | |
2022-10-23 | Add trailing commas to enum declarations | David Robillard | 1 | -2/+2 | |
This has been supported since C99 and C++11, and makes for less noisy diffs and fewer conflicts when things are added. | |||||
2022-10-23 | Fix "suspicious" string comparison | David Robillard | 2 | -2/+1 | |
This is beyond silly. | |||||
2022-10-23 | Strengthen clang-tidy configuration | David Robillard | 1 | -2/+0 | |
2022-10-23 | Use uppercase integer literal suffixes | David Robillard | 5 | -43/+43 | |
2022-10-23 | Simplify clang-tidy configuration | David Robillard | 1 | -8/+1 | |
2022-10-07 | Override pkg-config dependency within meson | David Robillard | 1 | -1/+1 | |
2022-09-08 | Serd 0.30.16v0.30.16 | David Robillard | 1 | -1/+1 | |
2022-09-08 | Use 0BSD for trivial "public domain intent" things | David Robillard | 1 | -1/+1 | |
Fedora takes issue with CC0. Although it doesn't really matter for this stuff (dual licensed anyway, questionably "software", certainly not patentable, and so on), this is simpler and more consistent with the ISC license used for the actual software anyway. | |||||
2022-08-31 | Adopt REUSE machine-readable licensing standard | David Robillard | 24 | -345/+49 | |
2022-07-16 | Simplify command line usage printing | David Robillard | 1 | -16/+19 | |
2022-07-16 | Remove redundant check for command line argument count | David Robillard | 1 | -4/+1 | |
2022-07-16 | Define _POSIX_C_SOURCE globally in the build system | David Robillard | 3 | -6/+0 | |
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-07-16 | Use a lookup table to determine UTF-8 encoding length | David Robillard | 1 | -20/+38 | |
2022-07-16 | Fix spelling error in serdi man page | David Robillard | 1 | -1/+1 | |
2022-07-13 | Suppress new warnings in clang and clang-tidy 14 | David Robillard | 1 | -0/+2 | |
2022-07-10 | Serd 0.30.14v0.30.14 | David Robillard | 1 | -1/+1 | |
2022-06-10 | Fix memory consumption when reading documents | David Robillard | 2 | -3/+15 | |
2022-05-26 | Serd 0.30.12v0.30.12 | David Robillard | 1 | -1/+1 | |
2022-05-26 | Update serdi version output | David Robillard | 1 | -3/+3 | |
2022-01-13 | Suppress new warnings in clang-tidy 13 | David Robillard | 1 | -1/+2 | |
2021-07-08 | Suppress new warnings in clang-tidy 12 | David Robillard | 1 | -0/+3 | |
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 | 1 | -0/+12 | |
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-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 | 2 | -2/+1 | |
2021-05-31 | Clean up switch case comments | David Robillard | 1 | -5/+5 | |
2021-05-31 | Fix unannotated switch fallthroughs | David Robillard | 2 | -7/+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 | Remove redundant cast | David Robillard | 1 | -1/+1 | |
2021-05-16 | Avoid else after break | David Robillard | 1 | -3/+3 | |
2021-04-12 | Sort command line argument handling code | David Robillard | 1 | -7/+7 | |
2021-04-11 | Support combining several BSD-style command line flags in serdi | David Robillard | 1 | -59/+68 | |
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 | 1 | -9/+9 | |
2021-02-15 | Fix writing long literals with triple quotes | David Robillard | 2 | -3/+11 | |