This repository was archived by the owner on Oct 20, 2022. It is now read-only.
Releases: matusnovak/doxybook2
Releases · matusnovak/doxybook2
v1.2.2
v1.2.1
v1.2.0
v1.1.6
- Fix do not create include/include directory on CMake install target
- Fix cb.apply is not a function during gitbook init on CircleCi
- Add extra space between links and brief in TEMPLATE_INDEX
- Add support for Qt signals and slots
v1.1.5
- Replace all spaces with dashes when creating an anchor link
v1.1.4
- Fix can not build on Mac OS 10.11
- Add --version to the CLI that uses git describe
v1.1.3
- Fix c++ keyword typo in template loader function. This could cause only some templates to load at the beginning of the program.
v1.1.2
- Fix CMakeLists wrong include folder for install target
- Fix loading custom templates (again)
- Fix typo in default templates
v1.1.1
- Fix typedef function pointer incorrect type value. The "type" for typedef function pointers would appear as
int(*due to a bug in Doxygen xml files. This is now change to appendargsstringto the type, so it becomesint(*)(int, int)in the output markdown/json.
v1.1.0
- Fix params list missing in output markdown for classes and function typedefs.
- Change how templates are loaded by introducing better recursive template loader on top of inja. This introduces API breaking change! The
TemplateDefaultLoaderandTemplateFolderLoaderclasses have been removed. Now, theRendererclass completely takes over the template loading and the default templates have been moved to a new fileDefaultTemplates.cpp. - Updated Travis CI and Circle CI builds to use Doxygen 1.8.17
- Updated dependencies to their latest origin/master versions.
- Removed old Doxygen version specific test code.