d5bccd950e
- version update to 1.8.18 Removed functionality * Removed support for TCL (code is too buggy and unmaintained, language not very popular) Features * Added the few missing French translations [view] * Updated Swedish translation to match the latest version [view] * Adding check on configuration setting EXTENSION_MAPPING [view] * Adding commands \rtfinclude, \docbookinclude, \maninclude and \xmlinclude [view] * output on doxyparse if a function is a prototype [view] * print protection information on doxyparse [view] * Creation of svg images for formulas with inkscape [view] * Improve formula handling and rendering. [view] * Doxygen version in the messages output (#7640) [view] * Doxygen version information (#7645) [view] * Enabling Travis builds for s390x [view] * Relative markdown file reference (#7032) [view] Bugs fixed * see https://www.doxygen.nl/manual/changelog.html - modified patches % doxygen-no-lowercase-man-names.patch (refreshed) % vhdlparser-no-return.patch (refreshed) - deleted patches - 0001-issue-7248-Including-external-tag-files-with-TOC-pro.patch (upstreamed) - PR_7193_fix_blank_file_patterns.patch (upstreamed) - doxygen-64f1f2357ae764f2c8190d067aff801bc0a56721.patch (upstreamed) - doxygen-git-not-required.patch (upstreamed) - reproducible-sort.patch (upstreamed)
Petr Gajdos2020-07-10 07:38:16 +00:00
70c4a4e743
Accepting request 819443 from home:fsirl:doxygen-libclang
Petr Gajdos2020-07-10 07:24:58 +00:00
b94a24c634
- updated to 1.8.10 * Change the build system to use cmake. * Add support for basic XML syntax highlighting * Added documentation for ``` style fenced code block and more robust parsing * Added function arguments to the LaTeX toc * Added support for language codes * etc. see http://www.stack.nl/~dimitri/doxygen/manual/changelog.html - removed unneded patches: - doxygen-1.5.9-64archs.patch - doxygen-1.5.9-man.patch - doxygen-1.7.0-modify_footer.patch renamed to doxygen-modify_footer.patch
Petr Gajdos2015-08-17 16:12:41 +00:00
ad137d0e31
Accepting request 196359 from devel:tools
Stephan Kulow
2013-08-30 09:36:19 +00:00
ad534dead8
- removed upstreamed endless-loop.patch
Petr Gajdos2013-08-26 09:08:16 +00:00
a3b55fd7f9
- updated to 1.8.5: * Added SOURCE_TOOLTIPS option for advanced tooltip support while source browsing. * bugfixes
Petr Gajdos2013-08-26 08:51:56 +00:00
c8f8ca7ad2
Accepting request 181905 from devel:tools
Stephan Kulow
2013-07-04 08:08:13 +00:00
8636afea54
Accepting request 181899 from home:k0da:ppc
Michael Matz2013-07-03 15:56:31 +00:00
794908e18d
Accepting request 180989 from devel:tools
Stephan Kulow
2013-06-28 14:02:42 +00:00
39fe6c187e
- updated to 1.8.4: * id 686384: When INLINE_SIMPLE_STRUCTS is enabled, also structs with simple typedefs will be inlined. * Doxywizard: scrolling with mouse wheel no longer affects the values in the expert view. * id 681733: More consistent warnings and errors. * Added support for "clang assisted parsing", which allows the code to also be parsed via libclang (C/C++ frontend of LLVM) and can improve the quality of the syntax highting, cross-references, and call graphs, especially for template heavy C++ code. To enable this feature you have to configure doxygen with the --with-libclang option. Then you get two new configuration options: CLANG_ASSISTED_PARSING to enable or disable parsing via clang and CLANG_OPTIONS to pass additional compiler options needed to compile the files. Note that enabling this feature has a significant performance penality. * Included patch donated by Intel which adds Docbook support. This can be enabled via GENERATE_DOCBOOK and the output location can be controlled using DOCBOOK_OUTPUT. Docbook specific sections can be added using \docbookonly ... \enddocbookonly * Added support for UNO IDL (interace language used in Open/Libre Office), thanks to Michael Stahl for the patch. * Included patch by Adrian Negreanu which stores data gathered by doxygen in a sqlite3 database. Currently still work in progress and can only be enabled using --with-sqlite3 during ./configure. * For interactive SVG graphs, edges are now highlighted when hovered by the mouse. * Include patch by Adrian Negreanu to show duration statistics
Petr Gajdos2013-05-20 16:44:15 +00:00
4898f8936b
Accepting request 161105 from devel:tools
Stephan Kulow
2013-03-26 14:30:15 +00:00
a3317640b7
Accepting request 161103 from home:m_meister:branches:openSUSE:Factory
Stephan Kulow
2013-03-26 08:28:59 +00:00
790ccc2e5c
Accepting request 157772 from devel:tools
Stephan Kulow
2013-03-08 09:49:14 +00:00
b0fbdfc2bb
- updated to 1.8.3.1: Changes * Changed to way the search results for multiple projects can be linked together. A project is now no longer identified by the tag files name but via new option EXTERNAL_SEARCH_ID giving a bit more flexibility. * Disabled the disk cache for member data. Allows removing quite some complexity in doxygen and is not really needed now that 64bit systems with >4GB RAM are becoming more common. Let me know if you think you benefit from this caching. * id 691607: Using $relpath$ in a custom footer could lead to ambiguities when followed by a name that could also be a marker, like 'search'. Now $relpath^ should be used instead. $relpath$ is still supported for backward compatibility. New features * You can now use EXTENSION_MAPPING on files without any extension using no_extension as placeholder (thanks to Jason Majors for the patch). * To make navindex section inside a layout file that links to a specific URL you can use usergroup with the url attribute. * To make navindex section without any link inside a layout file you can use usergroup with special title [none]. Details at: http://www.stack.nl/~dimitri/doxygen/changelog.htmlPetr Gajdos2013-01-22 08:19:21 +00:00
fceeb241de
- updated to 1.8.3: Changes * Expanding the tree in an index page of the HTML output, will now expand only one level instead of the whole sub-tree. * A blockquote in Markdown does no longer require a whitespace after the last '>' if the '>' is followed by a newline. * id 682718: Included patch to add version info to all generated template files (headers, footers, stylesheets, layout files, etc). New features * Added support for using external tools to index and search through the HTML documentation. An example index tool is provided (doxyindexer) and an example search engine (doxysearch.cgi). To configure the external search engine the following new options are added to the configuration file: EXTERNAL_SEARCH (to enable the feature), SEARCHENGINE_URL (to specify the URL of the search engine), SEARCHDATA_FILE (to specify the name of the raw search data to index), EXTRA_SEARCH_MAPPINGS (for search through multiple projects). See the manual for details. * Added USE_MDFILE_AS_MAINPAGE config option to select a markdown page to be used as the main page. * id 630645: This patch (contributed by Albert) adds support for simple logic expressions for \cond, \if, and friends, i.e. you can do \if (SOME_SECTION_NAME && (!THIS_ALTERNATIVE || THAT_ALTERNATIVE)) * id 684152: Patch (contributed by Albert) adds a new configuration option MATHJAX_FORMAT to select the MathJax output format. Options are HTML-CSS, NativeMML, or SVG. Bug Fixes
Petr Gajdos2012-12-31 08:42:17 +00:00
b19e873321
Accepting request 134069 from devel:tools
Stephan Kulow
2012-09-17 11:53:54 +00:00
84e883615d
- updated to 1.8.2: changes * Using a fenched block (~~~~) in Markdown without explicit extension will now be interpreted as a @code..@endcode block instead of @verbatim..@endverbatim. * Classes inheriting from an class that is outside the scope of doxygen are still shown in diagrams. This does not hold for usage relations. new features * Added support for C++11. * Made several improvements to the way Objective-C categories and protocols are handled: * Added option HTML_EXTRA_STYLESHEET which allows adding an additional stylesheet without completely replacing doxygen.css. * Added option AUTOLINK_SUPPORT which can be used to enable/disable autolinking globally. * Included language updates for Czech, Spanish, Greek, Slovak, and Esparanto. etc. see http://www.stack.nl/~dimitri/doxygen/changelog.htmlPetr Gajdos2012-08-20 09:05:02 +00:00
0b95c7b302
- updated to 1.8.1.2: changes * doxygen now strips the leading indentation shared by the lines in a @code..@endcode block. * id 678218: Changed title of the SVG graphs from 'G' to the root node of the graph. * Integrated the root navigation tree in navtree.js for faster loading * When the navigation tree is enabled, clicking jump to a line in the source code view will now highlight the line. features * Added button in the navigation tree to allow enabling/disabling syncing the navigation tree with the content. * Extended the number of HTML entities with Greek letters and other symbols (thanks to Charles Karney for the patch). * id 663645: Added support for C++11 strongly typed enums (enum class E { ... }). * VHDL code now has a new Design Overview page (thanks for Martin Kreis for the patch). Requires HAVE_DOT=YES, and DOT_IMAGE_FORMAT=svg. * id 677678: Added support for strong and weak attributes in Objective-C properties. * bugfixes - for details see http://www.stack.nl/~dimitri/doxygen/changelog.htmlPetr Gajdos2012-07-13 08:46:49 +00:00
9a1d4798c0
Accepting request 123485 from devel:tools
Stephan Kulow
2012-06-06 14:06:26 +00:00
59026d1737
- 1.8.1 generates man page names uncondidionally lowercase which causes problem for lapack build for example; reverting one hunk of fix for https://bugzilla.gnome.org/show_bug.cgi?id=674563 as workaround * no-lowercase-man-names.patch
Petr Gajdos2012-06-04 10:22:20 +00:00
e6667c10d8
Accepting request 122679 from devel:tools
Stephan Kulow
2012-05-31 15:03:13 +00:00
b790f8a888
- updated to 1.8.1: * Included a couple of performance improvements. * Changed the way indexes (Class,File,Namespace,Groups) are rendered. * Changed the way member attributes (like protected, virtual, and static) are rendered in the HTML output * more info at http://www.stack.nl/~dimitri/doxygen/changelog.htmlPetr Gajdos2012-05-21 07:15:31 +00:00