From fe2d316d6c5671fb43e3584ed2432a308fb0828cae60a05d65e03c7af7514d0c Mon Sep 17 00:00:00 2001 From: Petr Gajdos Date: Mon, 15 Aug 2011 09:38:04 +0000 Subject: [PATCH] - update to 1.7.5: * id 641904: Function in the call graphs are now shown based on first appearance rather then alphabetical order. * id 616213: When customizing the HTML header $title now only generates the title excluding the project name (which can still be added using $projectname) * Improved the look of the class index: all items now have equal spacing. * New option INTERACTIVE_SVG which when set to YES in combination with DOT_IMAGE_FORMAT=svg will make doxygen generate interactive SVG diagrams that support zooming and panning via the mouse (only for large graphs). * Added support for the Tcl programming language (thanks to Rene Zaumseil and Samuel Bentley for the patch). * Added @copyright command. * added option MATHJAX_EXTENSIONS to provide additional extensions for MathJax (thanks to David Munger for the patch). * added option INLINE_SIMPLE_STRUCTS which when enabled shows the fields of simple classes and structs (with only public data fields) as a table and inline in context (file/group/namespace/class) provided this context is documented. * When using the server based search engine (SEARCHENGINE=YES and SERVER_BASED_SEARCH=YES) doxygen now advertises a opensearch provider for your project, that allows integrating the search directly in the search field of the browser (thanks to Phil Lello for the patch). * id 503239: Added new option CITE_BIB_FILES and LATEX_BIB_STYLE and a new command \cite, allowing you to make references to literature (as defined in one or more .bib files). This also works for output formats other than LaTeX. The tool bibtex is required for this to work though. Thanks to David Munger for the initial patch upon which this feature is based. * PHP namespaces are now shown as A\B in the output. OBS-URL: https://build.opensuse.org/package/show/devel:tools/doxygen?expand=0&rev=32 --- doxygen-1.7.4-html.tar.bz2 | 3 --- doxygen-1.7.4.src.tar.bz2 | 3 --- doxygen-1.7.5-html.tar.bz2 | 3 +++ doxygen-1.7.5.src.tar.bz2 | 3 +++ doxygen.changes | 41 +++++++++++++++++++++++++++++++++++ doxygen.spec | 2 +- doxygen_manual-1.7.4.pdf.bz2 | 3 --- doxygen_manual-1.7.5.pdf.bz2 | 3 +++ doxywizard.changes | 42 ++++++++++++++++++++++++++++++++++++ doxywizard.spec | 2 +- 10 files changed, 94 insertions(+), 11 deletions(-) delete mode 100644 doxygen-1.7.4-html.tar.bz2 delete mode 100644 doxygen-1.7.4.src.tar.bz2 create mode 100644 doxygen-1.7.5-html.tar.bz2 create mode 100644 doxygen-1.7.5.src.tar.bz2 delete mode 100644 doxygen_manual-1.7.4.pdf.bz2 create mode 100644 doxygen_manual-1.7.5.pdf.bz2 diff --git a/doxygen-1.7.4-html.tar.bz2 b/doxygen-1.7.4-html.tar.bz2 deleted file mode 100644 index 781034a..0000000 --- a/doxygen-1.7.4-html.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f6061bea5ac646787b7259e5d90c830b58dbd06fd08e7c8e996831bc0e009588 -size 509051 diff --git a/doxygen-1.7.4.src.tar.bz2 b/doxygen-1.7.4.src.tar.bz2 deleted file mode 100644 index 791458a..0000000 --- a/doxygen-1.7.4.src.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0c66919f5a060d77d054e63f08560ed3c6fdf3ef84300407f8cc723dd3337111 -size 3855042 diff --git a/doxygen-1.7.5-html.tar.bz2 b/doxygen-1.7.5-html.tar.bz2 new file mode 100644 index 0000000..fcf00aa --- /dev/null +++ b/doxygen-1.7.5-html.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b214134343e6c9612198012603810924d3ba81a11ccda727c89a323066046866 +size 513402 diff --git a/doxygen-1.7.5.src.tar.bz2 b/doxygen-1.7.5.src.tar.bz2 new file mode 100644 index 0000000..a7199c4 --- /dev/null +++ b/doxygen-1.7.5.src.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2545fec758165bff26a1efcee53143dcdfe5e7008b7fca58224f059dbdf64d8a +size 3928820 diff --git a/doxygen.changes b/doxygen.changes index b342a0d..dede92f 100644 --- a/doxygen.changes +++ b/doxygen.changes @@ -1,3 +1,44 @@ +------------------------------------------------------------------- +Mon Aug 15 09:26:47 UTC 2011 - pgajdos@novell.com + +- update to 1.7.5: + * id 641904: Function in the call graphs are now shown based on first + appearance rather then alphabetical order. + * id 616213: When customizing the HTML header $title now only generates + the title excluding the project name (which can still be + added using $projectname) + * Improved the look of the class index: all items now have equal spacing. + * New option INTERACTIVE_SVG which when set to YES in combination with + DOT_IMAGE_FORMAT=svg will make doxygen generate interactive SVG + diagrams that support zooming and panning via the mouse (only for + large graphs). + * Added support for the Tcl programming language (thanks to Rene Zaumseil + and Samuel Bentley for the patch). + * Added @copyright command. + * added option MATHJAX_EXTENSIONS to provide additional extensions for + MathJax (thanks to David Munger for the patch). + * added option INLINE_SIMPLE_STRUCTS which when enabled shows the fields + of simple classes and structs (with only public data fields) as a table + and inline in context (file/group/namespace/class) + provided this context is documented. + * When using the server based search engine (SEARCHENGINE=YES and + SERVER_BASED_SEARCH=YES) doxygen now advertises a opensearch provider + for your project, that allows integrating the search directly in the + search field of the browser (thanks to Phil Lello for the patch). + * id 503239: Added new option CITE_BIB_FILES and LATEX_BIB_STYLE and a new + command \cite, allowing you to make references to literature (as defined + in one or more .bib files). This also works for output formats other + than LaTeX. The tool bibtex is required for this to work though. Thanks + to David Munger for the initial patch upon which this feature is based. + * PHP namespaces are now shown as A\B in the output. + * Added new \snippet command that can be used to include marked sections + from a source file. See http://www.doxygen.org/commands.html#cmdsnippet + for more info. + * Added translation support for Armenian, thank to Armen Tangamyan. and + included translation updates for a number of languages. + * Many bug fixes, for details see + http://www.stack.nl/~dimitri/doxygen/changelog.html. + ------------------------------------------------------------------- Tue Mar 29 09:15:10 UTC 2011 - pascal.bleser@opensuse.org diff --git a/doxygen.spec b/doxygen.spec index 555e270..3375ffc 100644 --- a/doxygen.spec +++ b/doxygen.spec @@ -20,7 +20,7 @@ Name: doxygen BuildRequires: bison flex gcc-c++ libpng-devel -Version: 1.7.4 +Version: 1.7.5 Release: 3 License: GPLv2+ Group: Development/Tools/Doc Generators diff --git a/doxygen_manual-1.7.4.pdf.bz2 b/doxygen_manual-1.7.4.pdf.bz2 deleted file mode 100644 index 9bf4048..0000000 --- a/doxygen_manual-1.7.4.pdf.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:28e94d46e38e339181b4acad97bad36642d3c90b0cc1cff40ea4e5ee46bc6346 -size 703855 diff --git a/doxygen_manual-1.7.5.pdf.bz2 b/doxygen_manual-1.7.5.pdf.bz2 new file mode 100644 index 0000000..ba18d43 --- /dev/null +++ b/doxygen_manual-1.7.5.pdf.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:923c43e739b3dcb7c957f9066ebd7d29a192ae750578aa9310524b4233eb22bf +size 715754 diff --git a/doxywizard.changes b/doxywizard.changes index 17af8f9..426d995 100644 --- a/doxywizard.changes +++ b/doxywizard.changes @@ -1,3 +1,45 @@ +------------------------------------------------------------------- +Mon Aug 15 09:37:23 UTC 2011 - pgajdos@novell.com + +- update to 1.7.5: + * id 641904: Function in the call graphs are now shown based on first + appearance rather then alphabetical order. + * id 616213: When customizing the HTML header $title now only generates + the title excluding the project name (which can still be + added using $projectname) + * Improved the look of the class index: all items now have equal spacing. + * New option INTERACTIVE_SVG which when set to YES in combination with + DOT_IMAGE_FORMAT=svg will make doxygen generate interactive SVG + diagrams that support zooming and panning via the mouse (only for + large graphs). + * Added support for the Tcl programming language (thanks to Rene Zaumseil + and Samuel Bentley for the patch). + * Added @copyright command. + * added option MATHJAX_EXTENSIONS to provide additional extensions for + MathJax (thanks to David Munger for the patch). + * added option INLINE_SIMPLE_STRUCTS which when enabled shows the fields + of simple classes and structs (with only public data fields) as a table + and inline in context (file/group/namespace/class) + provided this context is documented. + * When using the server based search engine (SEARCHENGINE=YES and + SERVER_BASED_SEARCH=YES) doxygen now advertises a opensearch provider + for your project, that allows integrating the search directly in the + search field of the browser (thanks to Phil Lello for the patch). + * id 503239: Added new option CITE_BIB_FILES and LATEX_BIB_STYLE and a new + command \cite, allowing you to make references to literature (as defined + in one or more .bib files). This also works for output formats other + than LaTeX. The tool bibtex is required for this to work though. Thanks + to David Munger for the initial patch upon which this feature is based. + * PHP namespaces are now shown as A\B in the output. + * Added new \snippet command that can be used to include marked sections + from a source file. See http://www.doxygen.org/commands.html#cmdsnippet + for more info. + * Added translation support for Armenian, thank to Armen Tangamyan. and + included translation updates for a number of languages. + * Many bug fixes, for details see + http://www.stack.nl/~dimitri/doxygen/changelog.html. + + ------------------------------------------------------------------- Wed Jul 27 11:23:00 CEST 2011 - dmueller@suse.de diff --git a/doxywizard.spec b/doxywizard.spec index 117e6db..efdcc3a 100644 --- a/doxywizard.spec +++ b/doxywizard.spec @@ -20,7 +20,7 @@ Name: doxywizard BuildRequires: bison flex gcc-c++ libjpeg-devel -Version: 1.7.4 +Version: 1.7.5 Release: 2 Requires: doxygen = %{version} License: GPLv2+