kc3-lang/libgit2/script/api-docs

Branch :


Log

Author Commit Date CI Message
eb0f7a73 2026-05-04 23:24:33 docs: proceed when version folder doesn't exist A version folder may not exists (for example, when adding a new version). Proceed!
53c14952 2024-12-23 16:11:52 docs: properly parse enum values For enum values that are constructed, not literal integers, we need to parse the inner / implicit expression. For example: ``` GIT_DIFF_REVERSE = (1u << 0) ```
0f1cb81a 2024-12-10 23:22:35 Documentation: clean up old documentation Clean up the outdated documentation folder before re-generating it in place. This accomodates a deleted API.
8ae0a22b 2024-12-09 17:02:08 Documentation: don't resort versions Array.sort() mutates the array _and_ returns it; don't mutate the version array.
5efc0061 2024-12-09 09:36:39 Generate search page in documentation generation
6297b619 2024-12-09 09:24:57 Add search capabilities to docs Include "minisearch" which is a straightforward client-side search tool; and a script to generate the search index for minisearch for each version of libgit2.
1da67ef0 2024-12-09 12:20:42 Allow documentation (re)generation in CI build Provide a mechanism to allow the documentation to be force rebuilt.
0bd5e479 2024-11-26 20:47:31 Introduce a "validate only" mode for docs generation The API documentation generation is useful (in `--strict` mode) to determine whether all our APIs have sufficient documentation. Add a `--validate-only` mode that will run the validation without emitting the API JSON. This is useful for ensuring that the documentation is complete.
89cc5ef8 2024-11-25 10:12:29 Include documentation generator libgit2 has a new documentation generator that generates API schema from our headers, then produces reference documentation that is included into the website directly.