Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-01-13 | Replace serd_reader_set_strict() with SerdReaderFlags | David Robillard | 1 | -5/+4 | |
2022-01-13 | Make Writer always write to a ByteSink | David Robillard | 1 | -16/+30 | |
2022-01-13 | Add empty syntax type for suppressing output | David Robillard | 1 | -6/+11 | |
2022-01-13 | Replace SERD_WRITE_STRICT flag with SERD_WRITE_LAX | David Robillard | 1 | -2/+2 | |
The unset value for flags should represent the best default, which in this case is strict parsing. Lax parsing is the riskier opt-in option. | |||||
2022-01-13 | Improve writer error handling | David Robillard | 1 | -1/+2 | |
2022-01-13 | Add option for writing terse output without newlines | David Robillard | 1 | -21/+19 | |
2022-01-13 | Separate ByteSink from writer | David Robillard | 1 | -5/+12 | |
2022-01-13 | Simplify writer style options | David Robillard | 1 | -31/+3 | |
2022-01-13 | Add SerdCaret | David Robillard | 1 | -4/+8 | |
2022-01-13 | Add SerdWorld for shared library state | David Robillard | 1 | -8/+9 | |
2022-01-13 | Move syntax name/extension utilities to public API | David Robillard | 1 | -51/+6 | |
2022-01-13 | Use a fixed-size reader stack | David Robillard | 1 | -1/+18 | |
2022-01-13 | Simplify reader interface | David Robillard | 1 | -61/+25 | |
2022-01-13 | Add SerdSink interface and hide implementations | David Robillard | 1 | -7/+1 | |
2022-01-13 | Bring read/write interface closer to C standard | David Robillard | 1 | -2/+2 | |
2022-01-13 | Simplify node construction API | David Robillard | 1 | -11/+13 | |
2022-01-13 | Simplify URI API and implementation | David Robillard | 1 | -2/+3 | |
2022-01-13 | Make nodes opaque | David Robillard | 1 | -6/+8 | |
2022-01-13 | Shorten node constructor names | David Robillard | 1 | -2/+2 | |
2022-01-13 | Rename function types for consistency | David Robillard | 1 | -4/+4 | |
2022-01-13 | Rename SerdStyle to SerdWriterFlags | David Robillard | 1 | -11/+11 | |
2022-01-13 | Rename SerdURI to SerdURIView | David Robillard | 1 | -2/+2 | |
2022-01-13 | Use char* for strings in public API | David Robillard | 1 | -28/+26 | |
The constant casting just makes user code a mess, for no benefit. | |||||
2022-01-13 | Remove escape parameter from serd_node_new_file_uri | David Robillard | 1 | -1/+1 | |
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 | Define _POSIX_C_SOURCE globally in the build system | David Robillard | 1 | -2/+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. | |||||
2021-05-31 | Make most function parameters const | David Robillard | 1 | -6/+6 | |
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 | Remove "static inline" for functions in implementation files | David Robillard | 1 | -1/+1 | |
This is just noise since these are static functions local to a C compilation unit. | |||||
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-01-09 | Only define WIN32_LEAN_AND_MEAN for MSVC | David Robillard | 1 | -1/+3 | |
This avoids a warning with MinGW. | |||||
2021-01-02 | Update date in version output | David Robillard | 1 | -1/+1 | |
2021-01-02 | Use email address instead of website for attribution | David Robillard | 1 | -2/+2 | |
2021-01-01 | Remove the need for a generated configuration header | David Robillard | 1 | -2/+2 | |
2020-12-31 | Format all code with clang-format | David Robillard | 1 | -275/+277 | |
2020-12-31 | Avoid "else" after "break" and "return" | David Robillard | 1 | -3/+12 | |
2020-11-14 | Deprecate serd_uri_to_path() | David Robillard | 1 | -2/+8 | |
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-10 | Add const, pure, and malloc function attributes | David Robillard | 1 | -1/+1 | |
2020-11-10 | Define WIN32_LEAN_AND_MEAN | David Robillard | 1 | -0/+1 | |
2020-09-27 | Update stale copyright dates | David Robillard | 1 | -1/+1 | |
2020-08-16 | Use conventional short variable name for status | David Robillard | 1 | -8/+8 | |
2020-08-14 | Avoid absurd Windows warnings about "deprecated" POSIX functions | David Robillard | 1 | -2/+2 | |
2020-08-14 | Clean up and separate internal headers | David Robillard | 1 | -1/+24 | |
2020-07-06 | Fix spurious semicolon warnings | David Robillard | 1 | -2/+2 | |
2020-06-21 | Clean up includes | David Robillard | 1 | -4/+7 | |
2019-03-16 | Set stdin and stdout to binary mode on Windows to preserve newlines | David Robillard | 1 | -0/+10 | |
2019-01-05 | Fix unused parameter warnings | David Robillard | 1 | -0/+2 | |
2018-01-04 | Open files in binary mode to preserve line endings on Windows | David Robillard | 1 | -1/+1 | |
2017-12-29 | Don't force ASCII for NQuads | David Robillard | 1 | -2/+1 | |