From: DongHun Kwak Date: Fri, 15 Oct 2021 01:54:45 +0000 (+0900) Subject: Imported Upstream version 1.8.15 X-Git-Tag: upstream/1.8.15^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5e552810bc3dfc820036b4b16ae53561bb7cf3c6;p=platform%2Fupstream%2Fdoxygen.git Imported Upstream version 1.8.15 --- diff --git a/.gitignore b/.gitignore index 21ebe47..fa8ffb5 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /doxygen_docs /doxygen.tag +/build* diff --git a/.travis.yml b/.travis.yml index acc325a..1130bec 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,18 +1,56 @@ language: cpp +os: + - linux-ppc64le + - linux +dist: xenial compiler: - gcc - clang +sudo: required -before_install: - - sudo apt-add-repository ppa:smspillaz/cmake-2.8.12 -y - - sudo apt-get update -qq +addons: + apt: + update: true + packages: + - texlive + - texlive-generic-recommended + - texlive-extra-utils + - texlive-latex-extra + - texlive-font-utils + - ghostscript + - libxml2-utils + - cmake + - cmake-data -install: - - sudo apt-get install -qq texlive - - sudo apt-get install -qq texlive-extra-utils - - sudo apt-get install -q -y texlive-latex-extra - - sudo apt-get install -qq libxml2-utils - - sudo apt-get install -qq cmake cmake-data +jobs: + include: + - os: osx + compiler: clang + +before_script: + - if [ "${TRAVIS_OS_NAME}" == "osx" ]; then + sudo mkdir -p /usr/local/man; + sudo chown -R "${USER}:admin" /usr/local/man; + pip install --quiet conan; + export HOMEBREW_NO_AUTO_UPDATE=1; + brew install ghostscript; + + travis_wait brew cask install mactex-no-gui; + curl -O -L http://mirrors.ctan.org/support/epstopdf.zip; + unzip epstopdf.zip; + mkdir -p /Users/travis/Library/TeX/texbin/; + mv epstopdf/epstopdf.pl /Users/travis/Library/TeX/texbin/epstopdf; + chmod a+x /Users/travis/Library/TeX/texbin/epstopdf; + rm -rf epstopdf*; + export PATH=/Users/travis/Library/TeX/texbin:/Library/TeX/texbin:$PATH; + + conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan; + printf "[requires]\n + libxml2/2.9.8@bincrafters/stable\n + qt/5.11.3@bincrafters/stable" >> conanfile.txt; + conan install . -g virtualrunenv; + source activate_run.sh; + fi; script: - mkdir build diff --git a/CMakeLists.txt b/CMakeLists.txt index ba105b8..45c2f2c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -36,7 +36,7 @@ if (use_sqlite3) set(sqlite3 "1" CACHE INTERNAL "used in settings.h") endif() -set(MACOS_VERSION_MIN 10.5) +set(MACOS_VERSION_MIN 10.9) if (use_libclang) set(clang "1" CACHE INTERNAL "used in settings.h") find_package(LLVM CONFIG REQUIRED) @@ -86,7 +86,10 @@ find_package(BISON REQUIRED) find_package(Threads) if (sqlite3) - find_package(SQLite3 REQUIRED) + find_package(SQLite3 REQUIRED) + if (SQLITE3_VERSION VERSION_LESS 3.9.0) + message(SEND_ERROR "Doxygen requires at least sqlite3 version 3.9.0 (installed: ${SQLITE3_VERSION})") + endif() endif() find_package(Iconv REQUIRED) diff --git a/README.md b/README.md index 49dcac9..3e1c608 100644 --- a/README.md +++ b/README.md @@ -1,25 +1,25 @@ Doxygen =============== -Doxygen is the de facto standard tool for generating documentation from -annotated C++ sources, but it also supports other popular programming -languages such as C, Objective-C, C#, PHP, Java, Python, IDL -(Corba, Microsoft, and UNO/OpenOffice flavors), Fortran, VHDL, Tcl, +Doxygen is the de facto standard tool for generating documentation from +annotated C++ sources, but it also supports other popular programming +languages such as C, Objective-C, C#, PHP, Java, Python, IDL +(Corba, Microsoft, and UNO/OpenOffice flavors), Fortran, VHDL, Tcl, and to some extent D. Doxygen can help you in three ways: -1. It can generate an on-line documentation browser (in HTML) and/or an - off-line reference manual (in LaTeX) from a set of documented source files. - There is also support for generating output in RTF (MS-Word), PostScript, - hyperlinked PDF, compressed HTML, DocBook and Unix man pages. - The documentation is extracted directly from the sources, which makes +1. It can generate an on-line documentation browser (in HTML) and/or an + off-line reference manual (in LaTeX) from a set of documented source files. + There is also support for generating output in RTF (MS-Word), PostScript, + hyperlinked PDF, compressed HTML, DocBook and Unix man pages. + The documentation is extracted directly from the sources, which makes it much easier to keep the documentation consistent with the source code. -2. You can configure doxygen to extract the code structure from undocumented - source files. This is very useful to quickly find your way in large - source distributions. Doxygen can also visualize the relations between - the various elements by means of include dependency graphs, inheritance +2. You can configure doxygen to extract the code structure from undocumented + source files. This is very useful to quickly find your way in large + source distributions. Doxygen can also visualize the relations between + the various elements by means of include dependency graphs, inheritance diagrams, and collaboration diagrams, which are all generated automatically. -3. You can also use doxygen for creating normal documentation (as I did for +3. You can also use doxygen for creating normal documentation (as I did for the doxygen user manual and doxygen web-site). Download @@ -29,25 +29,20 @@ The latest binaries and source of Doxygen can be downloaded from: Developers --------- -* Build Status: +* Linux & macOS Build Status: +* Windows Build Status: * Coverity Scan Build Status: Coverity Scan Build Status * Doxygen's Doxygen Documentation: -* Install - * Quick install see (./INSTALL) - * else http://www.doxygen.org/manual/install.html +* Install: Please read the installation section of the manual (http://www.doxygen.org/manual/install.html) * Project stats: https://www.openhub.net/p/doxygen Issues, bugs, requests, ideas ---------------------------------- -Use the bug tracker to report bugs: -* current list: - * [Bugzilla](https://bugzilla.gnome.org/buglist.cgi?product=doxygen&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED) -* Submit a new bug or feature request - * [Enter bug](https://bugzilla.gnome.org/enter_bug.cgi?product=doxygen) +Use the [issue](https://github.com/doxygen/doxygen/issues) tracker to report bugs. Comms ---------------------------------- @@ -63,10 +58,10 @@ There are three mailing lists: Source Code ---------------------------------- -In May 2013, Doxygen moved from +In May 2013, Doxygen moved from subversion to git hosted at GitHub * https://github.com/doxygen/doxygen Enjoy, -Dimitri van Heesch (dimitri at stack.nl) +Dimitri van Heesch (doxygen at gmail.com) diff --git a/VERSION b/VERSION index 8e8ed1b..c9a70d0 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.8.14 +1.8.15 diff --git a/addon/doxmlparser/src/dochandler.h b/addon/doxmlparser/src/dochandler.h index 4340dbd..59af4e3 100644 --- a/addon/doxmlparser/src/dochandler.h +++ b/addon/doxmlparser/src/dochandler.h @@ -571,7 +571,7 @@ class EMailHandler : public DocEMailImpl, public BaseHandler //----------------------------------------------------------------------------- -/* \brief Node representing a link to an URL +/* \brief Node representing a link to a URL * */ class ULinkHandler : public DocULinkImpl, public BaseHandler diff --git a/addon/doxyparse/README b/addon/doxyparse/README index 9f7429c..288b31e 100644 --- a/addon/doxyparse/README +++ b/addon/doxyparse/README @@ -5,16 +5,24 @@ This directory contains an "source parsing engine" based on doxyapp code. More info and source code repository: https://github.com/analizo/doxygen +## build dependencies + + apt-get install flex bison cmake build-essential python + ## build cmake -G "Unix Makefiles" -Dbuild_parse=ON make +## install + + sudo make install + AUTHORS ======= Antonio Terceiro João M. Miranda -Joenio Costa +Joenio Costa Paulo Meirelles Vinicius Daros diff --git a/addon/doxyparse/doxyparse.cpp b/addon/doxyparse/doxyparse.cpp index 6a1886c..584e8b0 100644 --- a/addon/doxyparse/doxyparse.cpp +++ b/addon/doxyparse/doxyparse.cpp @@ -138,7 +138,7 @@ static void printDefines() { modules[current_module] = true; } static void printDefinition(std::string type, std::string signature, int line) { - printf(" - %s:\n", signature.c_str()); + printf(" - \"%s\":\n", signature.c_str()); printf(" type: %s\n", type.c_str()); printf(" line: %d\n", line); } @@ -155,7 +155,7 @@ static void printUses() { printf(" uses:\n"); } static void printReferenceTo(std::string type, std::string signature, std::string defined_in) { - printf(" - %s:\n", signature.c_str()); + printf(" - \"%s\":\n", signature.c_str()); printf(" type: %s\n", type.c_str()); printf(" defined_in: %s\n", defined_in.c_str()); } @@ -167,6 +167,24 @@ static int isPartOfCStruct(MemberDef * md) { return is_c_code && md->getClassDef() != NULL; } +std::string removeDoubleQuotes(std::string data) { + // remove surrounding double quotes + if (data.front() == '"' && data.back() == '"') { + data.erase(0, 1); // first double quote + data.erase(data.size() - 1); // last double quote + } + return data; +} + +std::string argumentData(Argument *argument) { + std::string data = ""; + if (argument->type != NULL) + data = removeDoubleQuotes(argument->type.data()); + else if (argument->name != NULL) + data = removeDoubleQuotes(argument->name.data()); + return data; +} + std::string functionSignature(MemberDef* md) { std::string signature = md->name().data(); if(md->isFunction()){ @@ -175,9 +193,9 @@ std::string functionSignature(MemberDef* md) { signature += "("; Argument * argument = iterator.toFirst(); if(argument != NULL) { - signature += argument->type.data(); - for(++iterator; (argument = iterator.current()) ;++iterator){ - signature += std::string(",") + argument->type.data(); + signature += argumentData(argument); + for(++iterator; (argument = iterator.current()); ++iterator){ + signature += std::string(",") + argumentData(argument); } } signature += ")"; @@ -245,7 +263,7 @@ static void lookupSymbol(Definition *d) { std::string signature = functionSignature(md); printDefinition(type, signature, md->getDefLine()); if (md->protection() == Public) { - printProtection("protection public"); + printProtection("public"); } if (md->isFunction()) { functionInformation(md); @@ -311,7 +329,10 @@ static void detectProgrammingLanguage(FileNameListIterator& fnli) { checkLanguage(filename, ".cc") || checkLanguage(filename, ".cxx") || checkLanguage(filename, ".cpp") || - checkLanguage(filename, ".java") + checkLanguage(filename, ".java") || + checkLanguage(filename, ".py") || + checkLanguage(filename, ".pyw") || + checkLanguage(filename, ".cs") ) { is_c_code = false; } diff --git a/addon/doxypysql/search.py b/addon/doxypysql/search.py index c185138..5f820de 100755 --- a/addon/doxypysql/search.py +++ b/addon/doxypysql/search.py @@ -17,19 +17,19 @@ import json import re class MemberType: - Define="0" - Function="1" - Variable="2" - Typedef="3" - Enumeration="4" - EnumValue="5" - Signal="6" - Slot="7" - Friend="8" - DCOP="9" - Property="10" - Event="11" - File="12" + Define="macro definition" + Function="function" + Variable="variable" + Typedef="typedef" + Enumeration="enumeration" + EnumValue="enumvalue" + Signal="signal" + Slot="slot" + Friend="friend" + DCOP="dcop" + Property="property" + Event="event" + File="file" class RequestType: References="9901" @@ -69,27 +69,27 @@ class Finder: def match(self,row): if self.row_type is int: - return " id=?" + return " rowid=?" else: if g_use_regexp == True: return " REGEXP (?,%s)" %row else: return " %s=?" %row - def fileName(self,id_file): - if self.cn.execute("SELECT COUNT(*) FROM files WHERE rowid=?",[id_file]).fetchone()[0] > 1: - print >>sys.stderr,"WARNING: non-uniq fileid [%s]. Considering only the first match." % id_file + def fileName(self,file_id): + if self.cn.execute("SELECT COUNT(*) FROM path WHERE rowid=?",[file_id]).fetchone()[0] > 1: + sys.stderr.write("WARNING: non-uniq fileid [%s]. Considering only the first match." % file_id) - for r in self.cn.execute("SELECT * FROM files WHERE rowid=?",[id_file]).fetchall(): + for r in self.cn.execute("SELECT * FROM path WHERE rowid=?",[file_id]).fetchall(): return r['name'] return "" def fileId(self,name): - if self.cn.execute("SELECT COUNT(*) FROM files WHERE"+self.match("name"),[name]).fetchone()[0] > 1: - print >>sys.stderr,"WARNING: non-uniq file name [%s]. Considering only the first match." % name + if self.cn.execute("SELECT COUNT(*) FROM path WHERE"+self.match("name"),[name]).fetchone()[0] > 1: + sys.stderr.write("WARNING: non-uniq file name [%s]. Considering only the first match." % name) - for r in self.cn.execute("SELECT rowid FROM files WHERE"+self.match("name"),[name]).fetchall(): + for r in self.cn.execute("SELECT rowid FROM path WHERE"+self.match("name"),[name]).fetchall(): return r[0] return -1 @@ -97,23 +97,24 @@ class Finder: def references(self): o=[] cur = self.cn.cursor() - cur.execute("SELECT refid FROM memberdef WHERE"+self.match("name"),[self.name]) - refids = cur.fetchall() + cur.execute("SELECT rowid FROM memberdef WHERE"+self.match("name"),[self.name]) + rowids = cur.fetchall() - if len(refids) == 0: + if len(rowids) == 0: return o - refid = refids[0]['refid'] + rowid = rowids[0]['rowid'] cur = self.cn.cursor() - #TODO:SELECT rowid from refids where refid=refid - for info in cur.execute("SELECT * FROM xrefs WHERE refid_dst LIKE '%"+refid+"%'"): + #TODO:SELECT rowid from refid where refid=refid + for info in cur.execute("SELECT * FROM xrefs WHERE dst_rowid=?", [rowid]): item={} cur = self.cn.cursor() - for i2 in cur.execute("SELECT * FROM memberdef WHERE refid=?",[info['src']]): + for i2 in cur.execute("SELECT * FROM memberdef WHERE rowid=?",[info['src_rowid']]): item['name']=i2['name'] - item['src']=info['src'] - item['file']=self.fileName(info['id_file']) - item['line']=info['line'] + item['src']=info['src_rowid'] + # Below no longer directly supported on this entry; can be found from either memberdef + #item['file']=self.fileName(info['file_id']) + #item['line']=info['line'] o.append(item) return o @@ -126,7 +127,7 @@ class Finder: item['name'] = r['name'] item['definition'] = r['definition'] item['argsstring'] = r['argsstring'] - item['file'] = self.fileName(r['id_file']) + item['file'] = self.fileName(r['file_id']) item['line'] = r['line'] item['detaileddescription'] = r['detaileddescription'] o.append(item) @@ -134,7 +135,7 @@ class Finder: ############################################################################### def file(self): o=[] - for r in self.cn.execute("SELECT rowid,* FROM files WHERE"+self.match("name"),[self.name]).fetchall(): + for r in self.cn.execute("SELECT rowid,name FROM local_file WHERE"+self.match("name"),[self.name]).fetchall(): item={} item['name'] = r['name'] item['id'] = r['rowid'] @@ -151,7 +152,7 @@ class Finder: if r['argsstring']: item['argsstring'] = r['argsstring'] item['definition'] = r['initializer'] - item['file'] = self.fileName(r['id_file']) + item['file'] = self.fileName(r['file_id']) item['line'] = r['line'] o.append(item) return o @@ -163,7 +164,7 @@ class Finder: item={} item['name'] = r['name'] item['definition'] = r['definition'] - item['file'] = self.fileName(r['id_file']) + item['file'] = self.fileName(r['file_id']) item['line'] = r['line'] o.append(item) return o @@ -175,16 +176,16 @@ class Finder: item={} item['name'] = r['name'] item['definition'] = r['definition'] - item['file'] = self.fileName(r['id_file']) + item['file'] = self.fileName(r['file_id']) item['line'] = r['line'] o.append(item) return o ############################################################################### def params(self): o=[] - c=self.cn.execute('SELECT id FROM memberdef WHERE'+self.match("name"),[self.name]) + c=self.cn.execute('SELECT rowid FROM memberdef WHERE'+self.match("name"),[self.name]) for r in c.fetchall(): - #a=("SELECT * FROM params where id=(SELECT id_param FROM memberdef_params where id_memberdef=?",[id_memberdef]) + #a=("SELECT * FROM param where id=(SELECT param_id FROM memberdef_param where memberdef_id=?",[memberdef_id]) item={} item['id'] = r['id'] o.append(item) @@ -202,20 +203,20 @@ class Finder: def includers(self): o=[] fid = self.fileId(self.name) - c=self.cn.execute('SELECT * FROM includes WHERE id_dst=?',[fid]) + c=self.cn.execute('SELECT * FROM includes WHERE dst_id=?',[fid]) for r in c.fetchall(): item={} - item['name'] = self.fileName(r['id_src']) + item['name'] = self.fileName(r['src_id']) o.append(item) return o ############################################################################### def includees(self): o=[] fid = self.fileId(self.name) - c=self.cn.execute('SELECT * FROM includes WHERE id_src=?',[fid]) + c=self.cn.execute('SELECT * FROM includes WHERE src_id=?',[fid]) for r in c.fetchall(): item={} - item['name'] = self.fileName(r['id_dst']) + item['name'] = self.fileName(r['dst_id']) o.append(item) return o ############################################################################### @@ -227,7 +228,7 @@ class Finder: item['name'] = r['name'] item['definition'] = r['definition'] item['argsstring'] = r['argsstring'] - item['file'] = self.fileName(r['id_file']) + item['file'] = self.fileName(r['file_id']) item['line'] = r['line'] #item['documentation'] = r['documentation'] o.append(item) @@ -235,19 +236,19 @@ class Finder: ############################################################################### def baseClasses(self): o=[] - c=self.cn.execute('SELECT base FROM basecompoundref WHERE'+self.match("derived"),[self.name]) + c=self.cn.execute('SELECT compounddef.name FROM compounddef JOIN compoundref ON compounddef.rowid=compoundref.base_rowid WHERE compoundref.derived_rowid IN (SELECT rowid FROM compounddef WHERE'+self.match("name")+')',[self.name]) for r in c.fetchall(): item={} - item['name'] = r['base'] + item['name'] = r['name'] o.append(item) return o ############################################################################### def subClasses(self): o=[] - c=self.cn.execute('SELECT derived FROM basecompoundref WHERE'+self.match("base"),[self.name]) + c=self.cn.execute('SELECT compounddef.name FROM compounddef JOIN compoundref ON compounddef.rowid=compoundref.derived_rowid WHERE compoundref.base_rowid IN (SELECT rowid FROM compounddef WHERE'+self.match("name")+')',[self.name]) for r in c.fetchall(): item={} - item['name'] = r['derived'] + item['name'] = r['name'] o.append(item) return o ############################################################################### @@ -268,21 +269,23 @@ def process(f,kind): } return request_processors[kind]() ############################################################################### + +# the -H option isn't documented. It's one of the more recent additions, but it's treating refids as if they would be a string. I'm just taking a stab at updating it for now, converting to use rowid, and making other edits necessary to get it to run. def processHref(cn,ref): j={} # is it in memberdef ? table="memberdef" - if ( cn.execute("SELECT count(*) from %s WHERE refid=?"%table,[ref] ).fetchone()[0] > 0 ): - for r in cn.execute("SELECT kind,id FROM %s WHERE refid='%s'" % (table,ref) ).fetchall(): - f=Finder(cn,r['id'],int) + if ( cn.execute("SELECT count(*) from %s WHERE rowid=?"%table,[ref] ).fetchone()[0] > 0 ): + for r in cn.execute("SELECT kind,rowid FROM %s WHERE rowid=?" % table,[ref]).fetchall(): + f=Finder(cn,r['rowid'],int) j=process(f,str(r['kind'])) # is it in compounddef ? table="compounddef" - if ( cn.execute("SELECT count(*) from %s WHERE refid=?"%table,[ref]).fetchone()[0] > 0 ): - for r in cn.execute("SELECT id FROM %s WHERE refid=?"%table,[ref] ).fetchall(): - f=Finder(cn,r['id'],int) + if ( cn.execute("SELECT count(*) from %s WHERE rowid=?"%table,[ref]).fetchone()[0] > 0 ): + for r in cn.execute("SELECT rowid FROM %s WHERE rowid=?"%table,[ref] ).fetchall(): + f=Finder(cn,r[0],int) j=process(f,RequestType.Struct) return j @@ -290,7 +293,7 @@ def processHref(cn,ref): def serveCgi(): import cgi - print 'Content-Type: application/json\n' + print('Content-Type: application/json\n') fieldStorage = cgi.FieldStorage() form = dict((key, fieldStorage.getvalue(key)) for key in fieldStorage.keys()) @@ -298,17 +301,17 @@ def serveCgi(): if 'href' in form: ref = form['href'] else: - print '{"result": null, "error": "no refid given"}' + print('{"result": null, "error": "no refid given"}') sys.exit(0) cn=openDb('doxygen_sqlite3.db') j = processHref(cn,ref) - print json.dumps({"result":j,"error":None}) + print(json.dumps({"result":j,"error":None})) ############################################################################### def usage(): - print >>sys.stderr,"""Usage: search.py [Options] + sys.stderr.write("""Usage: search.py [Options] Options: -h, --help -d Use database for queries. @@ -323,7 +326,7 @@ Options: -M Get all members of class . -S Get the sub classes of class . -R Consider the search to be a regex. -""" +""") ############################################################################### def serveCli(argv): try: @@ -362,6 +365,8 @@ def serveCli(argv): elif a in ('-f'): kind=MemberType.Function elif a in ('-F'): + # undocumented + # seems to fit with the lower case "search" patterns? kind=MemberType.File elif a in ('-m'): kind=MemberType.Define @@ -370,6 +375,7 @@ def serveCli(argv): elif a in ('-v'): kind=MemberType.Variable elif a in ('-H'): + # undocumented ref = o cn=openDb(dbname) @@ -378,7 +384,7 @@ def serveCli(argv): j=processHref(cn,ref) else: j=process(f,kind) - print json.dumps(j,indent=4) + print(json.dumps(j,indent=4)) def main(argv): diff --git a/addon/doxywizard/CMakeLists.txt b/addon/doxywizard/CMakeLists.txt index 0907d23..a89864d 100644 --- a/addon/doxywizard/CMakeLists.txt +++ b/addon/doxywizard/CMakeLists.txt @@ -4,9 +4,6 @@ if (NOT force_qt4) if (Qt5Core_FOUND) message(STATUS "Using Qt5") find_package(Qt5 COMPONENTS Widgets Gui Xml) - macro(qt_use_modules) - qt5_use_modules(${ARGN}) - endmacro() macro(qt_wrap_cpp) qt5_wrap_cpp(${ARGN}) endmacro() @@ -23,8 +20,6 @@ if (NOT Qt5Core_FOUND) message(STATUS "Using Qt4") endif() find_package(Qt4 REQUIRED COMPONENTS QtCore QtXml QtGui) - macro(qt_use_modules) - endmacro() macro(qt_wrap_cpp) qt4_wrap_cpp(${ARGN}) endmacro() @@ -103,10 +98,13 @@ ${GENERATED_SRC_WIZARD}/config_doxyw.cpp ${GENERATED_SRC_WIZARD}/configdoc.cpp ${doxywizard_MOC} ${doxywizard_RESOURCES_RCC} +doxywizard.rc ) -qt_use_modules(doxywizard Core Gui Widgets Xml) -target_link_libraries(doxywizard -${QT_LIBRARIES} ${QT_QTMAIN_LIBRARY} -) + +if(Qt5Core_FOUND) + target_link_libraries(doxywizard Qt5::Core Qt5::Gui Qt5::Widgets Qt5::Xml) +else() + target_link_libraries(doxywizard ${QT_LIBRARIES} ${QT_QTMAIN_LIBRARY}) +endif() install(TARGETS doxywizard DESTINATION bin) diff --git a/addon/doxywizard/config_doxyw.l b/addon/doxywizard/config_doxyw.l index 7874a19..960b7cb 100644 --- a/addon/doxywizard/config_doxyw.l +++ b/addon/doxywizard/config_doxyw.l @@ -540,22 +540,34 @@ void writeStringValue(QTextStream &t,QTextCodec *codec,const QString &s) { QChar c; bool needsEscaping=false; + bool needsHashEscaping=false; // convert the string back to it original encoding //QByteArray se = codec->fromUnicode(s); t.setCodec(codec); const QChar *p=s.data(); if (!s.isEmpty() && !p->isNull()) { - while (!(c=*p++).isNull() && !needsEscaping) + if (*p != QChar::fromLatin1('"')) { - needsEscaping = (c==QChar::fromLatin1(' ') || - c==QChar::fromLatin1('\n') || - c==QChar::fromLatin1('\t') || - c==QChar::fromLatin1('"')); + while (!(c=*p++).isNull() && !needsEscaping) + { + needsEscaping = (c==QChar::fromLatin1(' ') || + c==QChar::fromLatin1('\n') || + c==QChar::fromLatin1('\t') || + c==QChar::fromLatin1('"')); + } + p=s.data(); + while (!(c=*p++).isNull() && !needsHashEscaping) + { + needsHashEscaping = (c==QChar::fromLatin1('#')); + } } - if (needsEscaping) + if (needsHashEscaping || needsEscaping) { t << "\""; + } + if (needsEscaping) + { p=s.data(); while (!p->isNull()) { @@ -564,12 +576,15 @@ void writeStringValue(QTextStream &t,QTextCodec *codec,const QString &s) if (*p ==QChar::fromLatin1('"')) t << "\\"; // escape quotes t << *p++; } - t << "\""; } else { t << s; } + if (needsHashEscaping || needsEscaping) + { + t << "\""; + } } } diff --git a/addon/doxywizard/doxywizard.cpp b/addon/doxywizard/doxywizard.cpp index 492912b..56378ed 100755 --- a/addon/doxywizard/doxywizard.cpp +++ b/addon/doxywizard/doxywizard.cpp @@ -208,7 +208,7 @@ void MainWindow::updateWorkingDir() void MainWindow::manual() { - QDesktopServices::openUrl(QUrl(QString::fromLatin1("http://www.doxygen.org/manual.html"))); + QDesktopServices::openUrl(QUrl(QString::fromLatin1("http://www.doxygen.org/manual/index.html"))); } void MainWindow::about() @@ -267,7 +267,7 @@ void MainWindow::saveConfig(const QString &fileName) { if (fileName.isEmpty()) return; QFile f(fileName); - if (!f.open(QIODevice::WriteOnly)) + if (!f.open(QIODevice::WriteOnly | QIODevice::Text )) { QMessageBox::warning(this, tr("Error saving"), diff --git a/addon/doxywizard/expert.cpp b/addon/doxywizard/expert.cpp index 66a0955..44dea78 100644 --- a/addon/doxywizard/expert.cpp +++ b/addon/doxywizard/expert.cpp @@ -765,9 +765,10 @@ void Expert::saveTopic(QTextStream &t,QDomElement &elem,QTextCodec *codec, t << convertToComment(option->templateDocs()); t << endl; } - t << name.leftJustified(MAX_OPTION_LENGTH) << "= "; - if (option) + t << name.leftJustified(MAX_OPTION_LENGTH) << "="; + if (option && !option->isEmpty()) { + t << " "; option->writeValue(t,codec); } t << endl; diff --git a/addon/doxywizard/images/tunecolor.png b/addon/doxywizard/images/tunecolor.png index 4c7dd9d..9e595e4 100755 Binary files a/addon/doxywizard/images/tunecolor.png and b/addon/doxywizard/images/tunecolor.png differ diff --git a/addon/doxywizard/input.h b/addon/doxywizard/input.h index 9e0a1bf..5d86cc8 100644 --- a/addon/doxywizard/input.h +++ b/addon/doxywizard/input.h @@ -30,6 +30,7 @@ class Input virtual void reset() = 0; virtual void writeValue(QTextStream &t,QTextCodec *codec) = 0; virtual void setTemplateDocs(const QString &docs) = 0; + virtual bool isEmpty() { return false; }; }; diff --git a/addon/doxywizard/inputstring.h b/addon/doxywizard/inputstring.h index dba31f6..6234256 100644 --- a/addon/doxywizard/inputstring.h +++ b/addon/doxywizard/inputstring.h @@ -60,6 +60,7 @@ class InputString : public QObject, public Input void updateDependencies() {} void writeValue(QTextStream &t,QTextCodec *codec); void setTemplateDocs(const QString &docs) { m_tdocs = docs; } + bool isEmpty() { return m_str.isEmpty(); } public slots: void reset(); diff --git a/addon/doxywizard/inputstrlist.cpp b/addon/doxywizard/inputstrlist.cpp index 660ce40..822bc4c 100644 --- a/addon/doxywizard/inputstrlist.cpp +++ b/addon/doxywizard/inputstrlist.cpp @@ -260,3 +260,11 @@ void InputStrList::writeValue(QTextStream &t,QTextCodec *codec) } } +bool InputStrList::isEmpty() +{ + foreach (QString s, m_strList) + { + if (!s.isEmpty()) return false; + } + return true; +} diff --git a/addon/doxywizard/inputstrlist.h b/addon/doxywizard/inputstrlist.h index 53f3bcc..c374092 100644 --- a/addon/doxywizard/inputstrlist.h +++ b/addon/doxywizard/inputstrlist.h @@ -55,6 +55,7 @@ class InputStrList : public QObject, public Input void updateDependencies() {} void writeValue(QTextStream &t,QTextCodec *codec); void setTemplateDocs(const QString &docs) { m_tdocs = docs; } + bool isEmpty(); public slots: void reset(); diff --git a/addon/doxywizard/wizard.cpp b/addon/doxywizard/wizard.cpp index b320aaa..ae8fa61 100644 --- a/addon/doxywizard/wizard.cpp +++ b/addon/doxywizard/wizard.cpp @@ -1210,18 +1210,23 @@ void Step4::setCallerGraphEnabled(int state) void Step4::init() { + int id = 0; if (getBoolOption(m_modelData,STR_HAVE_DOT)) { m_diagramModeGroup->button(2)->setChecked(true); // Dot + id = 2; } else if (getBoolOption(m_modelData,STR_CLASS_DIAGRAMS)) { m_diagramModeGroup->button(1)->setChecked(true); // Builtin diagrams + id = 1; } else { m_diagramModeGroup->button(0)->setChecked(true); // no diagrams + id = 0; } + m_dotGroup->setEnabled(id==2); m_dotClass->setChecked(getBoolOption(m_modelData,STR_CLASS_GRAPH)); m_dotCollaboration->setChecked(getBoolOption(m_modelData,STR_COLLABORATION_GRAPH)); m_dotInheritance->setChecked(getBoolOption(m_modelData,STR_GRAPHICAL_HIERARCHY)); diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..61cb2e8 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,59 @@ +image: Visual Studio 2017 + +configuration: + - Release + - Debug + +platform: + - x64 + - Win32 + +environment: + # VS VERSION IN CMAKE STYLE + matrix: + - VSVERSION: "15 2017" + - VSVERSION: "14 2015" + +init: + - cmake --version + - perl --version + - msbuild /version + +install: + - ps: Invoke-WebRequest http://doxygen.nl/testing/miktex.zip -OutFile miktex.zip + - 7z x miktex.zip -oC:\deps\miktex +# Disabled MikTeX installed due to unreliable download +# - ps: Invoke-WebRequest https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs924/gs924w32.exe -OutFile gswin32c.exe +# - gswin32c /S /D=C:\deps\ghostscript +# - ps: if($env:platform -eq "x64") { Invoke-WebRequest https://miktex.org/download/win/miktexsetup-x64.zip -OutFile miktexsetup.zip } +# - ps: if($env:platform -eq "Win32") { Invoke-WebRequest https://miktex.org/download/win/miktexsetup-x86.zip -OutFile miktexsetup.zip } +# - 7z x miktexsetup.zip -oC:\tmpmiktex +# - C:\tmpmiktex\miktexsetup --local-package-repository=C:\temp\miktex --package-set=basic download +# - C:\tmpmiktex\miktexsetup --verbose --local-package-repository=C:\temp\miktex --package-set=basic install + - refreshenv + - pip install conan + - ps: | + "[requires] + libxml2/2.9.8@bincrafters/stable + winflexbison/2.5.16@bincrafters/stable" | Out-File -Encoding ASCII -FilePath conanfile.txt + - conan install . -g virtualrunenv --build missing + - activate_run.bat + - set "PATH=%PATH%;C:\deps\ghostscript\bin;C:\deps\miktex\miktex\bin" + +before_build: + - if "%platform%"=="Win32" ( set "CMAKE_GENERATOR_NAME=Visual Studio %VSVERSION%" ) + - if "%platform%"=="x64" ( set "CMAKE_GENERATOR_NAME=Visual Studio %VSVERSION% Win64") + - mkdir build + - cd build + - cmake -G "%CMAKE_GENERATOR_NAME%" .. + +build: + project: "build\\PACKAGE.vcxproj" + parallel: false + +test_script: + - msbuild "testing\tests.vcxproj" /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" +# Disabled building document due to unreliable MikTeX installation +# - cmake -G "%CMAKE_GENERATOR_NAME%" -D build_doc=ON .. + - cmake -G "%CMAKE_GENERATOR_NAME%" .. +# - msbuild "doc\docs.vcxproj" /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" diff --git a/cmake/FindSQLite3.cmake b/cmake/FindSQLite3.cmake index 77b8eb4..45cc212 100644 --- a/cmake/FindSQLite3.cmake +++ b/cmake/FindSQLite3.cmake @@ -71,8 +71,16 @@ else (SQLITE3_LIBRARIES AND SQLITE3_INCLUDE_DIRS) endif (SQLITE3_INCLUDE_DIRS AND SQLITE3_LIBRARIES) if (SQLITE3_FOUND) + + # Extract version from header file + find_file(SQLITE3_HEADER "sqlite3.h" HINTS ${SQLITE3_INCLUDE_DIRS}) + if(SQLITE3_HEADER) + file(STRINGS "${SQLITE3_HEADER}" _DEF_TMP REGEX "^#define SQLITE_VERSION +\\\"[^\\\"]+\\\"") + string (REGEX REPLACE ".*\\\"(([0-9]+[.]?)+).*" "\\1" SQLITE3_VERSION "${_DEF_TMP}") + endif (SQLITE3_HEADER) + if (NOT Sqlite3_FIND_QUIETLY) - message(STATUS "Found Sqlite3: ${SQLITE3_LIBRARIES}") + message(STATUS "Found Sqlite3: ${SQLITE3_LIBRARIES} (found version \"${SQLITE3_VERSION}\")") endif (NOT Sqlite3_FIND_QUIETLY) else (SQLITE3_FOUND) if (Sqlite3_FIND_REQUIRED) diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index b95afd8..7beb485 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -27,6 +27,17 @@ else() # doxygen project variables are unknown so look for doxygen in PATH find_package(Doxygen) endif() +# +# set output directory for some extra HTML files +# +file(STRINGS Doxyfile DOXY_HTML_OUTPUT REGEX "HTML_OUTPUT.*") +string(LENGTH "${DOXY_HTML_OUTPUT}" DOXY_HTML_OUTPUT_LEN) +if (${DOXY_HTML_OUTPUT_LEN}) + string(REGEX REPLACE ".*HTML_OUTPUT *= *\([^ ]*\)" "\\1" DOXY_HTML_OUTPUT ${DOXY_HTML_OUTPUT}) +else() + set(DOXY_HTML_OUTPUT "html") +endif() +set(PROJECT_BINARY_HTML_DIR ${PROJECT_BINARY_DIR}/${DOXY_HTML_OUTPUT}/) set(DOC_INSTALL_DIR "share/doc/packages/doxygen" CACHE STRING "Relative path where to install the documentation") set(DOC_FILES @@ -80,9 +91,11 @@ set(DOC_FILES starting.doc trouble.doc xmlcmds.doc + emojisup.doc language.tpl maintainers.txt translator.py + smile.png ) file(GLOB LANG_FILES "${TOP}/src/translator_??.h") @@ -113,7 +126,7 @@ configure_file(${CMAKE_SOURCE_DIR}/doc/doxyindexer.1 ${PROJECT_BINARY_DIR}/ # doc/language.doc (see tag Doxyfile:INPUT) add_custom_command( - COMMAND ${PYTHON_EXECUTABLE} translator.py + COMMAND ${PYTHON_EXECUTABLE} translator.py ${CMAKE_SOURCE_DIR} DEPENDS ${PROJECT_BINARY_DIR}/doc/maintainers.txt ${PROJECT_BINARY_DIR}/doc/language.tpl ${PROJECT_BINARY_DIR}/doc/translator.py OUTPUT language.doc WORKING_DIRECTORY ${PROJECT_BINARY_DIR}/doc @@ -131,7 +144,7 @@ set_source_files_properties(config.doc PROPERTIES GENERATED 1) ################################################################################ add_custom_target(run_doxygen COMMENT "Generating Latex and HTML documentation." - COMMAND ${DOXYGEN_EXECUTABLE} + COMMAND ${CMAKE_COMMAND} -E env VERSION=${VERSION} ${DOXYGEN_EXECUTABLE} DEPENDS ${PROJECT_BINARY_DIR}/doc/language.doc ${PROJECT_BINARY_DIR}/doc/config.doc DEPENDS ${OUT_DOC_FILES} DEPENDS examples @@ -152,8 +165,8 @@ add_custom_target(doxygen_pdf WORKING_DIRECTORY ${PROJECT_BINARY_DIR}/latex ) add_custom_target(docs - COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_SOURCE_DIR}/doc/doxygen_logo.gif ${PROJECT_BINARY_DIR}/html/ - COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_SOURCE_DIR}/doc/doxygen_logo_low.gif ${PROJECT_BINARY_DIR}/html/ + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_SOURCE_DIR}/doc/doxygen_logo.gif ${PROJECT_BINARY_HTML_DIR} + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_SOURCE_DIR}/doc/doxygen_logo_low.gif ${PROJECT_BINARY_HTML_DIR} DEPENDS ${PROJECT_BINARY_DIR}/man/doxygen.1 ${PROJECT_BINARY_DIR}/man/doxywizard.1 ${PROJECT_BINARY_DIR}/man/doxysearch.1 diff --git a/doc/Doxyfile b/doc/Doxyfile index ceb6385..4c0a19d 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -38,7 +38,7 @@ INPUT = index.doc install.doc starting.doc docblocks.doc markdown.do autolink.doc output.doc searching.doc extsearch.doc customize.doc custcmd.doc \ external.doc faq.doc trouble.doc features.doc \ doxygen_usage.doc doxywizard_usage.doc \ - config.doc commands.doc htmlcmds.doc xmlcmds.doc language.doc \ + config.doc commands.doc htmlcmds.doc xmlcmds.doc emojisup.doc language.doc \ perlmod.doc perlmod_tree.doc arch.doc changelog.doc FILE_PATTERNS = *.cpp *.h *.doc EXAMPLE_PATH = ../examples @@ -55,3 +55,4 @@ ALIASES = LaTeX="\f$\mbox{\LaTeX}\f$" ALIASES += TeX="\f$\mbox{\TeX}\f$" LATEX_BATCHMODE = YES LATEX_EXTRA_STYLESHEET = manual.sty +LATEX_EMOJI_DIRECTORY = ../doc diff --git a/doc/arch.doc b/doc/arch.doc index e5fbbdc..bd51a1b 100644 --- a/doc/arch.doc +++ b/doc/arch.doc @@ -41,14 +41,14 @@ available through the global functions \c Config_getXXX(), where \c XXX is the type of the option. The argument of these function is a string naming the option as it appears in the configuration file. For instance: \c Config_getBool("GENERATE_TESTLIST") returns a reference to a boolean -value that is \c TRUE if the test list was enabled in the config file. +value that is \c TRUE if the test list was enabled in the configuration file. The function \c readConfiguration() in \c src/doxygen.cpp reads the command line options and then calls the configuration parser.

C Preprocessor

-The input files mentioned in the config file are (by default) fed to the +The input files mentioned in the configuration file are (by default) fed to the C Preprocessor (after being piped through a user defined filter if available). The way the preprocessor works differs somewhat from a standard C Preprocessor. @@ -139,8 +139,8 @@ strings and executes the commands it finds in it (this is the second pass in parsing the documentation). It writes the result directly to the output generators. -The parser is written in C++ and can be found in src/docparser.cpp. The -tokens that are eaten by the parser come from src/doctokenizer.l. +The parser is written in C++ and can be found in \c src/docparser.cpp. The +tokens that are eaten by the parser come from \c src/doctokenizer.l. Code fragments found in the comment blocks are passed on to the source parser. The main entry point for the documentation parser is \c validatingParseDoc() @@ -190,12 +190,12 @@ could extract information from the XML output. Possible tools could be: Since doxygen uses a lot of \c flex code it is important to understand how \c flex works (for this one should read the \c man page) and to understand what it is doing when \c flex is parsing some input. -Fortunately, when flex is used with the `-d` option it outputs what rules +Fortunately, when \c flex is used with the `-d` option it outputs what rules matched. This makes it quite easy to follow what is going on for a particular input fragment. -To make it easier to toggle debug information for a given flex file I -wrote the following perl script, which automatically adds or removes `-d` +To make it easier to toggle debug information for a given \c flex file I +wrote the following \c perl script, which automatically adds or removes `-d` from the correct line in the \c Makefile: \verbatim @@ -240,11 +240,30 @@ $now = time; utime $now, $now, $file; \endverbatim Another way to get rules matching / debugging information -from the \c flex code is setting LEX_FLAGS with \c make (`make LEX_FLAGS=-d`). +from the \c flex code is setting \c LEX_FLAGS with \c make (`make LEX_FLAGS=-d`). Note that by running doxygen with `-d lex` you get information about which `flex codefile` is used. +

Testing

+ +Doxygen has a small set of tests available to test, some, code integrity. +The tests can be run by means of the command `make tests`. When only one or a +few tests are required one can set the variable \c TEST_FLAGS when running the +test e.g. `make TEST_FLAGS="--id 5" tests` or for multiple tests +`make TEST_FLAGS="--id 5 --id 7" tests`. For a full set of possibilities give the +command `make TEST_FLAGS="--help" tests`. It is also possible to specify the +`TEST_FLAGS` as an environment variable (works also for testing through Visual +Studio projects), e.g. `setenv TEST_FLAGS "--id 5 --id 7"` and `make tests`. + +

Doxyfile differences

+ +In case one has to communicate through e.g. a forum the configuration settings that +are different from the standard doxygen configuration file settings one can run the +doxygen command: with the `-x` option and the name of the configuration file (default +is `Doxyfile`). The output will be a list of the not default settings (in `Doxyfile` +format). + \htmlonly Return to the index. \endhtmlonly diff --git a/doc/autolink.doc b/doc/autolink.doc index 98556c5..bf9fe57 100644 --- a/doc/autolink.doc +++ b/doc/autolink.doc @@ -16,7 +16,7 @@ */ /*! \page autolink Automatic link generation - \tableofcontents + \tableofcontents{html,latex} Most documentation systems have special `see also' sections where links to other pieces of documentation can be inserted. @@ -80,7 +80,7 @@ are required to identify the target, i.e. 'func(int) const' and 'func(int)' target different member functions. \par Note 3: - For JavaDoc compatibility a \# may be used instead of a :: in + For Javadoc compatibility a \# may be used instead of a :: in the patterns above. \par Note 4: In the documentation of a class containing a member foo, diff --git a/doc/changelog.doc b/doc/changelog.doc index 3efb31e..a06d09f 100644 --- a/doc/changelog.doc +++ b/doc/changelog.doc @@ -1,130 +1,531 @@ /** \page changelog Changelog -\tableofcontents +\tableofcontents{html,latex} \section log_1_8 1.8 Series +\subsection log_1_8_15 Release 1.8.15 +\htmlonly +(release date 27-12-2018) + +

+
    +
  • Bug 851 - A function cannot be documented as related to two classes. [view] +
  • Bug 1041 - <a href> doesn't allow <img> as visible part? [view] +
  • Bug 1601 - Missing warning of undocumented member in member group [view] +
  • Bug 2274 - Tooltips are not shown in dot-generated graphs [view] and [view] +, [view] +
  • Bug 2354 - caller graph can be improved by having caller on left & callee on right [view] +
  • Bug 2478 - Handling of unnamed parameters (C/C++) unclear [view] +
  • Bug 2655 - cond/endcond cannot be used in aliases [view] +
  • Bug 2859 - Unnamed parameters parsed incorrectly [view] +
  • Bug 3206 - Fortran: Does not recognize backslash at end of documentation line [view] +
  • Bug 3361 - Merging of consecutive repeated commands creates poorly-structured HTML [view] +
  • Bug 3677 - <![CDATA[ is not handled inside C# comments [view] +
  • Bug 3691 - C# keywords 'get' and 'set' are highlighted as reserved words in C++ documentation source browser. [view] +
  • Bug 3892 - @var in php is not documented [view] +
  • Bug 3958 - \cond after @string literal containing backslash fails in C# [view] +
  • Bug 4013 - Automatic links don't work correctly with operator< and operator<= [view] +
  • Bug 4064 - Support for C# nullable type [view] +
  • Bug 4244 - Fortran: tagfile.tag:789: warning: Unknown compound attribute `type' found! [view] +
  • Bug 4316 - Can't use pound sign in alias command, escaped or unescaped [view] +
  • Bug 4458 - @todo in @param leads to strange confusing message [view] +
  • Bug 4529 - HTML tags <u> and </u> not supported [view] +, [view] +
  • Bug 4725 - single quote in HTML section of PHP breaks doxygen [view] +
  • Bug 4771 - Not warning of undocumented function parameters [view] +
  • Bug 4878 - Value from enumeration followed with semicolon is not present in java docs [view] +
  • Bug 4954 - JavaDoc @linkplain is not recognized [view] +
  • Bug 5032 - Line numbers for examples [view] +
  • Bug 5068 - The 'Examples:' section; bad/missing style and incorrect spelling [view] +
  • Bug 5213 - Generated Doxyfile differs from result of doxygen -u [view] +, [view] +
  • Bug 5327 - <img> on a \page does not copy the image to the html output folder [view] +
  • Bug 5366 - Error with inserting images to PDF with Markdown [view] +
  • Bug 5442 - Misparsed comments leading to missing call graph [view] +
  • Bug 5539 - Error message when using memberof in a C macro [view] +
  • Bug 5547 - "remove" is treated as a keyword (green) in the source browser for C++ [view] +
  • Bug 5677 - Negative sign in -Foo::Bar ruins hyperlink in generated output [view] +
  • Bug 5725 - Field with name "internal" confuses documentation builder. [view] +
  • Bug 5765 - \todo at end of C# XML comment breaks following todo's [view] +
  • Bug 5783 - Navigation incorrect with escaped symbols [view] +
  • Bug 5784 - Doxygen not creating call graphs for C# methods if namespace contains the classname [view] +
  • Bug 5818 - Main page absent in TOC of CHM, if PROJECT_NAME is empty [view] +
  • Bug 5853 - Can't suppress @author, @date and @copyright information in the detailed file description [view] +
  • Bug 5901 - Macros (@test, @todo, etc) used with PHP namespaces causes illegal command warning [view] +
  • Bug 5929 - \internal stops all parsing if used inside a section [view] +
  • Bug 6025 - Make maxLineLen of latex output configurable [view] +
  • Bug 6041 - PHP: New array syntax not supported when parsing initial value [view] +
  • Bug 6104 - EXTERNAL_GROUPS lose hierarchy [view] +
  • Bug 6118 - Title in rtf file is incorrect when overridden by user in extension file [view] +
  • Bug 6153 - Build of PDF with LaTEX breaks [view] +
  • Bug 6160 - Python List as Default Parameter not parsed correctly [view] +
  • Bug 6172 - CREATE_SUBDIRS breaks SERVER_BASED_SEARCH [view] +
  • Bug 6175 - plantuml:an unwanted newline is generated after @startuml [view] +
  • Bug 6197 - Czech/Slovak language documentation with tables from LaTeX to PDF is not possible [view] +
  • Bug 6208 - Annotated function parameter generates <dt> warning in todo list [view] +
  • Bug 6213 - rtf generation [view] +
  • Bug 6214 - LaTeX output for \tparam block fails to compile when it contains a \code block [view] +, [view] +
  • Bug 6224 - .tex file is wrong when generating a function whose name includes an underline [view] +
  • Bug 6269 - Disabled controls when `HAVE_DOT` is already set to `YES` [view] +
  • Bug 6270 - Bad handling of Python class members when a class declaration line contains a comment [view] +
  • Bug 6295 - doxygen has problem with operator&=() [view] +
  • Bug 6305 - XHTML pages are broken several ways [view] and [view] +
  • Bug 6308 - When generating xhtml, async attribute on script tags need a value [view] +
  • Bug 6310 - Table markdown produces invalid xhtml code [view] +
  • Bug 6311 - Blank rows on class page when using external tag file [view] +
  • Bug 6312 - markdown plantuml use of graphviz fail if plantuml work i code file [view] +
  • Bug 6316 - unescaped double quote in searchdata.js breaks search box functionality [view] +
  • Bug 6322 - incorrect parsing of markdown table [view] +
  • Bug 6323 - error: Could not open file .../doc/html/functions_ .html for writing [view] +
  • Bug 6324 - C#: Incorrect parsing of property definitions containing "//" symbols in one line with "} [view] +
  • Bug 6325 - Segmentation fault when generating graphical class hierarchy [view] +
  • Bug 6339 - Examples of TCL files fail to display [view] +
  • Bug 6340 - Missed warning opportunity: duplicated arguments [view] +
  • Bug 6345 - c# see langword broken [view] +
  • Bug 6346 - Doxygen crash when using \code{.markdown}...\endcode in VHDL source [view] +
  • Bug 6350 - Broken extension test in FileDef::generateSourceFile() [view] +
  • Bug 6352 - "unexpected token TK_EOF as the argument of ref" when target starts with a digit [view] +
  • Bug 6362 - Adjacent xrefitems always added to first list present on page [view] +
  • Bug 6363 - Backslashes in default values confuse the parser (and cause params to be ignored) [view] +
  • Bug 6368 - LaTeX: Class scrbook Error: undefined old font command `\tt' [view] +
  • Bug 6370 - Invalid 3-byte UTF8 found in input of graph [view] +
  • Bug 6373 - Collapsed treeview arrow displays as emoji in Microsoft Edge [view] +
  • Bug 6378 - @cond does not stop at @endcond Fortran [view] +
  • Bug 6517 - Emoji support [view] +, [view] +
  • Bug 6524 - Markdown formats missing in doxygen outputs. [view] +
  • Bug 6533 - PHP: Namespaced typehints in deprecated methods not handled correctly [view] +
  • Bug 6547 - Call graph missing due to ALIASES [view] +, [view] +
  • Bug 6566 - INHERIT_DOCS not working for python [view] +
  • Bug 6580 - xrefitems not listed if the page is referenced multiple times [view] +
  • Bug 6589 - anchor after test command in a namespace produces duplicate tests [view] +
  • Bug 6594 - using ingroup and anchor causes tests to disappear [view] +
  • Bug 6597 - SIGSEGV presumably caused by C++ "using" declaration [view] +
  • Bug 6601 - tparam HTML gobbles up lines after the tparam comment [view] +
  • Bug 6612 - Issue with handling of emoji [view] +
  • Bug 6632 - References to Objective C protocols by name broken in 1.8.12 [view] +
  • Bug 6657 - "QGDict::hashAsciiKey: Invalid null key" when using anonymous union/struct [view] +
  • Bug 6690 - Regression in handling of shorthand signed/unsigned types in function parameters (with bisect and test case) [view] +
  • Bug 6691 - Multiple issues with emoji matching [view] +
  • Bug 6692 - XML TOC generation is not backwards-compatible with 1.8.14 [view] +
  • 'self' keyword in PHP documentation [view] +
  • Added: support RTL for DocXRefItem in html - Removed: support RTL form Return section in html, for consistency with parameter sections [view] +
  • Fixed: list item bullets overlap floating elements in html - Fixed: fragment lines overlap floating elements in html [view] +
  • Fixed: text-align of rtl toc [view] +
  • Fixed: last line underline overlap border in html fragment [view] +
  • A few more language updates [view] +
  • Add VHDL strings to Translator class and add german translations. [view] +
  • Add commands to handle referenced by relation and references relation [view] +, [view] +
  • Add formula (images) to RTF output [view] +
  • Add function annotations support [view] +
  • Add possibility for adding doxygen configuration items to, all, tests during runtime. [view] +
  • Add support for std::shared_ptr [view] +
  • Add support of dict/set in annotations and default values [view] +
  • Add variadic arguments support to @link and @ref, aka '...' arguments, fixes [view] +
  • Add variadic function arguments '...' regression tests [view] +
  • Add variadic template function regression tests [view] +
  • Added *.ice files as a recognized file type. Added a Slice-optimized output mode. [view] +
  • Added French translation [view] +
  • Added missing #include for util.h to portable.cpp [view] +
  • Added not for usage of [TOC] together with Markdown headers [view] +
  • Added some VHDL code coloring [view] +
  • Added some missing default types for argument matching [view] +
  • Added substitution variant for character substitution [view] +
  • Added support for RTL(right to left) languages like Arabic and Persian in HTML output [view] +
  • Added test case for \ref, and fixed representation of operator->*() [view] +
  • Adding debug options to vhdl parser generator [view] +
  • Adjustment of xhtml1-transitional.dtd [view] +
  • Automatic detection of UCS-2 based on BOM corrected [view] +
  • Better HTML output for VHDL Ports [view] +
  • Bold text terminated by plus sign [view] +
  • Bug fix for plantuml [view] +
  • Bump minimal deployment target for OSX to 10.9 to avoid deprecation warning while linking [view] +
  • C++11 features used in Doxygen [view] +
  • Cannot Generate Layout File using -l [view] +
  • Cannot properly jump from brief to detailed function description [view] +
  • Change german translation of trClassDocumentation() for VHDL output. [view] +
  • Changed implementation, added test case [view] +
  • Changed mail address and removed obsolete files [view] +
  • Changed refiltering to forced use of insideTabbing [view] +
  • Changed state guard instead of adding pattern check+reject [view] +
  • Close last code line properly. [view] +
  • Combined lrRank and rank parameters for computeMd5Signature [view] +
  • Consistency between 'generate' and 'update' startup option [view] +
  • Consistency between preprocessor and handling of \cond and \if [view] +
  • Consistency for "group" commands [view] +
  • Consistency in headings and layout for template parameters (tparam) [view] +
  • Consistency of Index name in LaTeX output [view] +
  • Consistency of environment variables between config and code [view] +, [view] +
  • Consistent warning messages [view] +
  • Correct list of not used translator functions [view] +
  • Correct typing error in test 5 [view] +
  • Correct typing error in test 51 [view] +
  • Correct typing error in warning message. [view] +
  • Corrected description of XML output for emoji characters [view] +
  • Corrected warning in case of a not supported output format with \image command. [view] +
  • Correcting "Definition at line @0 of file @1." [view] +
  • Correcting labels for citations [view] +, [view] +
  • Correcting tag example and uniform calling all examples [view] +
  • Correcting tag in printdocvisitor [view] +
  • Correcting warning messages and echoing unknown command [view] +
  • Correction for `doxygen -g` [view] +
  • Correction in example of FILE_VERSION_FILTER [view] +
  • Correction in title of FAQ [view] +
  • Correction internal documentation [view] +
  • Correction of some coloring of code comments in VHDL, adding data type 'positive' [view] +
  • Create command for escaped equal sign [view] +
  • Create test possibilities for xhtml and pdf output [view] +, [view] +
  • Debug output commentcnv independent of QUIET setting [view] +
  • Difference between standard and used Doxyfile [view] +
  • Difference between standard and used Doxyfile (list) [view] +
  • Disabled Appveyor documentation build due to unreliability of MikTeX download [view] +
  • Disabled debug print [view] +
  • Documentation EXTENSION_MAPPING [view] +
  • Documentation correction [view] +
  • Documentation correction CLANG option usage [view] +
  • Documentation correction include command with options [view] +
  • Documentation corrections [view] +
  • Documentation internet addresses [view] +
  • Documentation update regarding right font usage in architecture chapter [view] +
  • Does not generate TOC for markdown [view] +
  • Don't link to non existing / not accessible namespaces , in CSharp, in the source code [view] +
  • Doxygen creates empty image titles for Docbook output [view] +
  • Doxygen manual doesn't have lines around markdown tables / cells. [view] +
  • Doxygen manual is not XHTML compliant [view] +
  • Drop down lists in menu bar missing [view] +
  • Enable comma as separator in configuration lists [view] +
  • Enable in page table of contents for LaTeX [view] +
  • Enable in page table of contents for XML and add maximum level to in page table of contents [view] +, [view] +
  • Enable possibility of CLANG for Cygwin [view] +, [view] +
  • Enable possibility to run single tests [view] +
  • Ensure all language files are reset [view] +
  • Expand sqlite3gen's breadth, depth, and quality [view] +
  • Extending \cite command with '-' and '?' characters. [view] +
  • Extending tests with extra possibilities [view] +
  • Fix French lang build [view] +
  • Fix HTTPS links [view] +
  • Fix VHDL Latex documentation having two chapters with the same name. [view] +
  • Fix Windows build failure [view] +
  • Fix annotation with default value parsing [view] +
  • Fix building with Visual Studio 2013 [view] +
  • Fix for 'Definition at line' points to end of multiple-lined definition for Python #6706 [view] +
  • Fix for module quicklinks [view] +
  • Fix for unbounded memory usage due to a bug in \ref const matching #6689 [view] +
  • Fix potential hangup when merging scopes [view] +
  • Fix regression due to move of markdown processing [view] +
  • Fix scanner.l for Slice [view] +, [view] +, [view] +
  • Fix/New: add variadic function args '...' support to @link [view] +
  • Fix/New: add variadic function args '...' support to @ref [view] +
  • Fixed bug in URL [view] +
  • Fixed compile errors in clang and gcc [view] +
  • Fixed compiler warning for nested /* in scanner.l [view] +
  • Fixed differently by changing root cause for introducing the space [view] +
  • Fixed documentation to point to GitHub issue tracker [view] +
  • Fixed incorrect XHTML output for test 021 [view] +
  • Fixed logic error [view] +
  • Fixed merge problem [view] +
  • Fixed one remained compile error in clang [view] +
  • Fixed problems with emoji handling and added a test case for it [view] +
  • Fixed some more small memory leaks [view] +
  • Fixed two small memory leaks [view] +
  • Fixing coverity messages [view] +
  • Fixing coverity messages (Namespace tag) [view] +
  • Fixing problem with possible not initialized variable (endless loop in VS 2017 debug) [view] +
  • Fortran code coloring improvements (REAL and comment lines) [view] +
  • Fortran improvements [view] +
  • Fortran improvements (2) [view] +
  • Fortran scanner abort message [view] +
  • French translation for VHDL additions [view] +
  • Further simplified the fix [view] +
  • Generating doxygen documentation on Windows (with MikTex) [view] +
  • Handling Fortran functions in call graphs [view] +
  • Heading in rtf. #6522 https://github.com/doxygen/doxygen/issues/6522 [view] +
  • Ignore build* directories and not just build [view] +
  • Implementation Fortran ENUM / ENUMERATION [view] +
  • Implementation of standard generator for docbook output [view] +, [view] +
  • Improved robustness of the emoji feature [view] +
  • Improvement LaTeX output [view] and [view] and [view] +
  • Improvement regarding width and title for docbook [view] +
  • Improvements in handling special characters in Latex [view] +
  • Include "empty" directories in the documentation if they contain a `.dox` file (or similar) documenting the directory itself. [view] +
  • Include header for CompilationDatabase [view] +
  • Include height item in XML output [view] +
  • Inconsistency in respect to tgroup in docbook [view] +
  • Incorrect tag sequence for xhtml with class diagram possible [view] +
  • Incorrect closing tags for in page table of contents (XHTML) [view] +
  • Incorrect closing tags for in page table of contents (docbook) [view] +
  • Incorrect number of start / end paragraph tags for xhtml with htmlonly [view] +
  • Incorrect number of start / end paragraph tags for xhtml with image command [view] +
  • Incorrect number tag sequence for xhtml with htmlinclude command possible [view] +
  • Incorrect tag sequence for xhtml with latexinclude command possible [view] +
  • Incorrect tag sequence possible for images possible in case of xhtml [view] +
  • Index bugfix [view] +
  • Index list cannot contain special characters in ids for XHTML [view] +
  • Inline images [view] +
  • Invalid warnings regarding todos when source file name contains a '-' [view] +
  • Issue #6631 Code blocks incorrectly formatted in Latex [view] +
  • Issue 6411: CSS for Markdown tables do not use HTML_COLORSTYLE_HUE, HTML_COLORSTYLE_SAT config variables [view] +
  • Issue 6469: Java method calls are ignored in generating call/caller graph with Graphviz [view] +
  • Issue 6494: asterisks before args and kwargs are ignored in python [view] +
  • Issue_6456 Using # in links causes errors in PDF generation [view] +
  • Issue_6585: Unexpected anchor tags in tag-files [view] +
  • Keyword register (in code) is deprecated since C++11 [view] +, [view] +
  • LaTeX with verbatim part inside a table [view] +
  • Large CALL / CALLER graphs cannot be processed in LaTeX [view] +
  • Make conanfile creation more readable [view] +
  • Make it possible to list namespace members in file scope for XML output. [view] +
  • Making VHDL error messages more doxygen like [view] +
  • Making the 'tex' part of \makeindex available to the user [view] +
  • Markdown list wrong displayed [view] +
  • Minor documentation fix [view] +
  • Minor fixes to local toc logic after feedback [view] +
  • Minor restructuring [view] +
  • Misc. typos [view] +, [view] +
  • Missing opening round bracket in case of an exception [view] +
  • More typos [view] +
  • Moved #include "config.h" back to the original place [view] +
  • Moved duplicated code into dedicated function skipLanguageSpecificKeyword [view] +
  • Moved local toc data into a separate type for better encapsulation [view] +
  • Multiple `\xreflist` in one page with same key [view] +, [view] +
  • Multiple addindex commands in HTML with same name [view] +
  • Namespace with name docstrings_linebreak [view] +
  • Not showing external project in HTML hierarchy class pages [view] +
  • Numbers in comment disappear [view] +
  • Numbers overlap the titles in TOC of PDF [view] +
  • Order resources not only on filename but also dirname [view] +
  • PATCH -- updates reference link with no closing [view] +
  • Path for external commands on windows [view] +
  • Possibility to have a \image command inside a <A> tag [view] +
  • Possible fix for the build [view] +
  • Prevent <center> and <div> inside brief descriptions to avoid broken XHTML output [view] +
  • Prevent empty list [view] +
  • Prevent empty member list table (XHTML) [view] +
  • Prevent empty page list table (XHTML) [view] +
  • Prevent possible 'QGDict::hashAsciiKey: Invalid null key' warning [view] +
  • Prevent potential race condition [view] +
  • Print emoji text in case of unknown emoji [view] +
  • Problem with TEST_FLAGS when using CMake for Visual Studio [view] +
  • Problem with \cond in normal comment of test 015 [view] +
  • Problem with code inside a Doxy table in LaTeX [view] +
  • Problems and some enhancements for LaTeX tables [view] +
  • RTF layout regarding References and Referenced by [view] +
  • RTF lists more levels and removing extra paragraphs [view] +
  • Readded missing "Span" case to DocStyleChange::styleString [view] +
  • Redundant whitespace removal breaks some C++ links [with test case and Git bisect] (Origin: bugzilla #791942) [view] +
  • Refactored code a bit [view] +
  • Refactored code a bit (use const references and made global functions members) [view] +
  • Reference text in reference list seen as emoji [view] +
  • Remove debug statement [view] +
  • Remove debug statements [view] +
  • Remove default assignment from Translator::trVhdlType() declaration [view] +
  • Remove double line with documented argument from addContentsItem in ftvhelp.cpp [view] +
  • Remove non-english translations [view] +
  • Remove obsolete definitions from scanner [view] +
  • Remove obsolete line from README.md [view] +
  • Remove old obsolete docbook generator [view] +
  • Remove some dead code [view] +
  • Renamed (start/end)SimpleSect to (start/end)Examples. [view] +
  • Renamed command and moved duplicated code into a macro [view] +
  • Renamed option and test case numbers [view] +
  • Replace ''printf' with appropriate warn 'message' [view] +
  • Replace calls to trTypeString with trVhdlType in single mode, which is the default. [view] +
  • Replaced replace(QRegExp(..)) by substitute [view] +
  • Replaced replace(QRegExp..) by substitute [view] +
  • Resolve inconsistency in formula repositories. [view] +
  • Restructured code to avoid the need for global state [view] +
  • Return VHDL specific text in trClassHierarchyDescription() [view] +
  • Section label with minus sign not recognized properly. [view] +
  • Small clarification for REFERENCED_BY_RELATION [view] +
  • Small correction installation / build procedure [view] +
  • Small corrections in distributed man pages [view] +
  • Small documentation corrections [view] +
  • Small problems when displaying python code [view] +
  • Small problems when having code in LaTeX output [view] +, [view] +
  • Sorting of index in case of LaTex [view] +
  • Spanish translation for VHDL additions [view] +
  • Spelling of the word Javadoc [view] +
  • Synchronize chapter names of doxygen's own documentation. [view] +
  • Syntax highlighting / code coloring in RTF [view] +
  • Tag sequence incorrect for svg image (XHTML) [view] +
  • Test renumbering [view] +, [view] +
  • Tooltip was twice 'HTML escaped' [view] +, [view] +
  • Translators updated to version 1.8.15. [view] +
  • Truncated split bar in HTML output between treeview and normal text area [view] +
  • Typos [view], [view] , [view] +
  • Unbalanced start of lists resulting in not creatable pdf of rtf document [view] +
  • Update Dutch translation for new Slice implementation [view] +
  • Update Dutch translation in respect to new VHDL entries. [view] +
  • Updated Hungarian translation [view] +
  • Upgrade to jQuery 1.7.2 to get rid of security scan violations. [view] +
  • Usage of '{', '}' and ',' in ALIAS [view] +
  • Use QCStringList::split i.s.o. QStringList::split [view] +
  • Version bump for next release [view] +
  • Warning running xmllint for xhtml [view] +
  • Wrong counting of lines during VHDL code output [view] +
  • Wrong determination of begin / end tag of formula in markdown. [view] +
  • Wrong link generated for inherited members when tag files are used. [view] +
  • Wrong separator in index for a.o. Python, C# [view] +
  • Wrong spelling of word doxygen [view] +
  • XHTML image tag mandatory alt attribute [view] +
  • XHTML incorrect attribute values for align and valign [view] +
  • XHTML problem with class index table [view] +
  • XHTML problem with multiple use of node numbers in id attribute [view] +
  • XHTML problem with name attribute with VHDL name attribute [view] +
  • XML output: avoid warnings with scoped enum values in anonymous namespaces. [view] +
  • [ImgBot] Optimize images [view] +
  • added PHP7 support for the search engine on HTML output. See: http://php.net/manual/en/language.basic-syntax.phptags.php [view] +
  • addindex supports also DocBook and RTF [view] +
  • correct typo in comment [view] +
  • declares XMLCodeGenerator in xmlgen.h [view] +
  • doxyparse bugfixes and minor improvements [view] +
  • fix build with qt 5.11, deprecated qt5_use_modules macro was removed, patch by Christophe Giboudeaux [view] +
  • perlmod syntax correction [view] +
  • redundant input_filter runs significantly reduce performance when FILTER_SOURCE_FILES and INLINE_SOURCES are both enabled #6395 [view] +
  • sqlite3: fix missing external_file view schema col [view] +
  • sqlite3: require sqlite >= 3.9.0 [view] +
+

+\endhtmlonly + \subsection log_1_8_14 Release 1.8.14 \htmlonly (release date 25-12-2017)

    -
  • Add language type attribute to programlisting tag [view] -
  • Add links behind nav entries "Namespaces" and "Files" (matching "Classes") [view] -
  • Allow case insensitive file pattern matching based on CASE_SENSE_NAMES [view] -
  • Async load of mathjax javascript [view] -
  • Avoid generating unused dir_* output files for non HTML output formats [view] -
  • Bug 557094 - Wrong spacing in function names with french language (latex output) [view] -
  • Bug 652086 - does ALIAS work for VHDL code? [view] -
  • Bug 729237 - (UnFriendlyTemplate) Spurious warning when documenting friend template [view] -
  • Bug 733705 - parser misinterpreting fortran [view] -
  • Bug 743367 - Duplicate attribute (target="_top" target="_top") generated in .SVG files [view] -
  • Bug 775493 - Usage of underscore's in parameter names [view] -
  • Bug 776791 - [1.8.13 Regression] Segfault building the breathe docs [view] -
  • Bug 776870 - XML Parsing Error for operator<< methods when outputing to XHTML [view] -
  • Bug 776964 - Menu does not work without Javascript [view] -
  • Bug 776988 - Too greedy behavior of @ref const matching [view] -
  • Bug 778730 - doxygen build fails [view] -
  • Bug 779014 - Add "\~" command to internatioalization article [view] -
  • Bug 784281 - Problem RTF output: The class list "classes" within the namespace report is wrong indicated. [view] -
  • Bug 786409 - parsing error in Fortran file with preprocessing [view] -, [view] -
  • Bug 787952 - Problem parsing c++ gnu::visibility [view] -
  • Bug 788209 - C++: False warning message when inheriting class from tag file [view] -
  • Bug 789007 - Error in markdown emphasis examples [view] -
  • Bug 789168 - Increasing access of inherited C++ members with 'using...' is not recognized by Doxygen [view] -
  • Bug 790320 - C++ parameter from lambda not recognized [view] -
  • Bug 790788 - Doxygen not showing the public, non-static member function [view] -
  • CMake: avoid if() around the whole contents of documentation CMakeLists.txt [view] -
  • CMake: avoid if() around the whole contents of plugin CMakeLists.txt [view] -
  • CMake: let CMake handle the C++ standard setting if target_compile_features() is used [view] -
  • CMake: let file(MAKE_DIRECTORY) create all directories at once [view] -
  • CMake: remove CUSTOM_(LINK|INCLUDE)_DIR [view] -
  • CMake: remove needless variable expansions [view] -
  • CMake: remove unused program searching [view] -
  • CMake: search for Qt5 only in config file mode [view] -
  • CMake: use GNUInstallDirs module for man pages directory [view] -
  • CMake: use add_test to create a test [view] -
  • CMakeLists: Avoid MSVC iconv changes for MinGW builds [view] -
  • Call endMemberItem consistently. [view] -
  • Change navtree collapsed list icon [view] -
  • Code color of , (comma) together with only in use statement [view] -
  • Corrected small type [view] -
  • Correction display of backtick in LaTeX [view] -
  • Correction of non reachable links and redirected links in documentation. [view] -
  • Documentation, correct referenced file [view] -
  • Doxygen/VHDLdocgen: [view] -
  • Encode invalid XML characters instead of skipping them. [view] -
  • Expose TOC placeholder in XML output. [view] -
  • Expose underlying enum type in the XML output. [view] -
  • Fetch filename property from object instead of hardcoded duplicated string [view] -
  • Fix C# property initializer parsing [view] -
  • Fix for regression in XML output generation after fixing bug 789168 [view] -
  • Fix https://bugzilla.gnome.org/show_bug.cgi?id=782583. [view] -
  • Fix minor markup issue in the documentation. [view] -
  • Fix not initialized pointer when parser is starting on a new file. [view] -
  • Fix typo [view] -
  • Fix: add missing newline char '\n' [view] -
  • Fix: add missing semicolon ';' at end of line [view] -
  • Fix: change 'CMakefiles' to 'CMakeFiles' (the 'F' is uppercase) [view] -
  • Fix: perl script regexp to toggle flex debug information [view] -
  • Fixed problem where automatic line breaking caused missing vertical bars in the parameter table for Latex output. [view] -
  • Fixes for cross platform build with new LLVM/CLANG version [view] -
  • Fixup man page NAME section when page has title [view] -
  • Function declaration following a function definition incorrectly listed as calling dependencing [view] -
  • Further cleanup of lodepng code [view] -
  • Implement "double-space line breaks" syntax in Markdown [view] -
  • Improve Chinese translation [view] -
  • Inline attribute got reset for functions returning an explicit struct type [view] -
  • Isolated none-existing posix threading functions on Android [view] -
  • Marks JS as freely licensed [view] -
  • Misc. doxy and comment typos [view] -
  • Misc. typos [view] -
  • New table features mentioned in the documentation were not enabled. [view] -
  • Pass strings as const references. [view] -
  • Physical newlines in ALIASES configuration tags. [view] -
  • Propagate language information to all <programlisting> XML elements. [view] -
  • Properly copy images for the XML output. [view] -
  • Provide dot path to plantuml [view] -
  • Provide information about enum type "strongness" in the XML output. [view] -
  • Provide page brief in <briefdescription> of XML output. [view] -
  • Provide template parameters also for type aliases in the XML output. [view] -
  • Removed -Wno-deprecated flag from bison as it is not support on the bison 2.3 that ships with XCode [view] -
  • Restore 'make tests' rule [view] -
  • Restore Makefile in vhdlparser dir [view] -
  • Spelling correction [view] -
  • Stripped unused LodePNG code to prevent false positives for coverity [view] -
  • Suppresses warning for XML <see langword="..."/> [view] -
  • Suppression warnings about deprecated directive [view] -
  • Update .travis.yml [view] -, [view] -
  • Update mathjax path [view] -
  • Updated translator_de.h to doxygen 1.8.13 [view] -
  • Use hidden symbol visibility by default [view] -
  • Use language identifier instead of file extension for language attribute [view] -
  • Use language in stead of lang for language name attribute [view] -
  • Update of the Brazillian translation [view] -
  • [preprocessing.doc] typo amended [view] -
  • add decimal to base identifier [view] -
  • add the number of conditionals path and bugfix [view] -
  • build: fix the way lang_cfg.h is generated [view and view] -
  • bump version number for the development version/next release [view] -
  • const-ify [view] -
  • dot.cpp: Fix DotGfxHierarchyTable first class node loop [view] -
  • fix spelling [view] -
  • fix test to support new programlisting attribute [view] -
  • fix typo [view] -
  • fixes vhdl literal bug [view] -
  • line continuation characters inside comments embedded in a macro definition appeared in the output [view] -
  • make use of clang compilation database [view] -
  • new addon doxyparse, a source parsing engine [view] -
  • sqlite3gen: add index on params [view] -
  • sqlite3gen: add missing protectedsettable column [view] -
  • sqlite3gen: add openDbConnection [view] -
  • sqlite3gen: start checking operations status [view] -
  • sqlite3gen: use sqlite3_exec for schema setup [view] -
  • typos [view] -
  • update compound.xsd to add language attribute [view] -
  • using YAML in the output of "doxyparse" [view] +
  • Add language type attribute to programlisting tag [view]
  • +
  • Add links behind nav entries "Namespaces" and "Files" (matching "Classes") [view]
  • +
  • Allow case insensitive file pattern matching based on CASE_SENSE_NAMES [view]
  • +
  • Async load of mathjax javascript [view]
  • +
  • Avoid generating unused dir_* output files for non HTML output formats [view]
  • +
  • Bug 3138 - Wrong spacing in function names with french language (latex output) [view]
  • +
  • Bug 4289 - does ALIAS work for VHDL code? [view]
  • +
  • Bug 5468 - (UnFriendlyTemplate) Spurious warning when documenting friend template [view]
  • +
  • Bug 5525 - parser misinterpreting fortran [view]
  • +
  • Bug 5724 - Duplicate attribute (target="_top" target="_top") generated in .SVG files [view]
  • +
  • Bug 6128 - Usage of underscore's in parameter names [view]
  • +
  • Bug 6135 - [1.8.13 Regression] Segfault building the breathe docs [view]
  • +
  • Bug 6137 - XML Parsing Error for operator<< methods when outputting to XHTML [view]
  • +
  • Bug 6139 - Menu does not work without Javascript [view]
  • +
  • Bug 6141 - Too greedy behavior of @ref const matching [view]
  • +
  • Bug 6169 - doxygen build fails [view]
  • +
  • Bug 6170 - Add "\~" command to internatioalization article [view]
  • +
  • Bug 6223 - Problem RTF output: The class list "classes" within the namespace report is wrong indicated. [view]
  • +
  • Bug 6238 - parsing error in Fortran file with preprocessing [view] +, [view]
  • +
  • Bug 6259 - Problem parsing c++ gnu::visibility [view]
  • +
  • Bug 6262 - C++: False warning message when inheriting class from tag file [view]
  • +
  • Bug 6273 - Error in markdown emphasis examples [view]
  • +
  • Bug 6277 - Increasing access of inherited C++ members with 'using...' is not recognized by Doxygen [view]
  • +
  • Bug 6286 - C++ parameter from lambda not recognized [view]
  • +
  • Bug 6290 - Doxygen not showing the public, non-static member function [view]
  • +
  • CMake: avoid if() around the whole contents of documentation CMakeLists.txt [view]
  • +
  • CMake: avoid if() around the whole contents of plugin CMakeLists.txt [view]
  • +
  • CMake: let CMake handle the C++ standard setting if target_compile_features() is used [view]
  • +
  • CMake: let file(MAKE_DIRECTORY) create all directories at once [view]
  • +
  • CMake: remove CUSTOM_(LINK|INCLUDE)_DIR [view]
  • +
  • CMake: remove needless variable expansions [view]
  • +
  • CMake: remove unused program searching [view]
  • +
  • CMake: search for Qt5 only in config file mode [view]
  • +
  • CMake: use GNUInstallDirs module for man pages directory [view]
  • +
  • CMake: use add_test to create a test [view]
  • +
  • CMakeLists: Avoid MSVC iconv changes for MinGW builds [view]
  • +
  • Call endMemberItem consistently. [view]
  • +
  • Change navtree collapsed list icon [view]
  • +
  • Code color of , (comma) together with only in use statement [view]
  • +
  • Corrected small type [view]
  • +
  • Correction display of backtick in LaTeX [view]
  • +
  • Correction of non reachable links and redirected links in documentation. [view]
  • +
  • Documentation, correct referenced file [view]
  • +
  • Doxygen/VHDLdocgen: [view]
  • +
  • Encode invalid XML characters instead of skipping them. [view]
  • +
  • Expose TOC placeholder in XML output. [view]
  • +
  • Expose underlying enum type in the XML output. [view]
  • +
  • Fetch filename property from object instead of hardcoded duplicated string [view]
  • +
  • Fix C# property initializer parsing [view]
  • +
  • Fix for regression in XML output generation after fixing bug 789168 [view]
  • +
  • Fix 6210. [view]
  • +
  • Fix minor markup issue in the documentation. [view]
  • +
  • Fix not initialized pointer when parser is starting on a new file. [view]
  • +
  • Fix typo [view]
  • +
  • Fix: add missing newline char '\n' [view]
  • +
  • Fix: add missing semicolon ';' at end of line [view]
  • +
  • Fix: change 'CMakefiles' to 'CMakeFiles' (the 'F' is uppercase) [view]
  • +
  • Fix: perl script regexp to toggle flex debug information [view]
  • +
  • Fixed problem where automatic line breaking caused missing vertical bars in the parameter table for Latex output. [view]
  • +
  • Fixes for cross platform build with new LLVM/CLANG version [view]
  • +
  • Fixup man page NAME section when page has title [view]
  • +
  • Function declaration following a function definition incorrectly listed as calling dependencing [view]
  • +
  • Further cleanup of lodepng code [view]
  • +
  • Implement "double-space line breaks" syntax in Markdown [view]
  • +
  • Improve Chinese translation [view]
  • +
  • Inline attribute got reset for functions returning an explicit struct type [view]
  • +
  • Isolated none-existing posix threading functions on Android [view]
  • +
  • Marks JS as freely licensed [view]
  • +
  • Misc. doxy and comment typos [view]
  • +
  • Misc. typos [view]
  • +
  • New table features mentioned in the documentation were not enabled. [view]
  • +
  • Pass strings as const references. [view]
  • +
  • Physical newlines in ALIASES configuration tags. [view]
  • +
  • Propagate language information to all <programlisting> XML elements. [view]
  • +
  • Properly copy images for the XML output. [view]
  • +
  • Provide dot path to plantuml [view]
  • +
  • Provide information about enum type "strongness" in the XML output. [view]
  • +
  • Provide page brief in <briefdescription> of XML output. [view]
  • +
  • Provide template parameters also for type aliases in the XML output. [view]
  • +
  • Removed -Wno-deprecated flag from bison as it is not support on the bison 2.3 that ships with XCode [view]
  • +
  • Restore 'make tests' rule [view]
  • +
  • Restore Makefile in vhdlparser dir [view]
  • +
  • Spelling correction [view]
  • +
  • Stripped unused LodePNG code to prevent false positives for coverity [view]
  • +
  • Suppresses warning for XML <see langword="..."/> [view]
  • +
  • Suppression warnings about deprecated directive [view]
  • +
  • Update .travis.yml [view] +, [view]
  • +
  • Update mathjax path [view]
  • +
  • Updated translator_de.h to doxygen 1.8.13 [view]
  • +
  • Use hidden symbol visibility by default [view]
  • +
  • Use language identifier instead of file extension for language attribute [view]
  • +
  • Use language in stead of lang for language name attribute [view]
  • +
  • Update of the Brazillian translation [view]
  • +
  • [preprocessing.doc] typo amended [view]
  • +
  • add decimal to base identifier [view]
  • +
  • add the number of conditionals path and bugfix [view]
  • +
  • build: fix the way lang_cfg.h is generated [view and view]
  • +
  • bump version number for the development version/next release [view]
  • +
  • const-ify [view]
  • +
  • dot.cpp: Fix DotGfxHierarchyTable first class node loop [view]
  • +
  • fix spelling [view]
  • +
  • fix test to support new programlisting attribute [view]
  • +
  • fix typo [view]
  • +
  • fixes vhdl literal bug [view]
  • +
  • line continuation characters inside comments embedded in a macro definition appeared in the output [view]
  • +
  • make use of clang compilation database [view]
  • +
  • new addon doxyparse, a source parsing engine [view]
  • +
  • sqlite3gen: add index on params [view]
  • +
  • sqlite3gen: add missing protectedsettable column [view]
  • +
  • sqlite3gen: add openDbConnection [view]
  • +
  • sqlite3gen: start checking operations status [view]
  • +
  • sqlite3gen: use sqlite3_exec for schema setup [view]
  • +
  • typos [view]
  • +
  • update compound.xsd to add language attribute [view]
  • +
  • using YAML in the output of "doxyparse" [view]

\endhtmlonly @@ -135,60 +536,60 @@

    -
  • Bug 707266 - C++/CLI indexed property not documented [view] -
  • Bug 707278 - Grouping of results fail when using built-in javascript search [view] -
  • Bug 722112 - 'static' and 'throw' C++ keywords not colored [view] -
  • Bug 729921 - wrong collaboration diagram when in template used scoped argument type [view] -
  • Bug 756185 - Multiline //!< behavior changed [view] -
  • Bug 759402 - C++11 "using" type alias for function pointer with no arguments is formatted incorrectly [view] -
  • Bug 760678 - fails to build with an unreleased python version [view] -
  • Bug 769552 - doxygen warning parsing C++11 "using" declaration [view] -
  • Bug 770973 - Tag file size double between each run [view] -
  • Bug 771152 - C++11 ref-qualifiers do not appear in Member Function Documentation section [view] -
  • Bug 771199 - Web-page bug: Comment blocks in VHDL [view] -
  • Bug 771310 - French description for "Namespace Members" is wrong and causes fatal javascript error [view] -
  • Bug 771344 - Class name 'internal' breaks class hierarchy in C++ [view] -
  • Bug 772574 - __xxx__ not interpreted as markdown when xxx begins with a non-word character (e.g. __-1__) [view] -
  • Bug 773231 - Underscores in type or member name cause unwanted hyphenation in PDF output Data Fields [view] -
  • Bug 773354 - "name" attribute of image map not urlencoded, not working in Chrome [view] -
  • Bug 774138 - Please add HTML classes to "Definition at..." & "Referenced by..." for CSS [view] -
  • Bug 774273 - INLINE_SIMPLE_STRUCTS with enums in classes does not work [view] -
  • Bug 774514 - Modify in some pronounciation expression in Korean [view] -
  • Bug 774949 - Unknown reference in manual [view] -
  • Bug 775245 - referencing Python files via tagfile broken [view] -
  • Add NVARCHAR as a SQL type [view] -
  • Add mscgen images to index.qhp [view] -
  • Add sql syntax highlighting to code blocks [view] -
  • Add support for more CSS formatting and column/row spanning in markdown tables [view] -
  • Added missing language value for SQL to XML output [view] -
  • Adds plantuml support Qt compressed help file [view] -
  • Check for undocumented params warnings if members detailed documentation is not written [view] -
  • Cleanup: removed redundant =NULL from interfaces, or replaced by =0 where it was needed. [view] -
  • Clear header/footer information in ConfigImpl for postProcess [view] -
  • Documentation small corrections [view] -
  • Doxygen error: Found ';' while parsing initializer list [view] -
  • Fix for PlantUML configuration [view] -
  • Fix plantuml generation issue [view] -
  • Fix: Add missing jquery.js, dynsections.js & optional svgpan.js to QCH file [view] -
  • Fix: replace deprecated {\bf with \textbf{ in LaTeX generator [view] -
  • Fixed constexp.y bison issue [view] -
  • Fixed cross referencing issue when using bitfields. [view] -
  • Fixed jump to anchor issue when navigating to source file [view] -
  • Fixed problem generating per letter namespace member index pages. [view] -
  • Fixed svgpan.js issue with Chrome causing empty SVG graphs [view] -
  • Fixed typedef and define strings for Spanish translation [view] -
  • Fixup man only output to use generator state push pop [view] -
  • For manpages remove trailing dash when no brief description [view] -
  • Made the RTF output honor the PAPER_TYPE option. [view] -
  • New classes for generated HTML div elements. [view] -
  • Option for PlantUML configuration file [view] -
  • Removed x flag from util* source files [view] -
  • Replaced section marker before members by diamond shaped bullet [view] -
  • Reverting pull request #537 until it will be fixed [view] -
  • Update Swedish translation [view] -
  • Updated the Polish translation [view] -
  • bison: use %declarations instead of command line options. [view] -
  • flex: use %option instead of command line options. [view] +
  • Bug 5279 - C++/CLI indexed property not documented [view]
  • +
  • Bug 5280 - Grouping of results fail when using built-in javascript search [view]
  • +
  • Bug 5400 - 'static' and 'throw' C++ keywords not colored [view]
  • +
  • Bug 5476 - wrong collaboration diagram when in template used scoped argument type [view]
  • +
  • Bug 5882 - Multiline //!< behavior changed [view]
  • +
  • Bug 5917 - C++11 "using" type alias for function pointer with no arguments is formatted incorrectly [view]
  • +
  • Bug 5930 - fails to build with an unreleased python version [view]
  • +
  • Bug 6044 - doxygen warning parsing C++11 "using" declaration [view]
  • +
  • Bug 6060 - Tag file size double between each run [view]
  • +
  • Bug 6062 - C++11 ref-qualifiers do not appear in Member Function Documentation section [view]
  • +
  • Bug 6063 - Web-page bug: Comment blocks in VHDL [view]
  • +
  • Bug 6067 - French description for "Namespace Members" is wrong and causes fatal javascript error [view]
  • +
  • Bug 6068 - Class name 'internal' breaks class hierarchy in C++ [view]
  • +
  • Bug 6084 - __xxx__ not interpreted as markdown when xxx begins with a non-word character (e.g. __-1__) [view]
  • +
  • Bug 6093 - Underscores in type or member name cause unwanted hyphenation in PDF output Data Fields [view]
  • +
  • Bug 6094 - "name" attribute of image map not urlencoded, not working in Chrome [view]
  • +
  • Bug 6105 - Please add HTML classes to "Definition at..." & "Referenced by..." for CSS [view]
  • +
  • Bug 6109 - INLINE_SIMPLE_STRUCTS with enums in classes does not work [view]
  • +
  • Bug 6115 - Modify in some pronunciation expression in Korean [view]
  • +
  • Bug 6123 - Unknown reference in manual [view]
  • +
  • Bug 6125 - referencing Python files via tagfile broken [view]
  • +
  • Add NVARCHAR as a SQL type [view]
  • +
  • Add mscgen images to index.qhp [view]
  • +
  • Add sql syntax highlighting to code blocks [view]
  • +
  • Add support for more CSS formatting and column/row spanning in markdown tables [view]
  • +
  • Added missing language value for SQL to XML output [view]
  • +
  • Adds plantuml support Qt compressed help file [view]
  • +
  • Check for undocumented params warnings if members detailed documentation is not written [view]
  • +
  • Cleanup: removed redundant =NULL from interfaces, or replaced by =0 where it was needed. [view]
  • +
  • Clear header/footer information in ConfigImpl for postProcess [view]
  • +
  • Documentation small corrections [view]
  • +
  • Doxygen error: Found ';' while parsing initializer list [view]
  • +
  • Fix for PlantUML configuration [view]
  • +
  • Fix plantuml generation issue [view]
  • +
  • Fix: Add missing jquery.js, dynsections.js & optional svgpan.js to QCH file [view]
  • +
  • Fix: replace deprecated {\bf with \textbf{ in LaTeX generator [view]
  • +
  • Fixed constexp.y bison issue [view]
  • +
  • Fixed cross referencing issue when using bitfields. [view]
  • +
  • Fixed jump to anchor issue when navigating to source file [view]
  • +
  • Fixed problem generating per letter namespace member index pages. [view]
  • +
  • Fixed svgpan.js issue with Chrome causing empty SVG graphs [view]
  • +
  • Fixed typedef and define strings for Spanish translation [view]
  • +
  • Fixup man only output to use generator state push pop [view]
  • +
  • For manpages remove trailing dash when no brief description [view]
  • +
  • Made the RTF output honor the PAPER_TYPE option. [view]
  • +
  • New classes for generated HTML div elements. [view]
  • +
  • Option for PlantUML configuration file [view]
  • +
  • Removed x flag from util* source files [view]
  • +
  • Replaced section marker before members by diamond shaped bullet [view]
  • +
  • Reverting pull request #537 until it will be fixed [view]
  • +
  • Update Swedish translation [view]
  • +
  • Updated the Polish translation [view]
  • +
  • bison: use %declarations instead of command line options. [view]
  • +
  • flex: use %option instead of command line options. [view]

\endhtmlonly @@ -199,156 +600,156 @@

    -
  • Bug 306025 - Fix missing title in non-page docanchors from tag files [view] -
  • Bug 504305 - FILTER_PATTERNS won't take command with arguments [view] -
  • Bug 675165 - Uses <img> instead of <object> html tag for SVG images [view] -
  • Bug 700381 - error state 21 with fortran code (fixed format) [view] -
  • Bug 710611 - Missing Page References in the Index Chapters of the LaTex/PDF output [view] -
  • Bug 722654 - Inherited member of template class issues warning and is not documented [view] -
  • Bug 742452 - Fortran: attributes after a blank line are ignored / Bug 625602 - FORTRAN: comment in subroutine argument list [view] -
  • Bug 749924 - Doxygen handles comments in Objective-C code blocks incorrectly. [view] -
  • Bug 750930 - Representation of arrows [view] -
  • Bug 751416 - Markdown: > escaped within backticks [view] -
  • Bug 751984 - Use UTC timezone when displaying QDateTimes parsed from SOURCE_DATE_EPOCH [view] -
  • Bug 752712 - last entry missing in a @name group of typedefs [view] -
  • Bug 753608 - Link of typedef within namespace on group pages missing [view] -
  • Bug 757509 - __init__.py causes to ignore some inheritance [view] -
  • Bug 760086 - Figure title needs to be on separate line in order for it to work [view] -
  • Bug 760836 - Phantom variables/functions in XML, created from non-code files [view] -
  • Bug 760970 - CASE_SENSE_NAMES ignored [view] -
  • Bug 761007 - Spaces between the closing bracket of the typename and the opening bracket of the parameter list cause detection issues. [view] -
  • Bug 761139 - python unicode docstrings are ignored [view] -, [view] -
  • Bug 761471 - Do not allow ligatures in log output [view] -
  • Bug 762670 - References for one function can inherit References from subsequent non documented function [view] -
  • Bug 762934 - External search does not properly escape user supplied data, resulting in vulnerability [view] -
  • Bug 762982 - regression, Unescaped percent sign in doxygen output [view] -
  • Bug 763104 - hyperref link label drop underscores [view] -
  • Bug 763105 - Directory list is not generated in HTML output [view] -
  • Bug 763471 - imported section anchors are copied in project tagfile [view] -
  • Bug 763720 - Exclusion of a new line at the end of source code file causing nesting of HTML code for function documentation [view] -, [view] -
  • Bug 764359 - Recent File list allows only 2 entries [view] -, [view] -
  • Bug 764515 - doxygen crashes no resolved [view] -
  • Bug 764656 - generated xml has errors [view] -
  • Bug 764711 - quick link index in alphabetical class list in classes.html doesn't work [view] -
  • Bug 765001 - Bad character escaping scheme in HTML anchor generation. [view] -
  • Bug 765002 - `@addindex`entries fail to link to the exact location in Compiled HTML Help. [view] -
  • Bug 765070 - Java: final keyword on a parameter brakes docs inherinance [view] -
  • Bug 765692 - Using `@page` to add title to Markdown file generates surplus empty page. [view] -
  • Bug 766059 - DOT_PATH not expanded [view] -
  • Bug 766069 - Files with incorrect extensions (.doc) are picked up by doxygen [view] -
  • Bug 766464 - python: missing cross-links in sources (option SOURCE_BROWSER = YES) [view] -
  • Bug 766698 - VHDL: missing last sign in html documentation of constant declaration [view] -
  • Bug 766787 - HTML Tables with 10+ columns are broken for LaTeX based output [view] -
  • Bug 766809 - Enumerations heading present but none listed [view] -
  • Bug 767171 - ALIASES stop working after verbatim with formula and /** */ [view] -
  • Bug 768830 - Doxygen segfault (return code 134) when parsing a c++ enum class contained in a class [view] -
  • Bug 768954 - Segmentation fault when processing md containing only header [view] -
  • Bug 769018 - Invalid XHTML if the directives brief and exception are following immediately [view] -
  • Bug 769028 - Can't scroll using finger documentation in Chrome browser on Android OS [view] -
  • Bug 769736 - doxygen generates incorrect documentation for C enum in latex [view] -
  • Bug 770660 - Code snippet always shows line numbers from 1 [view] -
  • Bug 770747 - Broken links in HTML output with SHOW_FILES=NO [view] -
  • Add caption in verbatim blocks. [view] -
  • Add parameter in/out specifiers to output. [view] -
  • Add section title to output. [view] -
  • Added .codedocs file [view] -
  • Added an option to add "anonymous" headings to the table of contents (currently Markdown only). [view] -
  • Added generating template files and reading templates from disk if present [view] -
  • Added missing free [view] -
  • Added support for encoding tag to the template engine used for HTML help indices [view] -
  • Adding compilation options for flex/lex and bison/yacc [view] -
  • Adding partial htmlhelp support to template system [view] -
  • Adjusted Doxygen to doxygen in running text in the manual [view] -
  • Allow verbatim code block to be placed on the output. [view] -
  • Also map .f95, .f03 and .f08 file types to Fortran [view] -
  • Another possible fix [view] -
  • Applied responsive design to menu bar using smartmenus [view] -
  • Assertion failure generation documentation [view] -
  • Bug fix for rendering the VHDL Hierarchy (thanks to a patch by Martin Kreis) [view] -
  • Building doxyapp fails after update of config methodology to improve performance [view] -
  • Bump version for GIT repo [view] -
  • CMAKE: Fix building on Windows with VS 2015 [view] -
  • Changed configuration mechanism to directly access options in order to improve performance [view] -
  • Code with "extension" unparsed shows line numbers [view] -
  • Color code word OPERATOR and ASSIGNMENT as keyword in FORTRAN code [view] -
  • Color code word RESULT as keyword in FORTRAN code [view] -
  • Determination of end of parameter list [view] -
  • Disable selecting line number [view] -
  • Disabled debug prints [view] -
  • Documentation for extensions .f95, .f03 and .f08 [view] -
  • Doxygen fails to copy logo image to LaTex output dir [view] -
  • FORTRAN determination string in preprocessing [view] -
  • Feature: Translations for german language (changes since 1.8.4) [view] -
  • Fix STRIP_FROM_PATH when running from drive root [view] -
  • Fix Windows build instructions. [view] -
  • Fix documentation typos [view] -
  • Fix for HTML output when using server side search and the the new menu bar [view] -
  • Fix for changed references due to different removeRedudantWhiteSpace() implementation [view] -
  • Fix for empty file name [view] -
  • Fix for error in travis.yml [view] -
  • Fix issue escaping backslash inside markdown style code span [view] -
  • Fix linker flags for building with clang on Windows [view] -
  • Fix order of member initilaization [view] -
  • Fix return-type warnings with -DNDEBUG [view] -
  • Fix search box rendering in HTML when menu bar is disabled [view] -
  • Fix uppercase letters B-Z being unnecessarily escaped in index HTML anchors. [view] -
  • Fixed for index.hhp output when using template engine [view] -
  • Fixed issue escaping ndashes (\--) and mdashes (\---) [view] -
  • Fixed problem with -w command when no Doxyfile was present and specified [view] -
  • Fixed two regressions found during extensive testing [view] -
  • Fixed typos. [view] -
  • Fixed wrong <p> nesting issue for call/caller graphs [view] -
  • Fortran inline source code and crash on Linux [view] -
  • Improve output on mobile devices [view] -
  • Improved list of files in htmlhelp.hhp [view] -
  • Improved sorting performance for directories and files [view] -
  • Include command show line number (e.g. LaTeX) [view] -
  • Initialization of python variables and type determination [view] -
  • Introducing commands includedoc and snippetdoc [view] -
  • Latex page numbering [view] -
  • Minor build fixes [view] -
  • Minor correction for BUILD.txt [view] -
  • Minor performance improvement sorting directories [view] -
  • Minor update to the installation instructions [view] -
  • Missing semicolon in navtree.css [view] -
  • Modified (readability) layout for member title in HTML and LaTex [view] -
  • Optimized use of convertNameToFile to improve performance [view] -
  • PDF generation stops when image with caption is included in a table. [view] -, [view] -
  • Parse more than 1 size indiction in defaultHandleTitleAndSize [view] -
  • Problem jumping to line number in source code due to wrong hypertarget name [view] -
  • Python strip code comments [view] -
  • Reimplemented node renumbering for dot graph to improve performance [view] -
  • Remove unused variables [view] -, [view] -
  • Removed ambiguity in the XML schema definition [view] -
  • Revert #291 [view] -
  • Simplified code of fix for Bug 765001 [view] -
  • Sorting in latex index and missing \@ in index [view] -
  • Split apt-get install commands in travis config in an attempt to reduce timeouts [view] -
  • Style fixes and added numbering to overloaded members [view] -
  • Table of contents breaks when documentation spans multiple comment blocks with same @page [view] -
  • Unified display of enum values across output formats and languages [view] -
  • Unify handling of extra packages in formula.cpp and latexgen.cpp so formula.cpp handles package arguments correctly [view] -
  • Update LICENSE file to latest from FSF [view] -
  • Update copyright year in docs [view] -
  • Updated README.md to include code docs [view] -
  • Updated stylesheet for the manual to fix layout issue in the navigation tree [view] -
  • Warnings from CLANG compiler [view] -
  • fix ninja build error [view] -
  • fixed rtf subsection [view] -
  • mangen.h: remove italic in brief member descriptions [view] -
  • reimplemented removeRedundantWhiteSpace() to improve performance [view] -
  • sqlite3gen: defnname -> defname [view] -
  • sqlite3gen: export proper memberdef refid [view] -
  • sqlite3gen: insert xrefs using integer refids [view] -
  • sqlite3gen: stripFromPath on all calls to insertFile [view] -
  • sqlite3gen: stripWhitespace on bitfield's text [view] -
  • sqlite3gen: sync with xmlgen [view] -
  • sqlite3gen: use the refid stored in the refids table [view] +
  • Bug 1662 - Fix missing title in non-page docanchors from tag files [view]
  • +
  • Bug 2763 - FILTER_PATTERNS won't take command with arguments [view]
  • +
  • Bug 4691 - Uses <img> instead of <object> html tag for SVG images [view]
  • +
  • Bug 5174 - error state 21 with fortran code (fixed format) [view]
  • +
  • Bug 5323 - Missing Page References in the Index Chapters of the LaTex/PDF output [view]
  • +
  • Bug 5411 - Inherited member of template class issues warning and is not documented [view]
  • +
  • Bug 5711 - Fortran: attributes after a blank line are ignored / Bug 3880 - FORTRAN: comment in subroutine argument list [view]
  • +
  • Bug 5791 - Doxygen handles comments in Objective-C code blocks incorrectly. [view]
  • +
  • Bug 5804 - Representation of arrows [view]
  • +
  • Bug 5811 - Markdown: > escaped within backticks [view]
  • +
  • Bug 5826 - Use UTC timezone when displaying QDateTimes parsed from SOURCE_DATE_EPOCH [view]
  • +
  • Bug 5832 - last entry missing in a @name group of typedefs [view]
  • +
  • Bug 5843 - Link of typedef within namespace on group pages missing [view]
  • +
  • Bug 5891 - __init__.py causes to ignore some inheritance [view]
  • +
  • Bug 5923 - Figure title needs to be on separate line in order for it to work [view]
  • +
  • Bug 5933 - Phantom variables/functions in XML, created from non-code files [view]
  • +
  • Bug 5937 - CASE_SENSE_NAMES ignored [view]
  • +
  • Bug 5938 - Spaces between the closing bracket of the typename and the opening bracket of the parameter list cause detection issues. [view]
  • +
  • Bug 5941 - python unicode docstrings are ignored [view] +, [view]
  • +
  • Bug 5945 - Do not allow ligatures in log output [view]
  • +
  • Bug 5958 - References for one function can inherit References from subsequent non documented function [view]
  • +
  • Bug 5961 - External search does not properly escape user supplied data, resulting in vulnerability [view]
  • +
  • Bug 5962 - regression, Unescaped percent sign in doxygen output [view]
  • +
  • Bug 5964 - hyperref link label drop underscores [view]
  • +
  • Bug 5965 - Directory list is not generated in HTML output [view]
  • +
  • Bug 5967 - imported section anchors are copied in project tagfile [view]
  • +
  • Bug 5970 - Exclusion of a new line at the end of source code file causing nesting of HTML code for function documentation [view] +, [view]
  • +
  • Bug 5975 - Recent File list allows only 2 entries [view] +, [view]
  • +
  • Bug 5978 - doxygen crashes no resolved [view]
  • +
  • Bug 5980 - generated xml has errors [view]
  • +
  • Bug 5981 - quick link index in alphabetical class list in classes.html doesn't work [view]
  • +
  • Bug 5982 - Bad character escaping scheme in HTML anchor generation. [view]
  • +
  • Bug 5983 - `@addindex`entries fail to link to the exact location in Compiled HTML Help. [view]
  • +
  • Bug 5985 - Java: final keyword on a parameter brakes docs inherinance [view]
  • +
  • Bug 5991 - Using `@page` to add title to Markdown file generates surplus empty page. [view]
  • +
  • Bug 5998 - DOT_PATH not expanded [view]
  • +
  • Bug 5999 - Files with incorrect extensions (.doc) are picked up by doxygen [view]
  • +
  • Bug 6002 - python: missing cross-links in sources (option SOURCE_BROWSER = YES) [view]
  • +
  • Bug 6007 - VHDL: missing last sign in html documentation of constant declaration [view]
  • +
  • Bug 6009 - HTML Tables with 10+ columns are broken for LaTeX based output [view]
  • +
  • Bug 6010 - Enumerations heading present but none listed [view]
  • +
  • Bug 6020 - ALIASES stop working after verbatim with formula and /** */ [view]
  • +
  • Bug 6031 - Doxygen segfault (return code 134) when parsing a c++ enum class contained in a class [view]
  • +
  • Bug 6032 - Segmentation fault when processing md containing only header [view]
  • +
  • Bug 6033 - Invalid XHTML if the directives brief and exception are following immediately [view]
  • +
  • Bug 6035 - Can't scroll using finger documentation in Chrome browser on Android OS [view]
  • +
  • Bug 6048 - doxygen generates incorrect documentation for C enum in latex [view]
  • +
  • Bug 6055 - Code snippet always shows line numbers from 1 [view]
  • +
  • Bug 6056 - Broken links in HTML output with SHOW_FILES=NO [view]
  • +
  • Add caption in verbatim blocks. [view]
  • +
  • Add parameter in/out specifiers to output. [view]
  • +
  • Add section title to output. [view]
  • +
  • Added .codedocs file [view]
  • +
  • Added an option to add "anonymous" headings to the table of contents (currently Markdown only). [view]
  • +
  • Added generating template files and reading templates from disk if present [view]
  • +
  • Added missing free [view]
  • +
  • Added support for encoding tag to the template engine used for HTML help indices [view]
  • +
  • Adding compilation options for flex/lex and bison/yacc [view]
  • +
  • Adding partial htmlhelp support to template system [view]
  • +
  • Adjusted Doxygen to doxygen in running text in the manual [view]
  • +
  • Allow verbatim code block to be placed on the output. [view]
  • +
  • Also map .f95, .f03 and .f08 file types to Fortran [view]
  • +
  • Another possible fix [view]
  • +
  • Applied responsive design to menu bar using smartmenus [view]
  • +
  • Assertion failure generation documentation [view]
  • +
  • Bug fix for rendering the VHDL Hierarchy (thanks to a patch by Martin Kreis) [view]
  • +
  • Building doxyapp fails after update of config methodology to improve performance [view]
  • +
  • Bump version for GIT repo [view]
  • +
  • CMAKE: Fix building on Windows with VS 2015 [view]
  • +
  • Changed configuration mechanism to directly access options in order to improve performance [view]
  • +
  • Code with "extension" unparsed shows line numbers [view]
  • +
  • Color code word OPERATOR and ASSIGNMENT as keyword in FORTRAN code [view]
  • +
  • Color code word RESULT as keyword in FORTRAN code [view]
  • +
  • Determination of end of parameter list [view]
  • +
  • Disable selecting line number [view]
  • +
  • Disabled debug prints [view]
  • +
  • Documentation for extensions .f95, .f03 and .f08 [view]
  • +
  • Doxygen fails to copy logo image to LaTex output dir [view]
  • +
  • FORTRAN determination string in preprocessing [view]
  • +
  • Feature: Translations for german language (changes since 1.8.4) [view]
  • +
  • Fix STRIP_FROM_PATH when running from drive root [view]
  • +
  • Fix Windows build instructions. [view]
  • +
  • Fix documentation typos [view]
  • +
  • Fix for HTML output when using server side search and the new menu bar [view]
  • +
  • Fix for changed references due to different removeRedudantWhiteSpace() implementation [view]
  • +
  • Fix for empty file name [view]
  • +
  • Fix for error in travis.yml [view]
  • +
  • Fix issue escaping backslash inside markdown style code span [view]
  • +
  • Fix linker flags for building with clang on Windows [view]
  • +
  • Fix order of member initilaization [view]
  • +
  • Fix return-type warnings with -DNDEBUG [view]
  • +
  • Fix search box rendering in HTML when menu bar is disabled [view]
  • +
  • Fix uppercase letters B-Z being unnecessarily escaped in index HTML anchors. [view]
  • +
  • Fixed for index.hhp output when using template engine [view]
  • +
  • Fixed issue escaping ndashes (\--) and mdashes (\---) [view]
  • +
  • Fixed problem with -w command when no Doxyfile was present and specified [view]
  • +
  • Fixed two regressions found during extensive testing [view]
  • +
  • Fixed typos. [view]
  • +
  • Fixed wrong <p> nesting issue for call/caller graphs [view]
  • +
  • Fortran inline source code and crash on Linux [view]
  • +
  • Improve output on mobile devices [view]
  • +
  • Improved list of files in htmlhelp.hhp [view]
  • +
  • Improved sorting performance for directories and files [view]
  • +
  • Include command show line number (e.g. LaTeX) [view]
  • +
  • Initialization of python variables and type determination [view]
  • +
  • Introducing commands includedoc and snippetdoc [view]
  • +
  • Latex page numbering [view]
  • +
  • Minor build fixes [view]
  • +
  • Minor correction for BUILD.txt [view]
  • +
  • Minor performance improvement sorting directories [view]
  • +
  • Minor update to the installation instructions [view]
  • +
  • Missing semicolon in navtree.css [view]
  • +
  • Modified (readability) layout for member title in HTML and LaTex [view]
  • +
  • Optimized use of convertNameToFile to improve performance [view]
  • +
  • PDF generation stops when image with caption is included in a table. [view] +, [view]
  • +
  • Parse more than 1 size indiction in defaultHandleTitleAndSize [view]
  • +
  • Problem jumping to line number in source code due to wrong hypertarget name [view]
  • +
  • Python strip code comments [view]
  • +
  • Reimplemented node renumbering for dot graph to improve performance [view]
  • +
  • Remove unused variables [view] +, [view]
  • +
  • Removed ambiguity in the XML schema definition [view]
  • +
  • Revert #291 [view]
  • +
  • Simplified code of fix for Bug 5982 [view]
  • +
  • Sorting in latex index and missing \@ in index [view]
  • +
  • Split apt-get install commands in travis config in an attempt to reduce timeouts [view]
  • +
  • Style fixes and added numbering to overloaded members [view]
  • +
  • Table of contents breaks when documentation spans multiple comment blocks with same @page [view]
  • +
  • Unified display of enum values across output formats and languages [view]
  • +
  • Unify handling of extra packages in formula.cpp and latexgen.cpp so formula.cpp handles package arguments correctly [view]
  • +
  • Update LICENSE file to latest from FSF [view]
  • +
  • Update copyright year in docs [view]
  • +
  • Updated README.md to include code docs [view]
  • +
  • Updated stylesheet for the manual to fix layout issue in the navigation tree [view]
  • +
  • Warnings from CLANG compiler [view]
  • +
  • fix ninja build error [view]
  • +
  • fixed rtf subsection [view]
  • +
  • mangen.h: remove italic in brief member descriptions [view]
  • +
  • reimplemented removeRedundantWhiteSpace() to improve performance [view]
  • +
  • sqlite3gen: defnname -> defname [view]
  • +
  • sqlite3gen: export proper memberdef refid [view]
  • +
  • sqlite3gen: insert xrefs using integer refids [view]
  • +
  • sqlite3gen: stripFromPath on all calls to insertFile [view]
  • +
  • sqlite3gen: stripWhitespace on bitfield's text [view]
  • +
  • sqlite3gen: sync with xmlgen [view]
  • +
  • sqlite3gen: use the refid stored in the refids table [view]

\endhtmlonly @@ -359,153 +760,153 @@

    -
  • Bug 149792 - Mainpage title has wrong style in RTF [view and [view]
  • -
  • Bug 333106 - $line param [view]
  • -
  • Bug 361814 - python: tuple assignment not recognized as variable initialization [view]
  • -
  • Bug 485701 - Fixes angle brackets (< and >) not escaped in HTML formula alt text [view]
  • -
  • Bug 578720 - [Python] Add pyw as a valid extension [view]
  • -
  • Bug 593642 - Python: STRIP_CODE_COMMENTS Doesn't work within the source code [view]
  • -
  • Bug 595186 - Python ignores \private tag [view]
  • -
  • Bug 606104 - Deprecated list: Wrong prefix '<globalScope>::' for global functions [view]
  • -
  • Bug 629249 - Incorrect "References" and "Referenced by" [view]
  • -
  • Bug 641036 - python script with #!/usr/bin/python are not documented correctly [view]
  • -
  • Bug 646002 - htmlonly content appears in generated XML output [view] and [view]
  • -
  • Bug 648865 - PYTHON: stops processing the file after encountering \"""" [view]
  • -
  • Bug 661814 - writeMemberNavIndex template calls static fixSpaces [view]
  • -
  • Bug 682373 - Math does not work in LaTeX with custom header and footer. [view]
  • -
  • Bug 731509 - Markdown backticks not processed within Markdown links. [view]
  • -
  • Bug 732356 - doxygen's \param command is confused by some python default values [view]
  • -
  • Bug 735152 - Python: Allow undocumented "cls" parameter for class methods [view]
  • -
  • Bug 742715 - Unnamed structs gives: QGDict::hashAsciiKey: Invalid null key [view]
  • -
  • Bug 744938 - PATCH: add option to build latex without timestamps [view]
  • -
  • Bug 745659 - The table in classes.html has no class attribute [view]
  • -
  • Bug 746162 - formulas creating invalid HTML code [view]
  • -
  • Bug 746361 - Doxygen thinks C++ class is Objective-C [view]
  • -
  • Bug 751300 - Doxygen don't support longer key in bibtex [view]
  • -
  • Bug 751321 - \cite still rejects valid BibTeX keys [view]
  • -
  • Bug 751755 - using plantuml cause a popup "openwith" windows when calling java.exe [view]
  • -
  • Bug 751984 - PATCH: Honour SOURCE_DATE_EPOCH environment variable for reproducible output [view]
  • -
  • Bug 752657 - XML not documenting a class in python [view]
  • -
  • Bug 752658 - XML empty <argsstring/> in python [view]
  • -
  • Bug 752712 - last entry missing in a @name group of typedefs [view]
  • -
  • Bug 752845 - Non-alphanumeric characters in Markdown links don't work properly [view]
  • -
  • Bug 753500 - $file when using @name is wrong [view]
  • -
  • Bug 753909 - Copy and paste of code fragment from CHM merges all pasted text into single line [view]
  • -
  • Bug 754130 - class="current" not applied to <li> for module tab within 'group__*.html' module html files [view]
  • -
  • Bug 754184 - \bug paragraph doesn't end with a new sectioning command [view]
  • -
  • Bug 754606 - Double anchors when using groups [view]
  • -
  • Bug 755080 - xrefitem link to list incorrect when using SHORT_NAMES [view]
  • -
  • Bug 755293 - Tree view pane overlaps with content tabs [view]
  • -
  • Bug 755783 - RTF output has incomplete "References" and "Referenced by" sections [view]
  • -
  • Bug 755786 - fatal: Cannot open 'graph_legend': No such file or directory [view]
  • -
  • Bug 755939 - Warning refers to incorrect line for undocumented member function (C++) [view]
  • -
  • Bug 756241 - Race condition in parallel DOT runs [view]
  • -
  • Bug 756604 - Unable to prevent a numbered list [view] and [view]
  • -
  • Bug 756724 - Inline markdown links don't support reference targets that contain ) [view]
  • -
  • Bug 757300 - Failed to document nested classes with "reference to array" parameters [view]
  • -
  • Bug 757621 - unclosed tag, c# generics method with where [view]
  • -
  • Bug 757812 - Doxygen do not support comparison angle bracket in template [view]
  • -
  • Bug 758132 - Brief description of non documented functions [view] and [view]
  • -
  • Bug 758495 - Bug in VHDL parser + other fixes [view]
  • -
  • Bug 758900 - C++ templated member-function appears both as public and private [view]
  • -
  • Bug 759177 - Markdown fenced code blocks not parsed properly in comment [view]
  • -
  • Bug 759247 - C++11 unified initializer for array with templates treated as function [view]
  • -
  • Bug 759281 - Doxygen parser confused by C++11 attributes [view]
  • -
  • Bug 759381 - unable to @ref or @link C++ templated operator overloads [view]
  • -
  • Bug 759622 - problems with charset using plantuml [view]
  • -
  • Actually using value of GROUP_NESTED_COMPOUNDS option [view]
  • -
  • Add RPM build for Red Hat [view]
  • -
  • Add WARN_AS_ERROR option to stop execution at first warning (equivalent of compilers' -Werror option) [view]
  • -
  • Add examples to LaTeX / PDF doxygen manual [view and [view]
  • -
  • Add mathjax support to template & context. [view]
  • -
  • Add support for "value" attribute in FORTRAN scanner [view]
  • -
  • Added documentation for creating tables [view]
  • -
  • Added javascript search engine data to the template context [view]
  • -
  • Added missing html resources to the html template file [view]
  • -
  • Added missing information to template version of the all members list [view]
  • -
  • Added support for directory dependency graphs to template engine [view]
  • -
  • Adding compilation options for flex/lex and bison/yacc [view]
  • -
  • Adjusted used option for CLANG usage with CMake in documentation [view]
  • -
  • Alignment in LaTeX parameter table [view]
  • -
  • Avoid using Resource::data as string, as it is not null terminated. [view]
  • -
  • Better handling of implicit statement in source code browser [view]
  • -
  • Bug 149792 - Mainpage title has wrong style in RTF [view]
  • -
  • Bump version so that the GIT repo represents the version for the "next" release [view]
  • -
  • Cmake tries to remove directory refman.tex instead of file refman.tex [view]
  • -
  • Copy user EXTRA_FILES at the end to overrule files generated by default by doxygen [view]
  • -
  • Correct / set types for python variables [view]
  • -
  • Correcting print format error in config.l [view]
  • -
  • DO NOT hardcode x86-64 architecture. [view]
  • -
  • Don't show a console when launching doxywizard on Windows. [view]
  • -
  • Fix computeCommonDirPrefix sometimes not finding the correct prefix [view]
  • -
  • Fix error documentation of in flex debug script [view]
  • -
  • Fix for broken link in the manual [view]
  • -
  • Fix hexChar for inputs 0 <= i < 10 [view and [view]
  • -
  • Fix spelling in doc/commands.doc (descriptionm) [view]
  • -
  • Fix typo in function name [view and [view]
  • -
  • Fixed a couple of small memory leaks [view]
  • -
  • Fixed a number of memory leaks in the template engine [view]
  • -
  • Fixed compiler warning for MacOSX [view]
  • -
  • Fixed link issue for MacOSX 10.11 [view]
  • -
  • Fixed minor typos in comments [view]
  • -
  • Fixed preprocessor macros for flex version check [view]
  • -
  • Fixed problem with latex and PDF bookmarks [view]
  • -
  • Fixed various issues found by PVS-Studio. [view]
  • -
  • Fixes bug 485701: Angle brackets (< and >) not escaped in HTML formula alt text [view]
  • -
  • Fixes to support nested tables again [view]
  • -
  • Fortran module private variables and EXTRACT_PRIVATE = NO [view and view]
  • -
  • Improved handling of <caption> in tables for LaTeX output. [view]
  • -
  • IncludeInfo class had uninitialized member variable [view]
  • -
  • Made paragraph spacing more flexible in the LaTeX output to prevent page overflows [view]
  • -
  • Made several improvements to the performance of template engine [view]
  • -
  • Make doxywizard compatible with Qt5 [view]
  • -
  • Make list of default extensions consistent with language mapping list [view]
  • -
  • Markdown with @cond and @endcond [view]
  • -
  • Markdown with @cond and @endcond [view]
  • -
  • Merge remote-tracking branch 'upstream/master' [view]
  • -
  • Minor change to pycode.l:codifyLines [view]
  • -
  • Moved creation of inline class documentation to separate template file [view]
  • -
  • RTF improvement: Example section was merged with next function title [view]
  • -
  • Remove obsolete py files [view]
  • -
  • Removed BOM marker from greek translator to avoid Visual C warnings [view]
  • -
  • Repaired breaking @include for LaTeX output [view]
  • -
  • Revert "Spelling correction for error message with USE_HTAGS usage" [view]
  • -
  • Revert using container-based infra as sudo is needed :-( [view]
  • -
  • Reverted change that caused doxygen to return error code 2 when it produced a warning [view]
  • -
  • Rework the generation of packages DEB/RPM/... (CPack) [view]
  • -
  • Right alignment of in page table of contents [view]
  • -
  • Small correction of errors in case of CSharp XML tags [view]
  • -
  • Small documentation corrections [view]
  • -
  • Spelling correction for error message with USE_HTAGS usage [view] and [view]
  • -
  • Started with generating LaTeX output via the template engine [view]
  • -
  • Stop when doxygen configuration file ("Doxyfile") cannot be read [view]
  • -
  • Support flex-2.6.0 [view] and [view]
  • -
  • Support set in code highlighting [view]
  • -
  • Template enhancements and various other small fixes [view]
  • -
  • Title in case of USE_MDFILE_AS_MAINPAGE [view]
  • -
  • Tooltip can still contain < and > signs [view]
  • -
  • Tweaked the htmlonly sections in the manual so it produces valid HTML output [view]
  • -
  • Undo _doxygen to libdoxygen target change [view]
  • -
  • Updated instructions to toggle debugging flex code [view]
  • -
  • Updated Italian translation and translator email address [view]
  • -
  • Updated the Greek translation [view]
  • -
  • Use CPack to generate rpm/deb packages [view]
  • -
  • Use STATIC libraries to prevent them being shared [view]
  • -
  • Using tabu package for LaTeX tables [view]
  • -
  • [Bug 755225] On Windows, generated layout is with UNIX EOL [view]
  • -
  • [Doxygen-users] plugin / filter not behaving as expected [view]
  • -
  • add spaces like "Doyxgen"CN_SPC->"Doyxgen" CN_SPC [view]
  • -
  • allow building with custom iconv on Windows [view]
  • -
  • doc: generate doxygen's documentation. [view]
  • -
  • doc: put man pages under share/man/man1 [view]
  • -
  • docparser: warn when finding a documented empty return type [view]
  • -
  • docs: add examples as a dependency of docs [view]
  • -
  • doxyapp and CLANG linking [view]
  • -
  • fixed for travis ci config file [view]
  • -
  • libpng warning: iCCP: known incorrect sRGB profile [view]
  • -
  • rename build target _doxygen to libdoxygen [view]
  • -
  • run_translator.cmake is no longer used [view]
  • -
  • runtests: Simplify dictionary usage [view]
  • +
  • Bug 1204 - Mainpage title has wrong style in RTF [view and [view]
  • +
  • Bug 2059 - $line param [view]
  • +
  • Bug 2258 - python: tuple assignment not recognized as variable initialization [view]
  • +
  • Bug 2653 - Fixes angle brackets (< and >) not escaped in HTML formula alt text [view]
  • +
  • Bug 3354 - [Python] Add pyw as a valid extension [view]
  • +
  • Bug 3499 - Python: STRIP_CODE_COMMENTS Doesn't work within the source code [view]
  • +
  • Bug 3515 - Python ignores \private tag [view]
  • +
  • Bug 3621 - Deprecated list: Wrong prefix '<globalScope>::' for global functions [view]
  • +
  • Bug 3935 - Incorrect "References" and "Referenced by" [view]
  • +
  • Bug 4129 - python script with #!/usr/bin/python are not documented correctly [view]
  • +
  • Bug 4214 - htmlonly content appears in generated XML output [view] and [view]
  • +
  • Bug 4249 - PYTHON: stops processing the file after encountering \"""" [view]
  • +
  • Bug 4433 - writeMemberNavIndex template calls static fixSpaces [view]
  • +
  • Bug 4856 - Math does not work in LaTeX with custom header and footer. [view]
  • +
  • Bug 5503 - Markdown backticks not processed within Markdown links. [view]
  • +
  • Bug 5510 - doxygen's \param command is confused by some python default values [view]
  • +
  • Bug 5556 - Python: Allow undocumented "cls" parameter for class methods [view]
  • +
  • Bug 5715 - Unnamed structs gives: QGDict::hashAsciiKey: Invalid null key [view]
  • +
  • Bug 5747 - PATCH: add option to build latex without timestamps [view]
  • +
  • Bug 5755 - The table in classes.html has no class attribute [view]
  • +
  • Bug 5760 - formulas creating invalid HTML code [view]
  • +
  • Bug 5763 - Doxygen thinks C++ class is Objective-C [view]
  • +
  • Bug 5808 - Doxygen don't support longer key in bibtex [view]
  • +
  • Bug 5809 - \cite still rejects valid BibTeX keys [view]
  • +
  • Bug 5821 - using plantuml cause a popup "openwith" windows when calling java.exe [view]
  • +
  • Bug 5826 - PATCH: Honour SOURCE_DATE_EPOCH environment variable for reproducible output [view]
  • +
  • Bug 5830 - XML not documenting a class in python [view]
  • +
  • Bug 5831 - XML empty <argsstring/> in python [view]
  • +
  • Bug 5832 - last entry missing in a @name group of typedefs [view]
  • +
  • Bug 5833 - Non-alphanumeric characters in Markdown links don't work properly [view]
  • +
  • Bug 5839 - $file when using @name is wrong [view]
  • +
  • Bug 5845 - Copy and paste of code fragment from CHM merges all pasted text into single line [view]
  • +
  • Bug 5847 - class="current" not applied to <li> for module tab within 'group__*.html' module html files [view]
  • +
  • Bug 5848 - \bug paragraph doesn't end with a new sectioning command [view]
  • +
  • Bug 5859 - Double anchors when using groups [view]
  • +
  • Bug 5869 - xrefitem link to list incorrect when using SHORT_NAMES [view]
  • +
  • Bug 5873 - Tree view pane overlaps with content tabs [view]
  • +
  • Bug 5877 - RTF output has incomplete "References" and "Referenced by" sections [view]
  • +
  • Bug 5878 - fatal: Cannot open 'graph_legend': No such file or directory [view]
  • +
  • Bug 5879 - Warning refers to incorrect line for undocumented member function (C++) [view]
  • +
  • Bug 5883 - Race condition in parallel DOT runs [view]
  • +
  • Bug 5885 - Unable to prevent a numbered list [view] and [view]
  • +
  • Bug 5888 - Inline markdown links don't support reference targets that contain ) [view]
  • +
  • Bug 5890 - Failed to document nested classes with "reference to array" parameters [view]
  • +
  • Bug 5893 - unclosed tag, c# generics method with where [view]
  • +
  • Bug 5894 - Doxygen do not support comparison angle bracket in template [view]
  • +
  • Bug 5897 - Brief description of non documented functions [view] and [view]
  • +
  • Bug 5898 - Bug in VHDL parser + other fixes [view]
  • +
  • Bug 5900 - C++ templated member-function appears both as public and private [view]
  • +
  • Bug 5904 - Markdown fenced code blocks not parsed properly in comment [view]
  • +
  • Bug 5910 - C++11 unified initializer for array with templates treated as function [view]
  • +
  • Bug 5913 - Doxygen parser confused by C++11 attributes [view]
  • +
  • Bug 5916 - unable to @ref or @link C++ templated operator overloads [view]
  • +
  • Bug 5919 - problems with charset using plantuml [view]
  • +
  • Actually using value of GROUP_NESTED_COMPOUNDS option [view]
  • +
  • Add RPM build for Red Hat [view]
  • +
  • Add WARN_AS_ERROR option to stop execution at first warning (equivalent of compilers' -Werror option) [view]
  • +
  • Add examples to LaTeX / PDF doxygen manual [view and [view]
  • +
  • Add mathjax support to template & context. [view]
  • +
  • Add support for "value" attribute in FORTRAN scanner [view]
  • +
  • Added documentation for creating tables [view]
  • +
  • Added javascript search engine data to the template context [view]
  • +
  • Added missing html resources to the html template file [view]
  • +
  • Added missing information to template version of the all members list [view]
  • +
  • Added support for directory dependency graphs to template engine [view]
  • +
  • Adding compilation options for flex/lex and bison/yacc [view]
  • +
  • Adjusted used option for CLANG usage with CMake in documentation [view]
  • +
  • Alignment in LaTeX parameter table [view]
  • +
  • Avoid using Resource::data as string, as it is not null terminated. [view]
  • +
  • Better handling of implicit statement in source code browser [view]
  • +
  • Bug 149792 - Mainpage title has wrong style in RTF [view]
  • +
  • Bump version so that the GIT repo represents the version for the "next" release [view]
  • +
  • Cmake tries to remove directory refman.tex instead of file refman.tex [view]
  • +
  • Copy user EXTRA_FILES at the end to overrule files generated by default by doxygen [view]
  • +
  • Correct / set types for python variables [view]
  • +
  • Correcting print format error in config.l [view]
  • +
  • DO NOT hardcode x86-64 architecture. [view]
  • +
  • Don't show a console when launching doxywizard on Windows. [view]
  • +
  • Fix computeCommonDirPrefix sometimes not finding the correct prefix [view]
  • +
  • Fix error documentation of in flex debug script [view]
  • +
  • Fix for broken link in the manual [view]
  • +
  • Fix hexChar for inputs 0 <= i < 10 [view and [view]
  • +
  • Fix spelling in doc/commands.doc (descriptionm) [view]
  • +
  • Fix typo in function name [view and [view]
  • +
  • Fixed a couple of small memory leaks [view]
  • +
  • Fixed a number of memory leaks in the template engine [view]
  • +
  • Fixed compiler warning for MacOSX [view]
  • +
  • Fixed link issue for MacOSX 10.11 [view]
  • +
  • Fixed minor typos in comments [view]
  • +
  • Fixed preprocessor macros for flex version check [view]
  • +
  • Fixed problem with latex and PDF bookmarks [view]
  • +
  • Fixed various issues found by PVS-Studio. [view]
  • +
  • Fixes bug 485701: Angle brackets (< and >) not escaped in HTML formula alt text [view]
  • +
  • Fixes to support nested tables again [view]
  • +
  • Fortran module private variables and EXTRACT_PRIVATE = NO [view and view]
  • +
  • Improved handling of <caption> in tables for LaTeX output. [view]
  • +
  • IncludeInfo class had uninitialized member variable [view]
  • +
  • Made paragraph spacing more flexible in the LaTeX output to prevent page overflows [view]
  • +
  • Made several improvements to the performance of template engine [view]
  • +
  • Make doxywizard compatible with Qt5 [view]
  • +
  • Make list of default extensions consistent with language mapping list [view]
  • +
  • Markdown with @cond and @endcond [view]
  • +
  • Markdown with @cond and @endcond [view]
  • +
  • Merge remote-tracking branch 'upstream/master' [view]
  • +
  • Minor change to pycode.l:codifyLines [view]
  • +
  • Moved creation of inline class documentation to separate template file [view]
  • +
  • RTF improvement: Example section was merged with next function title [view]
  • +
  • Remove obsolete py files [view]
  • +
  • Removed BOM marker from greek translator to avoid Visual C warnings [view]
  • +
  • Repaired breaking @include for LaTeX output [view]
  • +
  • Revert "Spelling correction for error message with USE_HTAGS usage" [view]
  • +
  • Revert using container-based infra as sudo is needed :-( [view]
  • +
  • Reverted change that caused doxygen to return error code 2 when it produced a warning [view]
  • +
  • Rework the generation of packages DEB/RPM/... (CPack) [view]
  • +
  • Right alignment of in page table of contents [view]
  • +
  • Small correction of errors in case of CSharp XML tags [view]
  • +
  • Small documentation corrections [view]
  • +
  • Spelling correction for error message with USE_HTAGS usage [view] and [view]
  • +
  • Started with generating LaTeX output via the template engine [view]
  • +
  • Stop when doxygen configuration file ("Doxyfile") cannot be read [view]
  • +
  • Support flex-2.6.0 [view] and [view]
  • +
  • Support set in code highlighting [view]
  • +
  • Template enhancements and various other small fixes [view]
  • +
  • Title in case of USE_MDFILE_AS_MAINPAGE [view]
  • +
  • Tooltip can still contain < and > signs [view]
  • +
  • Tweaked the htmlonly sections in the manual so it produces valid HTML output [view]
  • +
  • Undo _doxygen to libdoxygen target change [view]
  • +
  • Updated instructions to toggle debugging flex code [view]
  • +
  • Updated Italian translation and translator email address [view]
  • +
  • Updated the Greek translation [view]
  • +
  • Use CPack to generate rpm/deb packages [view]
  • +
  • Use STATIC libraries to prevent them being shared [view]
  • +
  • Using tabu package for LaTeX tables [view]
  • +
  • [Bug 5872] On Windows, generated layout is with UNIX EOL [view]
  • +
  • [Doxygen-users] plugin / filter not behaving as expected [view]
  • +
  • add spaces like "Doyxgen"CN_SPC->"Doyxgen" CN_SPC [view]
  • +
  • allow building with custom iconv on Windows [view]
  • +
  • doc: generate doxygen's documentation. [view]
  • +
  • doc: put man pages under share/man/man1 [view]
  • +
  • docparser: warn when finding a documented empty return type [view]
  • +
  • docs: add examples as a dependency of docs [view]
  • +
  • doxyapp and CLANG linking [view]
  • +
  • fixed for travis ci config file [view]
  • +
  • libpng warning: iCCP: known incorrect sRGB profile [view]
  • +
  • rename build target _doxygen to libdoxygen [view]
  • +
  • run_translator.cmake is no longer used [view]
  • +
  • runtests: Simplify dictionary usage [view]

\endhtmlonly @@ -516,150 +917,150 @@

    -
  • change the build system to use cmake [view], -[view], -[view], -[view], -[view], -[view], -[view], -[view]
  • -
  • Add support for basic XML syntax highlighting. [view]
  • -
  • Added documentation for ``` style fenced code block and more robust parsing [view]
  • -
  • Added function arguments to the LaTeX toc [view]
  • -
  • Added missing files and build instructions [view]
  • -
  • Added missing libraries for building doxysearch on Windows [view]
  • -
  • Added support for language codes [view]
  • -
  • Added type constraint relations for Java generics to dot graphs and XML output [view]
  • -
  • Adding commands \hidecallgraph and \hidecallergraph [view]
  • -
  • Adjust test script for longer version number [view]
  • -
  • Adjusted version in configure script [view]
  • -
  • Alignment of project name [view]
  • -
  • Allow selection of specific translators to compile in at build time [view]
  • -
  • Based on the report of Peter D. Barnes in the doxygen forum (http://doxygen.10944.n7.nabble.com/doxygen-1-8-9-1-upgrade-errors-td6990.html) [view]
  • -
  • Better error message in case of IDL inconsistency [view]
  • -
  • Bug 659590 - EXTRA_PACKAGES can't handle package options [view], -[view]
  • -
  • Bug 739680 - Using HTML entities in PROJECT_NAME [view]
  • -
  • Bug 742095 - Missing documentation after nested C++11 unified initializer [view]
  • -
  • Bug 742151 - Bogus warning: citelist: Unexpected new line character [view]
  • -
  • Bug 742230 - @todo paragraphs incorrectly placed in rtf output [view]
  • -
  • Bug 742235 - Bogus message with addtogroup [view]
  • -
  • Bug 742408 - Configuring doxyfile to only output docbook produces erroneous warning [view]
  • -
  • Bug 742427 - latex compilation: \backmatter incompatible with COMPACT_LATEX=YES [view]
  • -
  • Bug 742445 - Wrong icons in TOC of CHM help [view]
  • -
  • Bug 742899 - <CAPTION> inside <TABLE> no longer works for LaTex output [view]
  • -
  • Bug 743604 - Duplicate anchors from tagfiles [view]
  • -
  • Bug 743605 - Tagfile anchors not generated for enumeration values [view]
  • -
  • Bug 743675 - Non-ascii characters are not emphasised [view]
  • -
  • Bug 744762 - Using TAGFILES prevents symbol extraction [view]
  • -
  • Bug 745439 - PATCH: please consider making doxygen output byte for byte identical between individual runs by default [view]
  • -
  • Bug 745481 - Doxygen generates bad "More..." file links for functions within a namespace [view]
  • -
  • Bug 745870 - [PATCH] QT4's qmake is titled differently on Fedora 21 [view], -[view]
  • -
  • Bug 746226 - last enum member not documented [view]
  • -
  • Bug 746417 - Nested list in C# XML comments closes outer list prematurely [view], -[view]
  • -
  • Bug 746614 - Bogus warning regarding nested comments [view]
  • -
  • Bug 746619 - Bogus warnings in case of anonymous namespace and @todo [view]
  • -
  • Bug 746734 - Don't warn about missing documentation for deleted functions. [view], -[view]
  • -
  • Bug 747111 - Table of content incorrect with escaped symbols [view]
  • -
  • Bug 747780 - man output should escape minus signs [view]
  • -
  • Bug 748208 - Bug #313527 regression - Enum in bitfield is not parsed properly. [view], -[view]
  • -
  • Bug 750016 - FILE_PATTERNS ignores arbitrary extensions [view]
  • -
  • Bug 751455 - class scoped enum documentation appearing at group level instead of class level [view]
  • -
  • Build fixes for windows build [view]
  • -
  • Bump copyright year [view]
  • -
  • Bump version in configure script [view]
  • -
  • Cleanup & adapt travis config [view]
  • -
  • Consistency in handling HTML and LaTeX in respect to header and footer [view]
  • -
  • Correct string buffer sizes for RTF output, such that the string is always correctly sized. [view]
  • -
  • Crash in case of non generic interface in Fortran [view]
  • -
  • Documentation HTML Header, Footer, and Stylesheet changes [view], [view]
  • -
  • Documenting RESULT variable of Fortran FUNCTION [view], [view]
  • -
  • Doxygen LaTeX / PDF links point to page 1 [view]
  • -
  • Enable relative paths referenced source files [view]
  • -
  • Escape "@" in names as it is not allowed in XML / Docbook names (coming from anon namespaces) [view]
  • -
  • Fix for bug 746673. [view]
  • -
  • Fix for building diagram example conditionally [view]
  • -
  • Fix for issue 744670 [view]
  • -
  • Fix for issue 744671 [view]
  • -
  • Fix for rendering the template parameters of members of variadic template classes. [view]
  • -
  • Fix missing brief documentation for overload and specialization functions [view]
  • -
  • Fix nesting of XML tag "literallayout" for docbook output of enums. [view]
  • -
  • Fix parsing of ODL-style properties [view]
  • -
  • Fix potential null pointer dereference in src/classdef.cpp [view]
  • -
  • Fix potential null pointer dereference in src/context.cpp [view]
  • -
  • Fixed a couple of cases where sharing string data could lead to corruption [view]
  • -
  • Fixed code reachability bug found by coverity in translator_fi.h [view]
  • -
  • Fixed compilation issue on Windows [view]
  • -
  • Fixed issue accessing uninitialized buffer under certain conditions. [view]
  • -
  • Fixed potential crash while generating dot graphs [view]
  • -
  • Fixed potential string buffer issue for dot graphs [view]
  • -
  • Fixed regression due to buffer resizing while generating RTF. [view]
  • -
  • Fixed regression in argument processing [view]
  • -
  • Fixed type in printdocvisitor.h [view]
  • -
  • Fixed typos in comments. [view]
  • -
  • Fixes for showing type constraint relations [view]
  • -
  • Fortran FUNCTION source code [view], [view]
  • -
  • Fortran: code color GOTO as flow keyword. [view]
  • -
  • Fortran: fixed format position 73 and further is comment [view], [view]
  • -
  • Fortran: warning message about not documented module member [view]
  • -
  • Guarded debug prints against printing a NULL pointer. [view]
  • -
  • HTML entity &deg; gives problems in LaTeX [view]
  • -
  • Help message regarding layout file [view],[view]
  • -
  • Internal debug option -d lex is not described [view], [view]
  • -
  • Internal doxygen docs gives: warning: Unsupported xml/html tag <...> found [view]
  • -
  • Missing cross reference link [view]
  • -
  • Patch fixing a typo in Pull Request 307 [view], [view]
  • -
  • Prevent example.tag from being regenerated [view]
  • -
  • Problem running tests under Windows [view]
  • -
  • Remove the new line after @startuml in generated pu file [view]
  • -
  • Remove unreachable code [view]
  • -
  • Remove unused local and static global variables [view]
  • -
  • Remove wrong </File> [view], [view]
  • -
  • Removed OS version check for MACOSX (was not used anywhere) [view]
  • -
  • Removed dbus XML parser, various refinements [view], [view]
  • -
  • Removed old build files, added install targets and other options [view]
  • -
  • Repair doxygen generate invalid styleSheetFile and extensionsFile of RTF [view]
  • -
  • Replace to_c_cmd by resource compiler [view]
  • -
  • Restore deleted file [view]
  • -
  • Showing grey/gray in documentation [view]
  • -
  • Suggestion to use stripPrefix has been implemented for RESULT. For consistency also implemented for arguments. [view], [view]
  • -
  • Support diff that returns "No differences encountered" when comparing test results [view]
  • -
  • Support generating index-color PNG files [view]
  • -
  • Switched back to version 6.2 of JavaCC for VHDL parser generation. [view]
  • -
  • Tcl: fix for extra line breaks in source browser introduced by commit 312bef5 [view]
  • -
  • TranslatorSwedish updated [view]
  • -
  • Update of search from "endless search to 'Character search: criterion. [view]
  • -
  • Update translator_cn.h [view]
  • -
  • Updated changelog for 1.8.9.1 [view]
  • -
  • Updated installation section of the manual [view]
  • -
  • Various VHDL related fixes [view], -[view], -[view]
  • -
  • Various minor changes [view]
  • -
  • Warning message multiple mainpages [view]
  • -
  • Warnings without filename [view]
  • -
  • add support for github flavored fenced code blocks [view]
  • -
  • added HHC.exe own output to the debug output when extcmd flag enabled [view]
  • -
  • doc/translator.py -- minor updates [view]
  • -
  • drop #include <unistd.h> [view]
  • -
  • fix *.l for three backticks [view]
  • -
  • fix enum brief description in RTF output [view]
  • -
  • fix for CHM TOC "Classes" entry to point to annotated file [view]
  • -
  • fix for src/translator_tw.h by Gary Lee (translation cleaned) [view]
  • -
  • increase the size of l when result is modified [view]
  • -
  • move layout_default.xml to templates/html/ [view]
  • -
  • runtests.pl: mmn version has dash as separator [view]
  • -
  • specify that doxygen searches files in INPUT tag [view]
  • -
  • sqlite3: add regexp searches to search.py [view]
  • -
  • sqlite3: add schema comments [view]
  • -
  • sqlite3: fix constness [view]
  • -
  • version.py pass configure file path as parameter [view]
  • -
  • xml: use STRIP_FROM_PATH on @file attributes. [view], [view]
  • +
  • change the build system to use cmake [view], +[view], +[view], +[view], +[view], +[view], +[view], +[view]
  • +
  • Add support for basic XML syntax highlighting. [view]
  • +
  • Added documentation for ``` style fenced code block and more robust parsing [view]
  • +
  • Added function arguments to the LaTeX toc [view]
  • +
  • Added missing files and build instructions [view]
  • +
  • Added missing libraries for building doxysearch on Windows [view]
  • +
  • Added support for language codes [view]
  • +
  • Added type constraint relations for Java generics to dot graphs and XML output [view]
  • +
  • Adding commands \hidecallgraph and \hidecallergraph [view]
  • +
  • Adjust test script for longer version number [view]
  • +
  • Adjusted version in configure script [view]
  • +
  • Alignment of project name [view]
  • +
  • Allow selection of specific translators to compile in at build time [view]
  • +
  • Based on the report of Peter D. Barnes in the doxygen forum (http://doxygen.10944.n7.nabble.com/doxygen-1-8-9-1-upgrade-errors-td6990.html) [view]
  • +
  • Better error message in case of IDL inconsistency [view]
  • +
  • Bug 4415 - EXTRA_PACKAGES can't handle package options [view], +[view]
  • +
  • Bug 5673 - Using HTML entities in PROJECT_NAME [view]
  • +
  • Bug 5697 - Missing documentation after nested C++11 unified initializer [view]
  • +
  • Bug 5698 - Bogus warning: citelist: Unexpected new line character [view]
  • +
  • Bug 5704 - @todo paragraphs incorrectly placed in rtf output [view]
  • +
  • Bug 5705 - Bogus message with addtogroup [view]
  • +
  • Bug 5707 - Configuring doxyfile to only output docbook produces erroneous warning [view]
  • +
  • Bug 5709 - latex compilation: \backmatter incompatible with COMPACT_LATEX=YES [view]
  • +
  • Bug 5710 - Wrong icons in TOC of CHM help [view]
  • +
  • Bug 5720 - <CAPTION> inside <TABLE> no longer works for LaTex output [view]
  • +
  • Bug 5726 - Duplicate anchors from tagfiles [view]
  • +
  • Bug 5727 - Tagfile anchors not generated for enumeration values [view]
  • +
  • Bug 5728 - Non-ascii characters are not emphasised [view]
  • +
  • Bug 5744 - Using TAGFILES prevents symbol extraction [view]
  • +
  • Bug 5753 - PATCH: please consider making doxygen output byte for byte identical between individual runs by default [view]
  • +
  • Bug 5754 - Doxygen generates bad "More..." file links for functions within a namespace [view]
  • +
  • Bug 5756 - [PATCH] QT4's qmake is titled differently on Fedora 21 [view], +[view]
  • +
  • Bug 5761 - last enum member not documented [view]
  • +
  • Bug 5764 - Nested list in C# XML comments closes outer list prematurely [view], +[view]
  • +
  • Bug 5768 - Bogus warning regarding nested comments [view]
  • +
  • Bug 5769 - Bogus warnings in case of anonymous namespace and @todo [view]
  • +
  • Bug 5772 - Don't warn about missing documentation for deleted functions. [view], +[view]
  • +
  • Bug 5774 - Table of content incorrect with escaped symbols [view]
  • +
  • Bug 5777 - man output should escape minus signs [view]
  • +
  • Bug 5779 - Bug #313527 regression - Enum in bitfield is not parsed properly. [view], +[view]
  • +
  • Bug 5793 - FILE_PATTERNS ignores arbitrary extensions [view]
  • +
  • Bug 5814 - class scoped enum documentation appearing at group level instead of class level [view]
  • +
  • Build fixes for windows build [view]
  • +
  • Bump copyright year [view]
  • +
  • Bump version in configure script [view]
  • +
  • Cleanup & adapt travis config [view]
  • +
  • Consistency in handling HTML and LaTeX in respect to header and footer [view]
  • +
  • Correct string buffer sizes for RTF output, such that the string is always correctly sized. [view]
  • +
  • Crash in case of non generic interface in Fortran [view]
  • +
  • Documentation HTML Header, Footer, and Stylesheet changes [view], [view]
  • +
  • Documenting RESULT variable of Fortran FUNCTION [view], [view]
  • +
  • Doxygen LaTeX / PDF links point to page 1 [view]
  • +
  • Enable relative paths referenced source files [view]
  • +
  • Escape "@" in names as it is not allowed in XML / Docbook names (coming from anon namespaces) [view]
  • +
  • Fix for bug 746673. [view]
  • +
  • Fix for building diagram example conditionally [view]
  • +
  • Fix for issue 744670 [view]
  • +
  • Fix for issue 744671 [view]
  • +
  • Fix for rendering the template parameters of members of variadic template classes. [view]
  • +
  • Fix missing brief documentation for overload and specialization functions [view]
  • +
  • Fix nesting of XML tag "literallayout" for docbook output of enums. [view]
  • +
  • Fix parsing of ODL-style properties [view]
  • +
  • Fix potential null pointer dereference in src/classdef.cpp [view]
  • +
  • Fix potential null pointer dereference in src/context.cpp [view]
  • +
  • Fixed a couple of cases where sharing string data could lead to corruption [view]
  • +
  • Fixed code reachability bug found by coverity in translator_fi.h [view]
  • +
  • Fixed compilation issue on Windows [view]
  • +
  • Fixed issue accessing uninitialized buffer under certain conditions. [view]
  • +
  • Fixed potential crash while generating dot graphs [view]
  • +
  • Fixed potential string buffer issue for dot graphs [view]
  • +
  • Fixed regression due to buffer resizing while generating RTF. [view]
  • +
  • Fixed regression in argument processing [view]
  • +
  • Fixed type in printdocvisitor.h [view]
  • +
  • Fixed typos in comments. [view]
  • +
  • Fixes for showing type constraint relations [view]
  • +
  • Fortran FUNCTION source code [view], [view]
  • +
  • Fortran: code color GOTO as flow keyword. [view]
  • +
  • Fortran: fixed format position 73 and further is comment [view], [view]
  • +
  • Fortran: warning message about not documented module member [view]
  • +
  • Guarded debug prints against printing a NULL pointer. [view]
  • +
  • HTML entity &deg; gives problems in LaTeX [view]
  • +
  • Help message regarding layout file [view],[view]
  • +
  • Internal debug option -d lex is not described [view], [view]
  • +
  • Internal doxygen docs gives: warning: Unsupported xml/html tag <...> found [view]
  • +
  • Missing cross reference link [view]
  • +
  • Patch fixing a typo in Pull Request 307 [view], [view]
  • +
  • Prevent example.tag from being regenerated [view]
  • +
  • Problem running tests under Windows [view]
  • +
  • Remove the new line after @startuml in generated pu file [view]
  • +
  • Remove unreachable code [view]
  • +
  • Remove unused local and static global variables [view]
  • +
  • Remove wrong </File> [view], [view]
  • +
  • Removed OS version check for MACOSX (was not used anywhere) [view]
  • +
  • Removed dbus XML parser, various refinements [view], [view]
  • +
  • Removed old build files, added install targets and other options [view]
  • +
  • Repair doxygen generate invalid styleSheetFile and extensionsFile of RTF [view]
  • +
  • Replace to_c_cmd by resource compiler [view]
  • +
  • Restore deleted file [view]
  • +
  • Showing grey/gray in documentation [view]
  • +
  • Suggestion to use stripPrefix has been implemented for RESULT. For consistency also implemented for arguments. [view], [view]
  • +
  • Support diff that returns "No differences encountered" when comparing test results [view]
  • +
  • Support generating index-color PNG files [view]
  • +
  • Switched back to version 6.2 of JavaCC for VHDL parser generation. [view]
  • +
  • Tcl: fix for extra line breaks in source browser introduced by commit 312bef5 [view]
  • +
  • TranslatorSwedish updated [view]
  • +
  • Update of search from "endless search to 'Character search: criterion. [view]
  • +
  • Update translator_cn.h [view]
  • +
  • Updated changelog for 1.8.9.1 [view]
  • +
  • Updated installation section of the manual [view]
  • +
  • Various VHDL related fixes [view], +[view], +[view]
  • +
  • Various minor changes [view]
  • +
  • Warning message multiple mainpages [view]
  • +
  • Warnings without filename [view]
  • +
  • add support for github flavored fenced code blocks [view]
  • +
  • added HHC.exe own output to the debug output when extcmd flag enabled [view]
  • +
  • doc/translator.py -- minor updates [view]
  • +
  • drop #include <unistd.h> [view]
  • +
  • fix *.l for three backticks [view]
  • +
  • fix enum brief description in RTF output [view]
  • +
  • fix for CHM TOC "Classes" entry to point to annotated file [view]
  • +
  • fix for src/translator_tw.h by Gary Lee (translation cleaned) [view]
  • +
  • increase the size of l when result is modified [view]
  • +
  • move layout_default.xml to templates/html/ [view]
  • +
  • runtests.pl: mmn version has dash as separator [view]
  • +
  • specify that doxygen searches files in INPUT tag [view]
  • +
  • sqlite3: add regexp searches to search.py [view]
  • +
  • sqlite3: add schema comments [view]
  • +
  • sqlite3: fix constness [view]
  • +
  • version.py pass configure file path as parameter [view]
  • +
  • xml: use STRIP_FROM_PATH on @file attributes. [view], [view]

\endhtmlonly @@ -670,21 +1071,21 @@

    -
  • Fixed a couple of cases where sharing string data could lead to corruption [view]
  • -
  • Various VHDL related fixes [view]
  • -
  • Bug 742151 - Bogus warning: citelist: Unexpected new line character [view]
  • -
  • Bug 742230 - @todo paragraphs incorrectly placed in rtf output [view]
  • -
  • Bug 742235 - Bogus message with addtogroup [view]
  • -
  • Documentation HTML Header, Footer, and Stylesheet changes [view]
  • -
  • Documenting RESULT variable of Fortran FUNCTION [view]
  • -
  • Fix potential null pointer dereference in src/context.cpp [view]
  • -
  • Fixed compilation issue on Windows [view]
  • -
  • Fortran FUNCTION source code [view]
  • -
  • Fortran: code color GOTO as flow keyword. [view]
  • -
  • Help message regarding layout file [view]
  • -
  • Remove unused local and static global variables [view]
  • -
  • Suggestion to use stripPrefix has been implemented for RESULT. For consistency also implemented for arguments. [view]
  • -
  • Switched back to version 6.2 of JavaCC for VHDL parser generation. [view]
  • +
  • Fixed a couple of cases where sharing string data could lead to corruption [view]
  • +
  • Various VHDL related fixes [view]
  • +
  • Bug 5698 - Bogus warning: citelist: Unexpected new line character [view]
  • +
  • Bug 5704 - @todo paragraphs incorrectly placed in rtf output [view]
  • +
  • Bug 5705 - Bogus message with addtogroup [view]
  • +
  • Documentation HTML Header, Footer, and Stylesheet changes [view]
  • +
  • Documenting RESULT variable of Fortran FUNCTION [view]
  • +
  • Fix potential null pointer dereference in src/context.cpp [view]
  • +
  • Fixed compilation issue on Windows [view]
  • +
  • Fortran FUNCTION source code [view]
  • +
  • Fortran: code color GOTO as flow keyword. [view]
  • +
  • Help message regarding layout file [view]
  • +
  • Remove unused local and static global variables [view]
  • +
  • Suggestion to use stripPrefix has been implemented for RESULT. For consistency also implemented for arguments. [view]
  • +
  • Switched back to version 6.2 of JavaCC for VHDL parser generation. [view]

\endhtmlonly @@ -695,87 +1096,87 @@

    -
  • Bug 634763 - Fortran: external subroutine as dummy argument not recognized [view]
  • -
  • Bug 634763 - Fortran: external subroutine as dummy argument not recognized [view]
  • -
  • Bug 651859 - Brief description misplaced in man page output [view]
  • -
  • Bug 652276 - Typedefs in manpages has too few linebreak possiblilities [view]
  • -
  • Bug 685597 - C# <code> tag in an <example> tag does not render as expected. [view]
  • -
  • Bug 687576 - Add support for LATEX_EXTRA_STYLESHEET [view]
  • -
  • Bug 704090 - Allow Class{T}.Method in cref to refer to a generic class in XML comments [view]
  • -
  • Bug 722940 - classes with same name in different namespace adding to same group [view]
  • -
  • Bug 729063 - Missing link for item inside the same namespace [view]
  • -
  • Bug 729236 - Added HIDE_COMPOUND_REFERENCE config option [view]
  • -
  • Bug 735145 - QHP toc broken if mainpage with PROJECT_NAME title has sections/subpages [view]
  • -
  • Bug 735194 - src/Makefile.libdoxycfg shouldn't be distributed [view]
  • -
  • Bug 735198 - plantUML requires epstopdf for building PDF files [view]
  • -
  • Bug 735376 - tag file: Unknown compound attribute `singleton' found! [view]
  • -
  • Bug 735441 - Fix a resource leak in src/vhdldocgen.cpp [view]
  • -
  • Bug 735462 - There's no such thing as a private Q_PROPERTY [view]
  • -
  • Bug 735475 - Same Expression in translator_kr.h [view]
  • -
  • Bug 735477 - Fix a potential null pointer dereference in src/memberdef.cpp [view]
  • -
  • Bug 735481 - Mismatch in memory allocation/de-allocation function in vhdlparser/vhdlstring.h [view]
  • -
  • Bug 735482 - Remove a not needed initialization of a local variable in src/mangen.cpp [view]
  • -
  • Bug 735483 - Fix a potential null pointer dereference in src/searchindex.cpp [view]
  • -
  • Bug 735497 - Fix wrong pointer initialization in src/definition.cpp [view]
  • -
  • Bug 735499 - Fix potential modulo by zero in src/template.cpp [view]
  • -
  • Bug 735584 - Reached end of file while still insided a (nested) comment in Markdown [view]
  • -
  • Bug 735587 - Fix a terminating null character after fread in src/filedef.cpp [view]
  • -
  • Bug 735589 - Remove not needed variable initialization in src/classdef.cpp [view]
  • -
  • Bug 735590 - Remove not needed pointer initialization in src/entry.cpp [view]
  • -
  • Bug 735591 - Provide exit code in case generatePlantUMLOutput fails [view]
  • -
  • Bug 735620 - Remove not needed variable caching in src/markdown.cpp [view]
  • -
  • Bug 735622 - Do not cache inputSize in src/doxygen.cpp [view]
  • -
  • Bug 735623 - Expression is always false because 'else if' condition matches previous condition [view]
  • -
  • Bug 735726 - Fix missing break in switch case statement [view]
  • -
  • Bug 735745 - Spurious ASSERT message [view]
  • -
  • Bug 735759 - Broken man pages due to bad use of autoBreak [view]
  • -
  • Bug 735767 - Fix potential copy and paste issue in vhdlparser/VhdlParser.cc [view]
  • -
  • Bug 735924 - [Patch] Documentation: Wrong link for \\diafile [view]
  • -
  • Bug 735925 - [Patch] DocBook: Possible name clash for generated image files [view]
  • -
  • Bug 735926 - RTF output: \\diafile and \\mscfile do not work [view]
  • -
  • Bug 735929 - Windows: Process exit code is ignored for processes launched using ShellExecuteEx() [view]
  • -
  • Bug 735982 - Fix potential allocation of huge memory amount due to type overflow in src/lodepng.cpp [view]
  • -
  • Bug 735985 - Fix missing unchecked return value in src/dot.cpp [view]
  • -
  • Bug 736018 - Fix potential null pointer dereference in src/dbusxmlscanner.cpp [view]
  • -
  • Bug 736020 - Fix identical code for different branches in src/translator_tw.h [view]
  • -
  • Bug 736022 - Fix potential null pointer dereference in src/index.cpp [view]
  • -
  • Bug 736023 - Remove not needed variable initialization in src/cite.cpp [view]
  • -
  • Bug 736027 - Remove not needed local variable in src/doxygen.cpp [view]
  • -
  • Bug 736029 - Remove redundant if/else branch in src/lodepng.cpp [view]
  • -
  • Bug 736030 - Remove redundant if/else branch in src/translator_lt.h [view]
  • -
  • Bug 736031 - Cleanup redundant if/else branch in src/translator_kr.h [view]
  • -
  • Bug 736032 - Cleanup redundant if/else branch in src/translator_sr.h [view]
  • -
  • Bug 736033 - Cleanup redundant if/else branch in src/translator_tw.h [view]
  • -
  • Bug 736034 - Cleanup redundant if/else branch in src/translator_vi.h [view]
  • -
  • Bug 736036 - Remove redundant local variable initialization in qtools/qstring.cpp [view]
  • -
  • Bug 736037 - Fix wrong member variable initialization in src/define.cpp [view]
  • -
  • Bug 736385 - Fix potential null pointer dereference in src/util.cpp [view]
  • -
  • Bug 736386 - Fix another potential null pointer dereference in src/util.cpp [view]
  • -
  • Bug 736387 - Fix a potential null pointer dereference in src/index.cpp [view]
  • -
  • Bug 736389 - Fix a potential null pointer dereference in src/vhdldocgen.cpp [view]
  • -
  • Bug 736992 - Member functions omitted from tagfile [view]
  • -
  • Bug 737444 - Java: Annotations with brackets prevent documentation [view]
  • -
  • Bug 737830 - Invalid element name in footer part when GENERATE_TREEVIEW specified [view]
  • -
  • Bug 738063 - Fortran attribute contiguous not identified [view]
  • -
  • Bug 738167 - Entity references in XML command attributes are incorrectly handled [view]
  • -
  • Bug 738173 - Entity references in XML code command are incorrectly handled [view]
  • -
  • Bug 738548 - latex: dead links to source code [view]
  • -
  • Bug 738574 - &hellip; is replaced by \cdots rather than \dots in the LaTeX output [view]
  • -
  • Bug 739054 - Python xml not outputting info of functions inside __init__.py [view]
  • -
  • Bug 739056 - Python xml - argsstring is empty, while HTML have arguments [view]
  • -
  • Bug 739209 - Invalid warning about undocumented C++ function imported from tagfile [view]
  • -
  • Bug 739210 - C++11 scoped enums with same name inside different classes are merged if using tagfile [view]
  • -
  • Bug 739211 - Cannot make explicit links to C++ const member functions [view]
  • -
  • Bug 739214 - Cannot make unscoped link to C++ conversion operator [view]
  • -
  • Bug 739462 - Using "doxygen.css" for HTML_EXTRA_STYLESHEET fails silently [view]
  • -
  • Bug 739863 - Regression: Base classes incorrect when using CRTP with default template parameter [view]
  • -
  • Bug 740218 - Full scope needed when making link inside cross-referenced section [view]
  • -
  • Bug 740218 - Full scope needed when making link inside cross-referenced section (fixed regression) [view]
  • -
  • Bug 740446 - invalid copydoc target does not result in warning [view]
  • -
  • Bug 741100 - Latex to PDF hangs when using Markdown tables [view]
  • -
  • Bug 741417 - Crash when building gtkmm documentation [view]
  • -
  • Bug 741778 - \cite confused by labels ending with a dot (improved warning message) [view]
  • -
  • fix docbook output [view] +
  • Bug 4011 - Fortran: external subroutine as dummy argument not recognized [view]
  • +
  • Bug 4011 - Fortran: external subroutine as dummy argument not recognized [view]
  • +
  • Bug 4286 - Brief description misplaced in man page output [view]
  • +
  • Bug 4293 - Typedefs in manpages has too few linebreak possiblilities [view]
  • +
  • Bug 4914 - C# <code> tag in an <example> tag does not render as expected. [view]
  • +
  • Bug 4941 - Add support for LATEX_EXTRA_STYLESHEET [view]
  • +
  • Bug 5237 - Allow Class{T}.Method in cref to refer to a generic class in XML comments [view]
  • +
  • Bug 5418 - classes with same name in different namespace adding to same group [view]
  • +
  • Bug 5462 - Missing link for item inside the same namespace [view]
  • +
  • Bug 5467 - Added HIDE_COMPOUND_REFERENCE config option [view]
  • +
  • Bug 5554 - QHP toc broken if mainpage with PROJECT_NAME title has sections/subpages [view]
  • +
  • Bug 5558 - src/Makefile.libdoxycfg shouldn't be distributed [view]
  • +
  • Bug 5559 - plantUML requires epstopdf for building PDF files [view]
  • +
  • Bug 5560 - tag file: Unknown compound attribute `singleton' found! [view]
  • +
  • Bug 5562 - Fix a resource leak in src/vhdldocgen.cpp [view]
  • +
  • Bug 5563 - There's no such thing as a private Q_PROPERTY [view]
  • +
  • Bug 5564 - Same Expression in translator_kr.h [view]
  • +
  • Bug 5565 - Fix a potential null pointer dereference in src/memberdef.cpp [view]
  • +
  • Bug 5567 - Mismatch in memory allocation/de-allocation function in vhdlparser/vhdlstring.h [view]
  • +
  • Bug 5568 - Remove a not needed initialization of a local variable in src/mangen.cpp [view]
  • +
  • Bug 5569 - Fix a potential null pointer dereference in src/searchindex.cpp [view]
  • +
  • Bug 5570 - Fix wrong pointer initialization in src/definition.cpp [view]
  • +
  • Bug 5571 - Fix potential modulo by zero in src/template.cpp [view]
  • +
  • Bug 5572 - Reached end of file while still inside a (nested) comment in Markdown [view]
  • +
  • Bug 5573 - Fix a terminating null character after fread in src/filedef.cpp [view]
  • +
  • Bug 5574 - Remove not needed variable initialization in src/classdef.cpp [view]
  • +
  • Bug 5575 - Remove not needed pointer initialization in src/entry.cpp [view]
  • +
  • Bug 5576 - Provide exit code in case generatePlantUMLOutput fails [view]
  • +
  • Bug 5578 - Remove not needed variable caching in src/markdown.cpp [view]
  • +
  • Bug 5580 - Do not cache inputSize in src/doxygen.cpp [view]
  • +
  • Bug 5581 - Expression is always false because 'else if' condition matches previous condition [view]
  • +
  • Bug 5583 - Fix missing break in switch case statement [view]
  • +
  • Bug 5584 - Spurious ASSERT message [view]
  • +
  • Bug 5585 - Broken man pages due to bad use of autoBreak [view]
  • +
  • Bug 5586 - Fix potential copy and paste issue in vhdlparser/VhdlParser.cc [view]
  • +
  • Bug 5587 - [Patch] Documentation: Wrong link for \\diafile [view]
  • +
  • Bug 5588 - [Patch] DocBook: Possible name clash for generated image files [view]
  • +
  • Bug 5589 - RTF output: \\diafile and \\mscfile do not work [view]
  • +
  • Bug 5590 - Windows: Process exit code is ignored for processes launched using ShellExecuteEx() [view]
  • +
  • Bug 5593 - Fix potential allocation of huge memory amount due to type overflow in src/lodepng.cpp [view]
  • +
  • Bug 5594 - Fix missing unchecked return value in src/dot.cpp [view]
  • +
  • Bug 5595 - Fix potential null pointer dereference in src/dbusxmlscanner.cpp [view]
  • +
  • Bug 5596 - Fix identical code for different branches in src/translator_tw.h [view]
  • +
  • Bug 5597 - Fix potential null pointer dereference in src/index.cpp [view]
  • +
  • Bug 5598 - Remove not needed variable initialization in src/cite.cpp [view]
  • +
  • Bug 5599 - Remove not needed local variable in src/doxygen.cpp [view]
  • +
  • Bug 5600 - Remove redundant if/else branch in src/lodepng.cpp [view]
  • +
  • Bug 5601 - Remove redundant if/else branch in src/translator_lt.h [view]
  • +
  • Bug 5602 - Cleanup redundant if/else branch in src/translator_kr.h [view]
  • +
  • Bug 5603 - Cleanup redundant if/else branch in src/translator_sr.h [view]
  • +
  • Bug 5604 - Cleanup redundant if/else branch in src/translator_tw.h [view]
  • +
  • Bug 5605 - Cleanup redundant if/else branch in src/translator_vi.h [view]
  • +
  • Bug 5606 - Remove redundant local variable initialization in qtools/qstring.cpp [view]
  • +
  • Bug 5607 - Fix wrong member variable initialization in src/define.cpp [view]
  • +
  • Bug 5611 - Fix potential null pointer dereference in src/util.cpp [view]
  • +
  • Bug 5612 - Fix another potential null pointer dereference in src/util.cpp [view]
  • +
  • Bug 5613 - Fix a potential null pointer dereference in src/index.cpp [view]
  • +
  • Bug 5614 - Fix a potential null pointer dereference in src/vhdldocgen.cpp [view]
  • +
  • Bug 5632 - Member functions omitted from tagfile [view]
  • +
  • Bug 5643 - Java: Annotations with brackets prevent documentation [view]
  • +
  • Bug 5647 - Invalid element name in footer part when GENERATE_TREEVIEW specified [view]
  • +
  • Bug 5649 - Fortran attribute contiguous not identified [view]
  • +
  • Bug 5652 - Entity references in XML command attributes are incorrectly handled [view]
  • +
  • Bug 5653 - Entity references in XML code command are incorrectly handled [view]
  • +
  • Bug 5656 - latex: dead links to source code [view]
  • +
  • Bug 5657 - &hellip; is replaced by \cdots rather than \dots in the LaTeX output [view]
  • +
  • Bug 5664 - Python xml not outputting info of functions inside __init__.py [view]
  • +
  • Bug 5665 - Python xml - argsstring is empty, while HTML have arguments [view]
  • +
  • Bug 5667 - Invalid warning about undocumented C++ function imported from tagfile [view]
  • +
  • Bug 5668 - C++11 scoped enums with same name inside different classes are merged if using tagfile [view]
  • +
  • Bug 5669 - Cannot make explicit links to C++ const member functions [view]
  • +
  • Bug 5670 - Cannot make unscoped link to C++ conversion operator [view]
  • +
  • Bug 5671 - Using "doxygen.css" for HTML_EXTRA_STYLESHEET fails silently [view]
  • +
  • Bug 5674 - Regression: Base classes incorrect when using CRTP with default template parameter [view]
  • +
  • Bug 5678 - Full scope needed when making link inside cross-referenced section [view]
  • +
  • Bug 5678 - Full scope needed when making link inside cross-referenced section (fixed regression) [view]
  • +
  • Bug 5680 - invalid copydoc target does not result in warning [view]
  • +
  • Bug 5686 - Latex to PDF hangs when using Markdown tables [view]
  • +
  • Bug 5690 - Crash when building gtkmm documentation [view]
  • +
  • Bug 5694 - \cite confused by labels ending with a dot (improved warning message) [view]
  • +
  • fix docbook output [view]
    1. support other than english
    2. fix broken example link id
    3. fix incomplete TOC : no Classe etc.
    4. @@ -783,89 +1184,88 @@
    5. Comply with REPEAT_BRIEF
    6. Do not output duplicated contents when detailed description is missing.
    7. set table colwidth for Param/RetVal
    8. -
    -
  • -
  • Add missing escape in doxysearch.cpp when result contained a double quote [view]
  • -
  • Add source code possibility for RTF output [view]
  • -
  • Added Coverity Scan Build Status to Readme [view]
  • -
  • Added clearer range checks for string class to help compiler [view]
  • -
  • Added compilation support for MacOSX 10.10 (yosemite) [view]
  • -
  • Added faster reference counted string implementation with short string optimization [view]
  • -
  • Added graphical hierarchy support to template engine [view]
  • -
  • Added guard to prevent (theoretical) out of bound access [view]
  • -
  • Added language attribute to XML output for classes, namespaces, and files [view]
  • -
  • Avoid a (theoretical) memory leak [view]
  • -
  • Better handling of inline Fortran parameter documentation [view]
  • -
  • Fixed bug for page numbers in the latex indices [view]
  • -
  • Compilation fixes for Windows for new string implementation. [view]
  • -
  • Convert FORTRAN modules to namespaces [view]
  • -
  • Create an easy possibility to take a snippet from the current file. [view]
  • -
  • Debian Bug 762272: segfault with cyclic subgroups [view]
  • -
  • Disabled enter/exit printing for doctokenizer (produced too much noise) [view]
  • -
  • Empty entry in \tableofcontents in case e.g. section without description. [view]
  • -
  • Extra empty line in source fragments [view]
  • -
  • Fix bug with C++11 static_assert [view]
  • -
  • Fix bug: language switch command "\~" failed to detect language id which contains '-' [view]
  • -
  • Fix for https://bugzilla.gnome.org/show_bug.cgi?id=651850 [view]
  • -
  • Fix for the second issue in bz 651848 [view]
  • -
  • Fix potential crash when reading tag file which contained nested java classes using generics [view]
  • -
  • Fix rules for closing FORTRAN module and typedef scopes [view]
  • -
  • Fix to ignore the contents of \verbatim and friends while looking for sections [view]
  • -
  • Fix to show relations between C#/Java generic classes [view]
  • -
  • Fixed a number of issues (resource leaks, uninitialized members, etc) found by coverity [view]
  • -
  • Fixed bug in new QCString::sprintf for long string. [view]
  • -
  • Fixed extension matching issue if path contained a dot. [view]
  • -
  • Fixed issue accessing uninitialized data when combining RTF output. [view]
  • -
  • Fixed issue parsing @end directly followed by the end of the file [view]
  • -
  • Fixed problem finding \enduml when using /// style comments. [view]
  • -
  • Fixed refcounting bug in new string implementation [view]
  • -
  • Fixed several Coverity warnings [view]
  • -
  • Fixed to small memory leaks [view]
  • -
  • Fixed typos and formatting in Doxyfile (thanks to Armin Mueller) [view]
  • -
  • Fixed typos in C/C++ comments. There are no functional changes. [view]
  • -
  • Fixed typos in comments. [view]
  • -
  • Fixed typos in comments. No functional changes. [view]
  • -
  • Fortran code color END (regression pull request 259) [view]
  • -
  • Fortran color CALL as keyword [view]
  • -
  • Fortran color code of END [view]
  • -
  • Fortran continuation character seen as begin of function call [view]
  • -
  • Generate error message in case bibtex generation fails [view]
  • -
  • Improved main page rendering via template engine [view]
  • -
  • Initialized potentially uninitialized variable in markdown part [view]
  • -
  • Introduce new optimized string implementation (attempt 2) [view]
  • -
  • Introduced template directory for template and resource files and resource compiler & manager [view]
  • -
  • LaTeX problem with 2 consecutive single quotes [view]
  • -
  • Last comment of \code{.f90} missing [view]
  • -
  • Limit images sizes and make more uniform (LaTeX) [view]
  • -
  • Package mathptmx gives discrepancy between pdf and HTML formulas [view]
  • -
  • Portuguese and Brazilian Portuguese translators updated to 1.8.5. [view]
  • -
  • Prevent overly long terms from stopping the search indexer [view]
  • -
  • Problem in case of line termination (., a dot) direct after the \cite command [view]
  • -
  • Regression class<T extends V> resulted in class<V> as the page title [view]
  • -
  • Remove bogus argument to avoid compiler warning [view]
  • -
  • Remove dependency of PlantUML on HAVE_DOT [view]
  • -
  • Remove extraneous 'README' to allow successful RPM creation [view]
  • -
  • Remove filtering rule when generating FORTRAN module links [view]
  • -
  • Remove redundant code [view]
  • -
  • Removed bash specific construct from ./configure script to make it work on Solaris [view]
  • -
  • Removed some comment statements. [view]
  • -
  • Revert "Bug 634763 - Fortran: external subroutine as dummy argument not recognized" [view]
  • -
  • Reverted back to old string implementation. New one needs more work. [view]
  • -
  • Show tag file name instead of <unknown> for warnings pointing to symbols extracted from tag files. [view]
  • -
  • Show the parent-child type specialization relation in Java/C# generics inheritance diagrams [view]
  • -
  • Support charset option for PlantUML [view]
  • -
  • Support for INLINE_SOURCES in Fortran [view]
  • -
  • Support plantuml !include statement [view]
  • -
  • Support visible=no for main page tab. [view]
  • -
  • Supporting linking for methods bound to FORTRAN classes in source definitions [view]
  • -
  • This is the patch attached to bz 651848 by Robin Gareus. [view]
  • -
  • Update README.md [view]
  • -
  • Updated configuration script and libdoxygen.pro.in to use llvm-config [view]
  • -
  • Use result of vsnprintf [view]
  • -
  • Use substitute() instead of QString conversion [view]
  • -
  • Various VHDL fixes [view]
  • -
  • various fixes and restructuring [view]
  • -
  • Various latex problems [view]
  • + +
  • Add missing escape in doxysearch.cpp when result contained a double quote [view]
  • +
  • Add source code possibility for RTF output [view]
  • +
  • Added Coverity Scan Build Status to Readme [view]
  • +
  • Added clearer range checks for string class to help compiler [view]
  • +
  • Added compilation support for MacOSX 10.10 (yosemite) [view]
  • +
  • Added faster reference counted string implementation with short string optimization [view]
  • +
  • Added graphical hierarchy support to template engine [view]
  • +
  • Added guard to prevent (theoretical) out of bound access [view]
  • +
  • Added language attribute to XML output for classes, namespaces, and files [view]
  • +
  • Avoid a (theoretical) memory leak [view]
  • +
  • Better handling of inline Fortran parameter documentation [view]
  • +
  • Fixed bug for page numbers in the latex indices [view]
  • +
  • Compilation fixes for Windows for new string implementation. [view]
  • +
  • Convert FORTRAN modules to namespaces [view]
  • +
  • Create an easy possibility to take a snippet from the current file. [view]
  • +
  • Debian Bug 762272: segfault with cyclic subgroups [view]
  • +
  • Disabled enter/exit printing for doctokenizer (produced too much noise) [view]
  • +
  • Empty entry in \tableofcontents in case e.g. section without description. [view]
  • +
  • Extra empty line in source fragments [view]
  • +
  • Fix bug with C++11 static_assert [view]
  • +
  • Fix bug: language switch command "\~" failed to detect language id which contains '-' [view]
  • +
  • Fix for 4285 [view]
  • +
  • Fix for the second issue in bz 651848 [view]
  • +
  • Fix potential crash when reading tag file which contained nested java classes using generics [view]
  • +
  • Fix rules for closing FORTRAN module and typedef scopes [view]
  • +
  • Fix to ignore the contents of \verbatim and friends while looking for sections [view]
  • +
  • Fix to show relations between C#/Java generic classes [view]
  • +
  • Fixed a number of issues (resource leaks, uninitialized members, etc) found by coverity [view]
  • +
  • Fixed bug in new QCString::sprintf for long string. [view]
  • +
  • Fixed extension matching issue if path contained a dot. [view]
  • +
  • Fixed issue accessing uninitialized data when combining RTF output. [view]
  • +
  • Fixed issue parsing @end directly followed by the end of the file [view]
  • +
  • Fixed problem finding \enduml when using /// style comments. [view]
  • +
  • Fixed refcounting bug in new string implementation [view]
  • +
  • Fixed several Coverity warnings [view]
  • +
  • Fixed to small memory leaks [view]
  • +
  • Fixed typos and formatting in Doxyfile (thanks to Armin Mueller) [view]
  • +
  • Fixed typos in C/C++ comments. There are no functional changes. [view]
  • +
  • Fixed typos in comments. [view]
  • +
  • Fixed typos in comments. No functional changes. [view]
  • +
  • Fortran code color END (regression pull request 259) [view]
  • +
  • Fortran color CALL as keyword [view]
  • +
  • Fortran color code of END [view]
  • +
  • Fortran continuation character seen as begin of function call [view]
  • +
  • Generate error message in case bibtex generation fails [view]
  • +
  • Improved main page rendering via template engine [view]
  • +
  • Initialized potentially uninitialized variable in markdown part [view]
  • +
  • Introduce new optimized string implementation (attempt 2) [view]
  • +
  • Introduced template directory for template and resource files and resource compiler & manager [view]
  • +
  • LaTeX problem with 2 consecutive single quotes [view]
  • +
  • Last comment of \code{.f90} missing [view]
  • +
  • Limit images sizes and make more uniform (LaTeX) [view]
  • +
  • Package mathptmx gives discrepancy between pdf and HTML formulas [view]
  • +
  • Portuguese and Brazilian Portuguese translators updated to 1.8.5. [view]
  • +
  • Prevent overly long terms from stopping the search indexer [view]
  • +
  • Problem in case of line termination (., a dot) direct after the \cite command [view]
  • +
  • Regression class<T extends V> resulted in class<V> as the page title [view]
  • +
  • Remove bogus argument to avoid compiler warning [view]
  • +
  • Remove dependency of PlantUML on HAVE_DOT [view]
  • +
  • Remove extraneous 'README' to allow successful RPM creation [view]
  • +
  • Remove filtering rule when generating FORTRAN module links [view]
  • +
  • Remove redundant code [view]
  • +
  • Removed bash specific construct from ./configure script to make it work on Solaris [view]
  • +
  • Removed some comment statements. [view]
  • +
  • Revert "Bug 4011 - Fortran: external subroutine as dummy argument not recognized" [view]
  • +
  • Reverted back to old string implementation. New one needs more work. [view]
  • +
  • Show tag file name instead of <unknown> for warnings pointing to symbols extracted from tag files. [view]
  • +
  • Show the parent-child type specialization relation in Java/C# generics inheritance diagrams [view]
  • +
  • Support charset option for PlantUML [view]
  • +
  • Support for INLINE_SOURCES in Fortran [view]
  • +
  • Support plantuml !include statement [view]
  • +
  • Support visible=no for main page tab. [view]
  • +
  • Supporting linking for methods bound to FORTRAN classes in source definitions [view]
  • +
  • This is the patch attached to bz 651848 by Robin Gareus. [view]
  • +
  • Update README.md [view]
  • +
  • Updated configuration script and libdoxygen.pro.in to use llvm-config [view]
  • +
  • Use result of vsnprintf [view]
  • +
  • Use substitute() instead of QString conversion [view]
  • +
  • Various VHDL fixes [view]
  • +
  • various fixes and restructuring [view]
  • +
  • Various latex problems [view]

\endhtmlonly @@ -876,132 +1276,132 @@

New features

    -
  • Bug 731947 - Support for PlantUML [view]
  • -
  • Add BREAD_CRUMB_TRAIL. [view]
  • -
-

Bug fixes

-
    -
  • Bug 172072 $title doesn't work in LateX header [view]
  • -
  • Bug 583958 Class diagrams and class hierarchy don't work for java generic classes [view]
  • -
  • Bug 589707 Flex .rule file for Visual Studio build can't cope with spaces in filenames [view]
  • -
  • Bug 623299 Fortran: quotation after define causes error [view]
  • -
  • Bug 625601 FORTRAN: recognition free versus fixed formatted code [view]
  • -
  • Bug 700510 Bibliography duplicate filenames fails [view] and - [view]
  • -
  • Bug 702584 \cite rejects valid BibTeX keys [view] and - [view]
  • -
  • Bug 705503 TCL: Documentation of oo::define is not working [view]
  • -
  • Bug 727732 Nested C structures/unions does not work with groups [view]
  • -
  • Bug 728654 configuration stops with settings.h missing [view]
  • -
  • Bug 728740 XML Output: Doxygen doesn't escape & characters (included in a hyperlink) in <detaileddescription> [view]
  • -
  • Bug 729017 function object in member initializer causes documentation loss [view]
  • -
  • Bug 729427 [PATCH] Propagate configure's perl to makefiles [view]
  • -
  • Bug 730418 man page extension is incorrect [view]
  • -
  • Bug 730520 No documentation generated for method-less C++ struct [view]
  • -
  • Bug 730887 [PATCH] Fix potential copy and paste error in inputstring.cpp [view]
  • -
  • Bug 730888 [PATCH] Fix missing '&' in Boolean operation in qstring.cpp [view]
  • -
  • Bug 731238 Dead links in html documentation when using tabs for indentation in c++ [view]
  • -
  • Bug 731363 Callgraphs for C# only generated for methods inside the same class [view]
  • -
  • Bug 731985 Variadic macros failing to expand if trailing ... is empty [view]
  • -
  • Bug 732594 Two entries for a single member in doxygen XML [view]
  • -
  • Bug 732768 nested html tables cause pdflatex to hang (1.8.4 and 1.8.6) [view]
  • -
  • Bug 733451 volatile declaration on member functions is not handled as xml attribute [view]
  • -
  • Bug 733605 Incorrect LaTeX generation for private union member in C++ [view]
  • -
  • Bug 733722 XML Output invalid: XML_PROGRAMLISTING=YES copies Unicode form feed character (U+000C) to XML files [view]
  • -
  • Bug 733856 segfault in QGListIterator while parsing fortran code [view]
  • -
  • Bug 733938 Explicit links using operator()() not generated. [view]
  • -
  • Bug 734077 no uniquely matching class member found for inline function definition where parameter argument names don't match [view]
  • -
  • Bug 734099 Add support for non-parsed language [view]
  • -
  • Bug 734245 Q_PROPERTY switches the member access from private to public [view]
  • -
  • Bug 734331 Strong enum members listed in containing namespace [view]
  • -
  • Bug 734704 Sigsegv while generating XML output [view]
  • -
  • Bug 734727 GENERATE_TAGFILE no longer includes any @*section links [view] and - [view]
  • -
  • Bug 734828 Request: disable building documentation if Python 2.6 or newer not available [view]
  • -
  • Bug 735001 No output for markdown pages with duplicate label title (different anchor) [view]
  • -
  • Bug 735037 QGDict::hashAsciiKey: Invalid null key [view]
  • -
  • Add FORTRAN 2003 keywords and commands [view]
  • -
  • Add type option to FORTRAN select statements [view]
  • -
  • Added build support for Python3+ and Python2.6+ [view]
  • -
  • Added class/procedure vardefs to FORTRAN code highlighting [view]
  • -
  • Added documentation for some missing HTML commands [view]
  • -
  • Added flatten, listsort and paginate filters [view]
  • -
  • Added get filter, unified index properties [view]
  • -
  • Added groupby filter and some more context info [view]
  • -
  • Added import keyword to FORTRAN code highlighting [view]
  • -
  • Added lists for indices to template context [view]
  • -
  • Added mainpage to context and improved page tree [view]
  • -
  • Added member indexes to template context [view]
  • -
  • Added missing links in changelog when multiple bug ids were on one line [view]
  • -
  • Added more missing links to the changelog [view]
  • -
  • Added namespace info to the context [view]
  • -
  • Addition of module data to context and alphaIndex filter [view]
  • -
  • Coded coloring of flow statements corrected (regression) [view]
  • -
  • Corrected copyright year [view]
  • -
  • Correction of typing error [view]
  • -
  • Disabled/fixed segments that produced doxygen warnings while running the test [view]
  • -
  • Docbook output improvements [view]
  • -
  • Documentation generator: added support for C# property accessors visibility modifiers. [view]
  • -
  • Doxywizard: make the Next button on the last page of the expert tab switch to the run tab [view]
  • -
  • Doxywizard: make the Next button on the last page of the wizard switch to the run tab [view]
  • -
  • Error linking 32-bit windows [view]
  • -
  • Fix FORTRAN code function scope test [view]
  • -
  • Fix after rebase from master [view]
  • -
  • Fix description of USE_PDFLATEX [view]
  • -
  • Fix highlighting issues [view]
  • -
  • Fix typo [view]
  • -
  • Fix unnecessary rules for FORTRAN types [view]
  • -
  • Fix warning about unused functions in qstring.cpp [view]
  • -
  • Fixed keyword type [view]
  • -
  • Fixed missing include for Linux [view]
  • -
  • Fixed test 021 [view]
  • -
  • Fixed typo [view]
  • -
  • Fixed typo and used QString for directory [view]
  • -
  • Fixed windows compile issue for is_neutral [view]
  • -
  • Fixes for ./configure script on Solaris [view]
  • -
  • Fixes regression due to PR 169 [view]
  • -
  • Language parser: added support for C# property accessors visibility modifiers. [view]
  • -
  • Made INSTALL file version and date independent [view]
  • -
  • Made bread crumb trails enabled unconditionally [view]
  • -
  • Made setName() virtual so overloading works [view]
  • -
  • Make index for faq [view]
  • -
  • Messages truncated in warnings file [view]
  • -
  • Minor fixes [view]
  • -
  • Minor fixes to the template context [view]
  • -
  • Missing word after \n command in doxygen rtf output, version 1.8.5 & up [view]
  • -
  • More robust extraction of scope information from tag files [view]
  • -
  • No warning in case cite definition is missing [view]
  • -
  • Preparations for release 1.8.8 [view]
  • -
  • Removed not implemented HTML commands from documentation [view]
  • -
  • Removed unsupported HTML commands from the docs [view]
  • -
  • Set deployment targets for MacOSX 10.5+ versions [view]
  • -
  • Support multiple extra HTML stylesheets. [view]
  • -
  • Tcl: add missing file that breaks test 057 [view]
  • -
  • Tcl: add test code for Bug 729092 [view]
  • -
  • Tcl: collect XRefs also if INLINE_SOURCES = no [view]
  • -
  • Tcl: correct namespace resolution in case of INLINE_SOURCES = YES [view]
  • -
  • Tcl: recurse for [] [view]
  • -
  • Tcl: refactor similar code into tcl_codify_token function [view]
  • -
  • Tcl: support eval/catch commands [view]
  • -
  • Tcl: support switch command [view]
  • -
  • Tcl: test 057 additionally tests mutual Xrefs for two files [view]
  • -
  • Template context support for CREATE_SUBDIRS [view]
  • -
  • Update dot.cpp [view]
  • -
  • Update latexgen.cpp [view]
  • -
  • Update test 058 because commit 9d315a9 fixes also Bug 729135 [view]
  • -
  • Replaced the VHDL parser with the VHDL scanner from 1.7.5 to avoid potential licensing issues [view]
  • -
  • New VHDL parser implementation [view]
  • -
  • Vhdl fixes [view]
  • -
  • \usepackage{fixltx2e} must come before use \usepackage{float} [view]
  • -
  • cache anonymous into ClassDefImpl::isAnonymous [view]
  • -
  • changed append filter and added index and path attributes to node [view]
  • -
  • doc/translator.py -- unification for Python 2.6+ and 3.3+ (not finished) [view]
  • -
  • doc/translator.py unified for Python 2.6+ and Python 3.0+ [view]
  • -
  • make.bat: change current directory [view] and - [view]
  • -
  • removeRedundantWhiteSpace micro-optimization [view]
  • -
  • resolves the error of unbalanced tags opened/closed in docbook output: parser error : Opening and ending tag mismatch: para line 358 and tbody [view]
  • -
  • winbuild/pack_the_distribution_for_windows.py minor updates [view]
  • +
  • Bug 5505 - Support for PlantUML [view]
  • +
  • Add BREAD_CRUMB_TRAIL. [view]
  • +
+

Bug fixes

+
    +
  • Bug 1527 $title doesn't work in LateX header [view]
  • +
  • Bug 3405 Class diagrams and class hierarchy don't work for java generic classes [view]
  • +
  • Bug 3460 Flex .rule file for Visual Studio build can't cope with spaces in filenames [view]
  • +
  • Bug 3834 Fortran: quotation after define causes error [view]
  • +
  • Bug 3879 FORTRAN: recognition free versus fixed formatted code [view]
  • +
  • Bug 5182 Bibliography duplicate filenames fails [view] and + [view]
  • +
  • Bug 5215 \cite rejects valid BibTeX keys [view] and + [view]
  • +
  • Bug 5259 TCL: Documentation of oo::define is not working [view]
  • +
  • Bug 5445 Nested C structures/unions does not work with groups [view]
  • +
  • Bug 5459 configuration stops with settings.h missing [view]
  • +
  • Bug 5460 XML Output: Doxygen doesn't escape & characters (included in a hyperlink) in <detaileddescription> [view]
  • +
  • Bug 5461 function object in member initializer causes documentation loss [view]
  • +
  • Bug 5472 [PATCH] Propagate configure's perl to makefiles [view]
  • +
  • Bug 5483 man page extension is incorrect [view]
  • +
  • Bug 5486 No documentation generated for method-less C++ struct [view]
  • +
  • Bug 5493 [PATCH] Fix potential copy and paste error in inputstring.cpp [view]
  • +
  • Bug 5494 [PATCH] Fix missing '&' in Boolean operation in qstring.cpp [view]
  • +
  • Bug 5497 Dead links in html documentation when using tabs for indentation in c++ [view]
  • +
  • Bug 5500 Callgraphs for C# only generated for methods inside the same class [view]
  • +
  • Bug 5506 Variadic macros failing to expand if trailing ... is empty [view]
  • +
  • Bug 5512 Two entries for a single member in doxygen XML [view]
  • +
  • Bug 5514 nested html tables cause pdflatex to hang (1.8.4 and 1.8.6) [view]
  • +
  • Bug 5521 volatile declaration on member functions is not handled as xml attribute [view]
  • +
  • Bug 5524 Incorrect LaTeX generation for private union member in C++ [view]
  • +
  • Bug 5526 XML Output invalid: XML_PROGRAMLISTING=YES copies Unicode form feed character (U+000C) to XML files [view]
  • +
  • Bug 5528 segfault in QGListIterator while parsing fortran code [view]
  • +
  • Bug 5531 Explicit links using operator()() not generated. [view]
  • +
  • Bug 5534 no uniquely matching class member found for inline function definition where parameter argument names don't match [view]
  • +
  • Bug 5535 Add support for non-parsed language [view]
  • +
  • Bug 5537 Q_PROPERTY switches the member access from private to public [view]
  • +
  • Bug 5540 Strong enum members listed in containing namespace [view]
  • +
  • Bug 5543 Sigsegv while generating XML output [view]
  • +
  • Bug 5544 GENERATE_TAGFILE no longer includes any @*section links [view] and + [view]
  • +
  • Bug 5548 Request: disable building documentation if Python 2.6 or newer not available [view]
  • +
  • Bug 5550 No output for markdown pages with duplicate label title (different anchor) [view]
  • +
  • Bug 5551 QGDict::hashAsciiKey: Invalid null key [view]
  • +
  • Add FORTRAN 2003 keywords and commands [view]
  • +
  • Add type option to FORTRAN select statements [view]
  • +
  • Added build support for Python3+ and Python2.6+ [view]
  • +
  • Added class/procedure vardefs to FORTRAN code highlighting [view]
  • +
  • Added documentation for some missing HTML commands [view]
  • +
  • Added flatten, listsort and paginate filters [view]
  • +
  • Added get filter, unified index properties [view]
  • +
  • Added groupby filter and some more context info [view]
  • +
  • Added import keyword to FORTRAN code highlighting [view]
  • +
  • Added lists for indices to template context [view]
  • +
  • Added mainpage to context and improved page tree [view]
  • +
  • Added member indexes to template context [view]
  • +
  • Added missing links in changelog when multiple bug ids were on one line [view]
  • +
  • Added more missing links to the changelog [view]
  • +
  • Added namespace info to the context [view]
  • +
  • Addition of module data to context and alphaIndex filter [view]
  • +
  • Coded coloring of flow statements corrected (regression) [view]
  • +
  • Corrected copyright year [view]
  • +
  • Correction of typing error [view]
  • +
  • Disabled/fixed segments that produced doxygen warnings while running the test [view]
  • +
  • Docbook output improvements [view]
  • +
  • Documentation generator: added support for C# property accessors visibility modifiers. [view]
  • +
  • Doxywizard: make the Next button on the last page of the expert tab switch to the run tab [view]
  • +
  • Doxywizard: make the Next button on the last page of the wizard switch to the run tab [view]
  • +
  • Error linking 32-bit windows [view]
  • +
  • Fix FORTRAN code function scope test [view]
  • +
  • Fix after rebase from master [view]
  • +
  • Fix description of USE_PDFLATEX [view]
  • +
  • Fix highlighting issues [view]
  • +
  • Fix typo [view]
  • +
  • Fix unnecessary rules for FORTRAN types [view]
  • +
  • Fix warning about unused functions in qstring.cpp [view]
  • +
  • Fixed keyword type [view]
  • +
  • Fixed missing include for Linux [view]
  • +
  • Fixed test 021 [view]
  • +
  • Fixed typo [view]
  • +
  • Fixed typo and used QString for directory [view]
  • +
  • Fixed windows compile issue for is_neutral [view]
  • +
  • Fixes for ./configure script on Solaris [view]
  • +
  • Fixes regression due to PR 169 [view]
  • +
  • Language parser: added support for C# property accessors visibility modifiers. [view]
  • +
  • Made INSTALL file version and date independent [view]
  • +
  • Made bread crumb trails enabled unconditionally [view]
  • +
  • Made setName() virtual so overloading works [view]
  • +
  • Make index for faq [view]
  • +
  • Messages truncated in warnings file [view]
  • +
  • Minor fixes [view]
  • +
  • Minor fixes to the template context [view]
  • +
  • Missing word after \n command in doxygen rtf output, version 1.8.5 & up [view]
  • +
  • More robust extraction of scope information from tag files [view]
  • +
  • No warning in case cite definition is missing [view]
  • +
  • Preparations for release 1.8.8 [view]
  • +
  • Removed not implemented HTML commands from documentation [view]
  • +
  • Removed unsupported HTML commands from the docs [view]
  • +
  • Set deployment targets for MacOSX 10.5+ versions [view]
  • +
  • Support multiple extra HTML stylesheets. [view]
  • +
  • Tcl: add missing file that breaks test 057 [view]
  • +
  • Tcl: add test code for Bug 5463 [view]
  • +
  • Tcl: collect XRefs also if INLINE_SOURCES = no [view]
  • +
  • Tcl: correct namespace resolution in case of INLINE_SOURCES = YES [view]
  • +
  • Tcl: recurse for [] [view]
  • +
  • Tcl: refactor similar code into tcl_codify_token function [view]
  • +
  • Tcl: support eval/catch commands [view]
  • +
  • Tcl: support switch command [view]
  • +
  • Tcl: test 057 additionally tests mutual Xrefs for two files [view]
  • +
  • Template context support for CREATE_SUBDIRS [view]
  • +
  • Update dot.cpp [view]
  • +
  • Update latexgen.cpp [view]
  • +
  • Update test 058 because commit 9d315a9 fixes also Bug 5464 [view]
  • +
  • Replaced the VHDL parser with the VHDL scanner from 1.7.5 to avoid potential licensing issues [view]
  • +
  • New VHDL parser implementation [view]
  • +
  • Vhdl fixes [view]
  • +
  • \usepackage{fixltx2e} must come before use \usepackage{float} [view]
  • +
  • cache anonymous into ClassDefImpl::isAnonymous [view]
  • +
  • changed append filter and added index and path attributes to node [view]
  • +
  • doc/translator.py -- unification for Python 2.6+ and 3.3+ (not finished) [view]
  • +
  • doc/translator.py unified for Python 2.6+ and Python 3.0+ [view]
  • +
  • make.bat: change current directory [view] and + [view]
  • +
  • removeRedundantWhiteSpace micro-optimization [view]
  • +
  • resolves the error of unbalanced tags opened/closed in docbook output: parser error : Opening and ending tag mismatch: para line 358 and tbody [view]
  • +
  • winbuild/pack_the_distribution_for_windows.py minor updates [view]

\endhtmlonly @@ -1012,169 +1412,169 @@

    -
  • Bug 436885 - c-source and h-source missing for latex [view]
  • -
  • Bug 625601 - FORTRAN: recognition free versus fixed formatted code [view]
  • -
  • Bug 626172 - Latex $projectname with "&" gets no escaped [view]
  • -
  • Bug 643618 - Fortran: variable with name "type" confuses doxygen [view]
  • -
  • Bug 674851 - Percent to prevent auto-linking in page title is not removed for navpath [view]
  • -
  • Bug 678436 - Nested \if messes up list items [view]
  • -
  • Bug 678436 - Nested \if messes up list items [view]
  • -
  • Bug 683115 - Command ignored when using umlauts in markdown and also C-comments in markdown didn't work properly [view]
  • -
  • Bug 692985 - Notes in xml output are not correctly separated [view]
  • -
  • Bug 705220 - Enables using unicode (non ASCII) to name output files [view]
  • -
  • Bug 705499 - Nested namespace causes incorrect display when referenced via .tag file [view]
  • -
  • Bug 712251 - Documentation for enumeration not generated [view]
  • -
  • Bug 720691 - Code coloring in case of file without extension [view]
  • -
  • Bug 721032 - Trouble with /cond /endcond [view]
  • -
  • Bug 721169 - Wrong call graph in simple situation [view]
  • -
  • Bug 721302 - [Latex/PDF] Merging brief and detailed description in file section [view]
  • -
  • Bug 721462 - Parsing problem with C++11 empty initializer lists [view]
  • -
  • Bug 721618 - Move constructors and move assignment operators of embedded classes of template classes cannot be matched. [view]
  • -
  • Bug 721878 - Dia diagrams not displayed by Firefox [view]
  • -
  • Bug 722457 - regression referencing namespaced type [view]
  • -
  • Bug 722603 - doxygen nested \if \endif sample not working [view]
  • -
  • Bug 722619 - doxygen 1.8.6 sorts the contents of a namespace by group within the Class List [view]
  • -
  • Bug 722711 - Link refs with no title swallow an extra newline [view]
  • -
  • Bug 722759 - Documentation for derived classes no longer has an "Additional Inherited Members" section after upgrading doxygen from 1.8.3.1 to 1.8.6 [view]
  • -
  • Bug 722786 - configure --prefix=/opt/foo not accepted [view]
  • -
  • Bug 722788 - Command \| not working when last character in markdown table line [view]
  • -
  • Bug 723299 - Last line of code block lost if it is only one character and there is no text afterward [view]
  • -
  • Bug 723314 - Doxygen crashes on incorrect end group /**< @} */ [view]
  • -
  • Bug 723516 - star is not printed in \code environment [view]
  • -
  • Bug 724241 - Internal inconsistency: namespace in IDL [view]
  • -
  • Bug 724949 - Server side (PHP) search broke in 1.8.3 [view]
  • -
  • Bug 726219 - python3 import style causes doxygen to ignore some inheritances [view]
  • -
  • Bug 726294 - Markdown Extra - fenced code block: '>' before tab width parsed as block quote [view]
  • -
  • Bug 726469 - Tilde sign in combination with <pre> and MARKDOWN_SUPPORT disabled [view]
  • -
  • Bug 726722 - Blockquote followed by text inserts an extra paragraph [view]
  • -
  • Bug 726734 - alignment of blockquotes in pdf [view]
  • -
  • Bug 728077 - Build fails when --with-libclang on Fedora [view]
  • -
  • Bug 728530 - Crash on \addindex \term [view]
  • -
  • A new files have been added but is not incorporated in the windows build part [view]
  • -
  • Add docbook directory to be removed as well [view]
  • -
  • Add extra (documenattion) directories to ignore pattern [view]
  • -
  • Add index support to context [view]
  • -
  • Add line numbers in case comment is not closed properly. [view]
  • -
  • Add template context for annotated class index [view]
  • -
  • Add validation of internal consistency to html entity mapper [view]
  • -
  • Add warning when encountering a nested comment start (/*) without matching end (*/). [view]
  • -
  • Added \latexinclude command (thanks to Juan Zaratiegui for the patch) [view]
  • -
  • Added basic arithmetic operations to the template expressions, and made the expression lexer faster [view]
  • -
  • Added dir tree nodes to the context [view]
  • -
  • Added directory info to the context [view]
  • -
  • Added doc/config.doc to .gitignore [view]
  • -
  • Added language update for Swedish (thanks to Björn Palmqvist) [view]
  • -
  • Added last and first attributes to index tree node [view]
  • -
  • Added missing \+ command to build LaTeX manual [view]
  • -
  • Added new language maintainer for Swedish, removed generated file language.doc [view]
  • -
  • Added optional [block] option to \htmlonly [view]
  • -
  • Added reference counting for all context objects [view]
  • -
  • Added stricter URL filtering to prevent DOM Based XSS when the tree view is enabled [view]
  • -
  • Added support for \-- and \--- to prevent interpretation as ndash and mdash [view]
  • -
  • Added support for elif to the template language [view]
  • -
  • Added support for range tag in the template language [view]
  • -
  • Alterative way to get rules information from flex [view]
  • -
  • Better message in case doxygen -u is used [view]
  • -
  • Changed "See Also" back to "See also" [view]
  • -
  • Chm don't add images multiple times [view]
  • -
  • Command \< and \> are not properly shown in section headers (and consequently in index) [view]
  • -
  • Consistency of usage of the word LaTeX in the documentation [view]
  • -
  • Context enhancement [view]
  • -
  • Corrected some definitions for some Fortran keywords [view]
  • -
  • Disabled config dependency check to avoid regression [view]
  • -
  • Documentation corrections [view]
  • -
  • Enable Previous and Next buttons in chm output file [view]
  • -
  • Enabling possibility to have { and } in (latex) index items [view]
  • -
  • Error message is given for make distclean as generated_src is a directory [view]
  • -
  • Extension in config.xml if type=string with format=image [view]
  • -
  • Extension specific filtering [view]
  • -
  • Fix id parsing for atx markdown headers [view]
  • -
  • Fix segfault on invalid bounding FIG when patching dot [view]
  • -
  • Fix to VHDL scanner. [view]
  • -
  • Fix typos in russian translation [view]
  • -
  • Fixed Tidy's 'empty span' warning in HTML output [view]
  • -
  • Fixed compiler warnings in section.h [view]
  • -
  • Fixed difference between generated XML schema and XML files for HTML entities [view]
  • -
  • Fixed issues with @parblock and added regression test case [view]
  • -
  • Fixed issues with SEPARATE_MEMBER_PAGES and INLINE_SIMPLE_STRUCTS [view]
  • -
  • Fixed memory leak in nested comment administration [view]
  • -
  • Fixed off-by one error for last character in compound.xsd [view]
  • -
  • Fixed potential crash caused by overloading the variadic warn function [view]
  • -
  • Fixed problem handling Obj-C protocol list when proceeded by a newline [view]
  • -
  • Fixed problem with ending a paragraph when htmlonly was at the end of a comment block [view]
  • -
  • Fixed typo in changelog [view]
  • -
  • Fixed typo in doxyindexer.vcproj [view]
  • -
  • Fixes for missing build dependencies [view]
  • -
  • Give message when PROJECT_LOGO cannot be found or cannot be converted [view]
  • -
  • Handlingh of -- by \c and <code> results in - adjusted documentation [view]
  • -
  • Improve rendering of sub and superscripts in LaTeX [view]
  • -
  • Improved handling of percent symbol [view]
  • -
  • Improved performance of rendering large index pages, by replacing images in the tables by spans [view]
  • -
  • In case of sections with the same name they are not reported. [view]
  • -
  • Inconsistency in usage of simplesecr versus simplesectsep corrected [view]
  • -
  • Inconsistency in usage of simplesecr versus simplesectsep corrected [view]
  • -
  • Incorrect handling dependencies [view]
  • -
  • Items XML_SCHEMA and XML_DTD declared obsolete [view]
  • -
  • List only the project pages in "Related Pages" [view]
  • -
  • Made documentation more consistent [view]
  • -
  • Make sure all ids in g_linkRefs are lower case [view]
  • -
  • Make the MAN_SUBDIR setting override the name of the directory the man pages are placed in. [view]
  • -
  • Meta tag in the HTML search page was not closed properly [view]
  • -
  • Minor fixes for the new build locations [view]
  • -
  • Missing & and chars after " in tree of chm documentation [view]
  • -
  • More context changes [view]
  • -
  • More work on the template and context mechanisms [view]
  • -
  • On windows citelist.doc remains [view]
  • -
  • Place where dot executable is found [view]
  • -
  • Properly escape the XCODE path. [view]
  • -
  • Pull out property names in Objective-C. [view]
  • -
  • Recognize all HTML4 special character entities [view]
  • -
  • Reduced and improved functionality of QList [view]
  • -
  • Removed config.doc as it is generated by configgen.py [view]
  • -
  • Removed generated file src/settings.h from source repository [view]
  • -
  • Removed message, minor restructuring [view]
  • -
  • Removed remark about installdox from the FAQ [view]
  • -
  • Restructured html entity handling [view]
  • -
  • Reverted #132 after submitter reported that it did not work [view]
  • -
  • Showing error message on windows in case on error on startup [view]
  • -
  • Simplified LaTeX header/footer escaping [view]
  • -
  • Some restructuring and some compiler warning fixes [view]
  • -
  • Spitting generated files better from source files [view]
  • -
  • Superfluous < sign [view]
  • -
  • Superfluous backslash in documentation [view]
  • -
  • Superfluous include removed [view]
  • -
  • Undo previous commit [view]
  • -
  • Unified DirFileContext and NestingContext [view]
  • -
  • Update doctokenizer.l [view]
  • -
  • Update doctokenizer.l [view]
  • -
  • Updated copyright [view]
  • -
  • Use \newline i.s.o. \par for linebreaks in LaTeX [view]
  • -
  • Use hook arrow for hyphens in symbol names in the LaTeX output. [view]
  • -
  • Wrong UTF 8 codes [view]
  • -
  • Fix broken links to subpages in LaTeX output [view]
  • -
  • \xmlonly aoppeared twice in see also section of \htmlonly and \docbookonly [view]
  • -
  • add css-escape to avoid jquery based xss [view]
  • -
  • add parameter [view]
  • -
  • add search.py, a client for doxygen_sqlite3.db [view]
  • -
  • add space between br and / for better compatibility [view]
  • -
  • added option to have numbers in the bookmark pane (PDF output) [view]
  • -
  • config.l: dependency checks for booleans [view]
  • -
  • detect python2 as Python 2 binary [view]
  • -
  • fixed compile issue on Linux [view]
  • -
  • pass libclang header file location; add paths for Ubuntu's llvm-3.4 [view]
  • -
  • sqlite3: SQLITE_TRANSIENTs [view]
  • -
  • sqlite3: add new searches to search.py [view]
  • -
  • sqlite3: clear bindings on errors and more care with return [view]
  • -
  • sqlite3: extract more info [view]
  • -
  • sqlite3: fedora has libsqlite3.so in /usr/lib64 [view]
  • -
  • sqlite3: leave out insertMemberReference until xref location is valid [view]
  • -
  • sqlite3: remove some debug messages [view]
  • -
  • sqlite3: speedup the SELECTs [view]
  • -
  • sqlite3: updates [view]
  • -
  • sqlite3: use the new qtools API [view]
  • -
  • testsqlite3: a test for sqlite3gen [view]
  • -
  • util/patternMatch: break when pattern is found [view]
  • -
  • util/patternMatch: don't extract a QCString(QFileInfo) each time we QRegExp.match [view]
  • +
  • Bug 2479 - c-source and h-source missing for latex [view]
  • +
  • Bug 3879 - FORTRAN: recognition free versus fixed formatted code [view]
  • +
  • Bug 3893 - Latex $projectname with "&" gets no escaped [view]
  • +
  • Bug 4179 - Fortran: variable with name "type" confuses doxygen [view]
  • +
  • Bug 4683 - Percent to prevent auto-linking in page title is not removed for navpath [view]
  • +
  • Bug 4762 - Nested \if messes up list items [view]
  • +
  • Bug 4762 - Nested \if messes up list items [view]
  • +
  • Bug 4870 - Command ignored when using umlauts in markdown and also C-comments in markdown didn't work properly [view]
  • +
  • Bug 5052 - Notes in xml output are not correctly separated [view]
  • +
  • Bug 5254 - Enables using unicode (non ASCII) to name output files [view]
  • +
  • Bug 5258 - Nested namespace causes incorrect display when referenced via .tag file [view]
  • +
  • Bug 5348 - Documentation for enumeration not generated [view]
  • +
  • Bug 5383 - Code coloring in case of file without extension [view]
  • +
  • Bug 5387 - Trouble with /cond /endcond [view]
  • +
  • Bug 5388 - Wrong call graph in simple situation [view]
  • +
  • Bug 5389 - [Latex/PDF] Merging brief and detailed description in file section [view]
  • +
  • Bug 5390 - Parsing problem with C++11 empty initializer lists [view]
  • +
  • Bug 5393 - Move constructors and move assignment operators of embedded classes of template classes cannot be matched. [view]
  • +
  • Bug 5396 - Dia diagrams not displayed by Firefox [view]
  • +
  • Bug 5404 - regression referencing namespaced type [view]
  • +
  • Bug 5408 - doxygen nested \if \endif sample not working [view]
  • +
  • Bug 5410 - doxygen 1.8.6 sorts the contents of a namespace by group within the Class List [view]
  • +
  • Bug 5414 - Link refs with no title swallow an extra newline [view]
  • +
  • Bug 5415 - Documentation for derived classes no longer has an "Additional Inherited Members" section after upgrading doxygen from 1.8.3.1 to 1.8.6 [view]
  • +
  • Bug 5416 - configure --prefix=/opt/foo not accepted [view]
  • +
  • Bug 5417 - Command \| not working when last character in markdown table line [view]
  • +
  • Bug 5421 - Last line of code block lost if it is only one character and there is no text afterward [view]
  • +
  • Bug 5422 - Doxygen crashes on incorrect end group /**< @} */ [view]
  • +
  • Bug 5424 - star is not printed in \code environment [view]
  • +
  • Bug 5425 - Internal inconsistency: namespace in IDL [view]
  • +
  • Bug 5428 - Server side (PHP) search broke in 1.8.3 [view]
  • +
  • Bug 5436 - python3 import style causes doxygen to ignore some inheritances [view]
  • +
  • Bug 5437 - Markdown Extra - fenced code block: '>' before tab width parsed as block quote [view]
  • +
  • Bug 5438 - Tilde sign in combination with <pre> and MARKDOWN_SUPPORT disabled [view]
  • +
  • Bug 5439 - Blockquote followed by text inserts an extra paragraph [view]
  • +
  • Bug 5440 - alignment of blockquotes in pdf [view]
  • +
  • Bug 5449 - Build fails when --with-libclang on Fedora [view]
  • +
  • Bug 5456 - Crash on \addindex \term [view]
  • +
  • A new files have been added but is not incorporated in the windows build part [view]
  • +
  • Add docbook directory to be removed as well [view]
  • +
  • Add extra (documenattion) directories to ignore pattern [view]
  • +
  • Add index support to context [view]
  • +
  • Add line numbers in case comment is not closed properly. [view]
  • +
  • Add template context for annotated class index [view]
  • +
  • Add validation of internal consistency to html entity mapper [view]
  • +
  • Add warning when encountering a nested comment start (/*) without matching end (*/). [view]
  • +
  • Added \latexinclude command (thanks to Juan Zaratiegui for the patch) [view]
  • +
  • Added basic arithmetic operations to the template expressions, and made the expression lexer faster [view]
  • +
  • Added dir tree nodes to the context [view]
  • +
  • Added directory info to the context [view]
  • +
  • Added doc/config.doc to .gitignore [view]
  • +
  • Added language update for Swedish (thanks to Björn Palmqvist) [view]
  • +
  • Added last and first attributes to index tree node [view]
  • +
  • Added missing \+ command to build LaTeX manual [view]
  • +
  • Added new language maintainer for Swedish, removed generated file language.doc [view]
  • +
  • Added optional [block] option to \htmlonly [view]
  • +
  • Added reference counting for all context objects [view]
  • +
  • Added stricter URL filtering to prevent DOM Based XSS when the tree view is enabled [view]
  • +
  • Added support for \-- and \--- to prevent interpretation as ndash and mdash [view]
  • +
  • Added support for elif to the template language [view]
  • +
  • Added support for range tag in the template language [view]
  • +
  • Alternative way to get rules information from flex [view]
  • +
  • Better message in case doxygen -u is used [view]
  • +
  • Changed "See Also" back to "See also" [view]
  • +
  • Chm don't add images multiple times [view]
  • +
  • Command \< and \> are not properly shown in section headers (and consequently in index) [view]
  • +
  • Consistency of usage of the word LaTeX in the documentation [view]
  • +
  • Context enhancement [view]
  • +
  • Corrected some definitions for some Fortran keywords [view]
  • +
  • Disabled config dependency check to avoid regression [view]
  • +
  • Documentation corrections [view]
  • +
  • Enable Previous and Next buttons in chm output file [view]
  • +
  • Enabling possibility to have { and } in (latex) index items [view]
  • +
  • Error message is given for make distclean as generated_src is a directory [view]
  • +
  • Extension in config.xml if type=string with format=image [view]
  • +
  • Extension specific filtering [view]
  • +
  • Fix id parsing for atx markdown headers [view]
  • +
  • Fix segfault on invalid bounding FIG when patching dot [view]
  • +
  • Fix to VHDL scanner. [view]
  • +
  • Fix typos in russian translation [view]
  • +
  • Fixed Tidy's 'empty span' warning in HTML output [view]
  • +
  • Fixed compiler warnings in section.h [view]
  • +
  • Fixed difference between generated XML schema and XML files for HTML entities [view]
  • +
  • Fixed issues with @parblock and added regression test case [view]
  • +
  • Fixed issues with SEPARATE_MEMBER_PAGES and INLINE_SIMPLE_STRUCTS [view]
  • +
  • Fixed memory leak in nested comment administration [view]
  • +
  • Fixed off-by one error for last character in compound.xsd [view]
  • +
  • Fixed potential crash caused by overloading the variadic warn function [view]
  • +
  • Fixed problem handling Obj-C protocol list when proceeded by a newline [view]
  • +
  • Fixed problem with ending a paragraph when htmlonly was at the end of a comment block [view]
  • +
  • Fixed typo in changelog [view]
  • +
  • Fixed typo in doxyindexer.vcproj [view]
  • +
  • Fixes for missing build dependencies [view]
  • +
  • Give message when PROJECT_LOGO cannot be found or cannot be converted [view]
  • +
  • Handlingh of -- by \c and <code> results in - adjusted documentation [view]
  • +
  • Improve rendering of sub and superscripts in LaTeX [view]
  • +
  • Improved handling of percent symbol [view]
  • +
  • Improved performance of rendering large index pages, by replacing images in the tables by spans [view]
  • +
  • In case of sections with the same name they are not reported. [view]
  • +
  • Inconsistency in usage of simplesecr versus simplesectsep corrected [view]
  • +
  • Inconsistency in usage of simplesecr versus simplesectsep corrected [view]
  • +
  • Incorrect handling dependencies [view]
  • +
  • Items XML_SCHEMA and XML_DTD declared obsolete [view]
  • +
  • List only the project pages in "Related Pages" [view]
  • +
  • Made documentation more consistent [view]
  • +
  • Make sure all ids in g_linkRefs are lower case [view]
  • +
  • Make the MAN_SUBDIR setting override the name of the directory the man pages are placed in. [view]
  • +
  • Meta tag in the HTML search page was not closed properly [view]
  • +
  • Minor fixes for the new build locations [view]
  • +
  • Missing & and chars after " in tree of chm documentation [view]
  • +
  • More context changes [view]
  • +
  • More work on the template and context mechanisms [view]
  • +
  • On windows citelist.doc remains [view]
  • +
  • Place where dot executable is found [view]
  • +
  • Properly escape the XCODE path. [view]
  • +
  • Pull out property names in Objective-C. [view]
  • +
  • Recognize all HTML4 special character entities [view]
  • +
  • Reduced and improved functionality of QList [view]
  • +
  • Removed config.doc as it is generated by configgen.py [view]
  • +
  • Removed generated file src/settings.h from source repository [view]
  • +
  • Removed message, minor restructuring [view]
  • +
  • Removed remark about installdox from the FAQ [view]
  • +
  • Restructured html entity handling [view]
  • +
  • Reverted #132 after submitter reported that it did not work [view]
  • +
  • Showing error message on windows in case on error on startup [view]
  • +
  • Simplified LaTeX header/footer escaping [view]
  • +
  • Some restructuring and some compiler warning fixes [view]
  • +
  • Spitting generated files better from source files [view]
  • +
  • Superfluous < sign [view]
  • +
  • Superfluous backslash in documentation [view]
  • +
  • Superfluous include removed [view]
  • +
  • Undo previous commit [view]
  • +
  • Unified DirFileContext and NestingContext [view]
  • +
  • Update doctokenizer.l [view]
  • +
  • Update doctokenizer.l [view]
  • +
  • Updated copyright [view]
  • +
  • Use \newline i.s.o. \par for linebreaks in LaTeX [view]
  • +
  • Use hook arrow for hyphens in symbol names in the LaTeX output. [view]
  • +
  • Wrong UTF 8 codes [view]
  • +
  • Fix broken links to subpages in LaTeX output [view]
  • +
  • \xmlonly aoppeared twice in see also section of \htmlonly and \docbookonly [view]
  • +
  • add css-escape to avoid jquery based xss [view]
  • +
  • add parameter [view]
  • +
  • add search.py, a client for doxygen_sqlite3.db [view]
  • +
  • add space between br and / for better compatibility [view]
  • +
  • added option to have numbers in the bookmark pane (PDF output) [view]
  • +
  • config.l: dependency checks for booleans [view]
  • +
  • detect python2 as Python 2 binary [view]
  • +
  • fixed compile issue on Linux [view]
  • +
  • pass libclang header file location; add paths for Ubuntu's llvm-3.4 [view]
  • +
  • sqlite3: SQLITE_TRANSIENTs [view]
  • +
  • sqlite3: add new searches to search.py [view]
  • +
  • sqlite3: clear bindings on errors and more care with return [view]
  • +
  • sqlite3: extract more info [view]
  • +
  • sqlite3: fedora has libsqlite3.so in /usr/lib64 [view]
  • +
  • sqlite3: leave out insertMemberReference until xref location is valid [view]
  • +
  • sqlite3: remove some debug messages [view]
  • +
  • sqlite3: speedup the SELECTs [view]
  • +
  • sqlite3: updates [view]
  • +
  • sqlite3: use the new qtools API [view]
  • +
  • testsqlite3: a test for sqlite3gen [view]
  • +
  • util/patternMatch: break when pattern is found [view]
  • +
  • util/patternMatch: don't extract a QCString(QFileInfo) each time we QRegExp.match [view]

\endhtmlonly @@ -1186,67 +1586,67 @@

Bug fixes

    -
  • Bug 154880 - if "using namespace" used, call of a static member function in C++ is not recognized or recognized wrong
  • -
  • Bug 647517 - make install prepends a slash to the installation path Removed superfluous /
  • -
  • Bug 668424 - HTML links in RTF output are broken
  • -
  • Bug 683897 - class list not sorted?
  • -
  • Bug 692004 - show includes for free functions
  • -
  • Bug 693537 - Create possibility to keep user comments in Doxyfile
  • -
  • Bug 701949 - Latex: Hyperlinks for \secreflist / \refitem
  • -
  • Bug 702265 - Generated Doxyfile differs from result of doxygen -u (partial fix)
  • -
  • Bug 705910 - Indexing and searching cannot treat non ASCII identifiers
  • -
  • Bug 706520 - Fortran: in body documentation lands on wrong place In some cases, in propriety code, with in body Fortran documentation doxygen crashed. I REOPENED Bug_706520 for this
  • -
  • Bug 706804 - Fortran: Doxygen mixes up function-attributes with the return type test string should not be equal to "function" but should contain "function"
  • -
  • Bug 706813 - RPM build via spec file fails
  • -
  • Bug 706874 - Doxygen crash if missing new-line in a snippet
  • -
  • Bug 706916 - C++ exception specifications are no longer parsed correctly
  • -
  • Bug 707102 - update the Japanese translation
  • -
  • Bug 707353 - Accept IDs using unicode(non ASCII) characters in python codes
  • -
  • Bug 707389 - GENERATE_TREEVIEW=YES disables touch scrolling with Android 3.x
  • -
  • Bug 707431 - Cannot @ref or @link C++ operator overloads
  • -
  • Bug 707483 - Wrong page number and header in pdf output
  • -
  • Bug 707554 - When I use @INCLUDE DoxyWizard is closed Current directory was not changed at the right time so the include files could not be found in the "current" directory (i.e. the directory where the Doxyfile resides too, as this directory is shown as the current directory in the doxywizard). This is also important when the doxywizard is started from a shortcut.
  • -
  • Bug 707567 - Asterisks in comment wrongly displayed for @code
  • -
  • Bug 707641 - `FILTER_SOURCE_FILES=YES` required to build CALL_GRAPHS https://bugzilla.gnome.org/show_bug.cgi?id=707641
  • -
  • Bug 707685 - Fortran: error message when missing last EOL In case the original buffer in either fixed or free format code does not contain an EOL as last character, add it.
  • -
  • Bug 707713 - Add support for dia diagrams
  • -
  • Bug 707825 - Const treatment
  • -
  • Bug 707925 - False warning for Java "warning: missing ( in exception list on member"
  • -
  • Bug 707985 - Strange output when : appended to an parameter description
  • -
  • Bug 707995 - @copydoc not working for const member overloads
  • -
  • Bug 708446 - Deprecated list breaks HTML tree with xhtml extension
  • -
  • Bug 708455 - Enabling INLINE_SIMPLE_STRUCTS messes up Data Structures in tree
  • -
  • Bug 708806 - Wrong path to graph_legend figure in graph_legend.html when CREATE_SUBDIRS = YES
  • -
  • Bug 709052 - Templated and non-templated method mixup documentation
  • -
  • Bug 709226 - Struct member fields not documented with INLINE_SIMPLE_STRUCTS
  • -
  • Bug 709526 - C++ parsing problem with operators <<, <, >, >> inside templates
  • -
  • Bug 709706 - Terminating C comments within markdown files breaks aliases
  • -
  • Bug 709780 - Copying of files via \image tag can get confused by symlinks at the destination
  • -
  • Bug 709803 - Generated hhc file contains an error for a section of a mainpage
  • -
  • Bug 709845 - Fortran: problem with types with name starting with is
  • -
  • Bug 709870 - Broken links on members HTML page when using BUILTIN_STL_SUPPORT
  • -
  • Bug 709921 - position of linebreak in template argument list affects inheritance relation
  • -
  • Bug 710917 - Segfault while parsing a C file
  • -
  • Bug 710998 - latex_count=5 is not enough
  • -
  • Bug 711004 - Vertical bars cannot be sent straight to makeindex
  • -
  • Bug 711097 - Compiler warnings because char is unsigned on ARM/PPC: "comparison is always false"
  • -
  • Bug 711378 - Nested Aliases fail when the nested alias has two or more arguments.
  • -
  • Bug 711639 - [PATCH] #include does not work with absolute paths
  • -
  • Bug 711723 - Comment /**/ confuses doxygen
  • -
  • Bug 711787 - Long initialization line in C stops doxygen An extra "breakpoint" in the input string has been created in the form of a , (comma), so for initialization lines the line will be shorter and the , (comma) will be copied later on.
  • -
  • Bug 712795 - segmentation fault in memberdef.cpp
  • -
  • Bug 712819 - Some external namespaces appear in list despite having ALLEXTERNALS = NO
  • -
  • Bug 715172 - Consistently document Fortran's equivalent function bodies
  • -
  • Bug 719389 - HTML escaping incorrectly applied in source tooltips
  • -
  • Bug 719422 - private java class is mentioned in inherited by list of super class
  • -
  • Bug 719463 - Invalid null key and segmentation fault
  • -
  • Bug 719489 - Label "abstract" instead of "pure virtual" for Java language
  • -
  • Bug 719525 - Can't build because the definitions of ***YY_flex_debug are missing.
  • -
  • Bug 719591 - expand_as_defined macro does not properly work
  • -
  • Bug 719639 - @xrefitem with empty heading string
  • -
  • Bug 720046 - Document inline objective-C blocks
  • -
  • Bug 720092 - USE_MDFILE_AS_MAINPAGE doesn't work if full path is specified.
  • -
  • Bug 720580 - inline source browser shows wrong code with multi-line c++11's raw strings
  • +
  • Bug 1293 - if "using namespace" used, call of a static member function in C++ is not recognized or recognized wrong
  • +
  • Bug 4237 - make install prepends a slash to the installation path Removed superfluous /
  • +
  • Bug 4547 - HTML links in RTF output are broken
  • +
  • Bug 4885 - class list not sorted?
  • +
  • Bug 5037 - show includes for free functions
  • +
  • Bug 5070 - Create possibility to keep user comments in Doxyfile
  • +
  • Bug 5207 - Latex: Hyperlinks for \secreflist / \refitem
  • +
  • Bug 5213 - Generated Doxyfile differs from result of doxygen -u (partial fix)
  • +
  • Bug 5263 - Indexing and searching cannot treat non ASCII identifiers
  • +
  • Bug 5270 - Fortran: in body documentation lands on wrong place In some cases, in propriety code, with in body Fortran documentation doxygen crashed. I REOPENED Bug_706520 for this
  • +
  • Bug 5271 - Fortran: Doxygen mixes up function-attributes with the return type test string should not be equal to "function" but should contain "function"
  • +
  • Bug 5272 - RPM build via spec file fails
  • +
  • Bug 5274 - Doxygen crash if missing new-line in a snippet
  • +
  • Bug 5275 - C++ exception specifications are no longer parsed correctly
  • +
  • Bug 5278 - update the Japanese translation
  • +
  • Bug 5282 - Accept IDs using unicode(non ASCII) characters in python codes
  • +
  • Bug 5283 - GENERATE_TREEVIEW=YES disables touch scrolling with Android 3.x
  • +
  • Bug 5284 - Cannot @ref or @link C++ operator overloads
  • +
  • Bug 5285 - Wrong page number and header in pdf output
  • +
  • Bug 5286 - When I use @INCLUDE DoxyWizard is closed Current directory was not changed at the right time so the include files could not be found in the "current" directory (i.e. the directory where the Doxyfile resides too, as this directory is shown as the current directory in the doxywizard). This is also important when the doxywizard is started from a shortcut.
  • +
  • Bug 5288 - Asterisks in comment wrongly displayed for @code
  • +
  • Bug 5289 - `FILTER_SOURCE_FILES=YES` required to build CALL_GRAPHS 5289
  • +
  • Bug 5290 - Fortran: error message when missing last EOL In case the original buffer in either fixed or free format code does not contain an EOL as last character, add it.
  • +
  • Bug 5291 - Add support for dia diagrams
  • +
  • Bug 5292 - Const treatment
  • +
  • Bug 5293 - False warning for Java "warning: missing ( in exception list on member"
  • +
  • Bug 5295 - Strange output when : appended to an parameter description
  • +
  • Bug 5296 - @copydoc not working for const member overloads
  • +
  • Bug 5298 - Deprecated list breaks HTML tree with xhtml extension
  • +
  • Bug 5299 - Enabling INLINE_SIMPLE_STRUCTS messes up Data Structures in tree
  • +
  • Bug 5301 - Wrong path to graph_legend figure in graph_legend.html when CREATE_SUBDIRS = YES
  • +
  • Bug 5302 - Templated and non-templated method mixup documentation
  • +
  • Bug 5303 - Struct member fields not documented with INLINE_SIMPLE_STRUCTS
  • +
  • Bug 5305 - C++ parsing problem with operators <<, <, >, >> inside templates
  • +
  • Bug 5308 - Terminating C comments within markdown files breaks aliases
  • +
  • Bug 5310 - Copying of files via \image tag can get confused by symlinks at the destination
  • +
  • Bug 5311 - Generated hhc file contains an error for a section of a mainpage
  • +
  • Bug 5313 - Fortran: problem with types with name starting with is
  • +
  • Bug 5314 - Broken links on members HTML page when using BUILTIN_STL_SUPPORT
  • +
  • Bug 5315 - position of linebreak in template argument list affects inheritance relation
  • +
  • Bug 5329 - Segfault while parsing a C file
  • +
  • Bug 5331 - latex_count=5 is not enough
  • +
  • Bug 5332 - Vertical bars cannot be sent straight to makeindex
  • +
  • Bug 5334 - Compiler warnings because char is unsigned on ARM/PPC: "comparison is always false"
  • +
  • Bug 5340 - Nested Aliases fail when the nested alias has two or more arguments.
  • +
  • Bug 5344 - [PATCH] #include does not work with absolute paths
  • +
  • Bug 5345 - Comment /**/ confuses doxygen
  • +
  • Bug 5347 - Long initialization line in C stops doxygen An extra "breakpoint" in the input string has been created in the form of a , (comma), so for initialization lines the line will be shorter and the , (comma) will be copied later on.
  • +
  • Bug 5355 - segmentation fault in memberdef.cpp
  • +
  • Bug 5358 - Some external namespaces appear in list despite having ALLEXTERNALS = NO
  • +
  • Bug 5360 - Consistently document Fortran's equivalent function bodies
  • +
  • Bug 5361 - HTML escaping incorrectly applied in source tooltips
  • +
  • Bug 5362 - private java class is mentioned in inherited by list of super class
  • +
  • Bug 5363 - Invalid null key and segmentation fault
  • +
  • Bug 5364 - Label "abstract" instead of "pure virtual" for Java language
  • +
  • Bug 5365 - Can't build because the definitions of ***YY_flex_debug are missing.
  • +
  • Bug 5367 - expand_as_defined macro does not properly work
  • +
  • Bug 5369 - @xrefitem with empty heading string
  • +
  • Bug 5372 - Document inline objective-C blocks
  • +
  • Bug 5374 - USE_MDFILE_AS_MAINPAGE doesn't work if full path is specified.
  • +
  • Bug 5381 - inline source browser shows wrong code with multi-line c++11's raw strings
  • Add support for honoring svg image format preference in msc
  • Added @parblock and @endparblock commands
  • Added compile support for Mavericks
  • @@ -1296,9 +1696,10 @@
  • Small spelling correction to generate an rtf extensions file -> to generate a rtf extensions file
  • Some texts can be independent of \htmlonly / \latexonly
  • Space missing in error message. the word 'in' and the vale of filesOption were concatenated
  • -
  • This patch contains changes regarding the build system so that the *nix and Windows systems use the same information (consistency). Some use names routine names have been changed (from .l files with -P option) to reflect the file name that generated the routines, this makes it easier to create a general procedure. A number of include / header files are files are generated from different file types (html, xml, js), due some limitations of the windows build system the generated file names had to be changed (the extension in the windows build system is only available including the '.' so e.g. the file jquery_fx.js generates now jquery_fx.js.h instead of jquery_fx_js.h) In the windows version the creation of .cpp files from .l files has been adjusted to correct for the YY_BUF_SIZE problems. Furthermore on windows (and also used on *nix) some commends have been replaced with python scripts so that on windows only python is need (besides flex and bison). On *nix also perl is required for the generation using tmake.
  • +
  • This patch contains changes regarding the build system so that the *nix and Windows systems use the same information (consistency). Some use names routine names have been changed (from .l files with -P option) to reflect the file name that generated the routines, this makes it easier to create a general procedure. A number of include / header files are files are generated from different file types (html, xml, js), due some limitations of the windows build system the generated file names had to be changed (the extension in the windows build system is only available including the '.' so e.g. the file jquery_fx.js generates now jquery_fx.js.h instead of jquery_fx_js.h) In the windows version the creation of .cpp files from .l files has been adjusted to correct for the YY_BUF_SIZE problems. Furthermore on windows (and also used on *nix) some commands have been replaced with python scripts so that on windows only python is need (besides flex and bison). On *nix also perl is required for the generation using tmake.
  • Updated Visual Studio project files to include new source files
  • -
  • Usage of the -d option corrected Giving an error when a wrong -d option is given. Made some error messages more consistent. Corrected usage of the exit call, in case of an error: exit(1) otherwise exit(0). A closer look should be made on exitDoxygen as it does not contain any exit statements and it is unclear (to me) when it is used.
  • VHDL-2008 and arrays on unconstrained elements
  • +
  • Usage of the -d option corrected Giving an error when a wrong -d option is given. Made some error messages more consistent. Corrected usage of the exit call, in case of an error: exit(1) otherwise exit(0). A closer look should be made on exitDoxygen as it does not contain any exit statements and it is unclear (to me) when it is used.
  • +
  • VHDL-2008 and arrays on unconstrained elements
  • consider currentFile when searching for global symbols
  • doc/language.doc generated from the updated sources (bgcolored)
  • doc/language.tpl -- UTF-8 reflected in the langhowto template
  • @@ -1333,54 +1734,54 @@

Bug fixes

    -
  • Bug 668007 - HTML commands - documentation of </dd> tag missing
  • -
  • Bug 676879 - parameter on doxywizard manual Added sentence in respect to possible argument for doxywizard Added images to the LaTex / pdf version of the manual
  • -
  • Bug 684324 - Strange behavior when placing cite within brief.
  • -
  • Bug 688858 - SHORT_NAMES break references to \page in PDF output
  • -
  • Bug 691315 - Line breaks are not copied/displayed properly when using @copydoc.
  • -
  • Bug 691830 - Logical confusion with DISABLE_INDEX and GENERATE_TREEVIEW
  • -
  • Bug 694147 - #undef is ignored by doxygen
  • -
  • Bug 698998 - vhdldocgen fails to generate proper latex for VHDL record type
  • -
  • Bug 700385 - Incorrectly parsed Q_PROPERTY with 'unsigned int' type
  • -
  • Bug 700646 - XML output does not handle HTML entities in titles
  • -
  • Bug 700693 - Duplicate entry for class template member function with no parameter
  • -
  • Bug 700696 - Template static member functions duplicated as non-static public
  • -
  • Bug 700709 - typedef warning when "using" some operator functions
  • -
  • Bug 700710 - Docbook output produces invalid XML for <programlisting> elements
  • -
  • Bug 700740 - Doxygen does not create links on C++ 11 style enum classes
  • -
  • Bug 700788 - support @cite within brief description.
  • -
  • Bug 700908 - code after \@cond is removed
  • -
  • Bug 701295 - Doxygen 1.8.4 goes into an endless loop
  • -
  • Bug 701314 - URLs are not created on C# classes in some cases
  • -
  • Bug 701550 - Error List window in Visual Studio no longer recognizes doxygen warnings
  • -
  • Bug 701771 - EXPAND_AS_DEFINED not working with some project structures
  • -
  • Bug 701919 - VHDL cross-references fail when unpaired apostrophe present
  • -
  • Bug 702066 - VHDL: Bad HTML formatting when using inline sources
  • -
  • Bug 702170 - Missing space before optional option in method argument list
  • -
  • Bug 702189 - Markdown and @image
  • -
  • Bug 702491 - UTF-16LE BOM not handled by source browser and \snippet
  • -
  • Bug 702590 - Crash with TAB_SIZE=-1
  • -
  • Bug 702676 - Closing ) of function in function documentation is in wrong color
  • -
  • Bug 703574 - Add configure options to enable static SQLite and non-standard SQLite
  • -
  • Bug 703112 - Backward documentation comments are not allowed in Fortran type-bound procedures
  • -
  • Bug 703133 - "operator--()" transformed to "operator&ndash;()" in @copydoc
  • -
  • Bug 703170 - Segmentation fault parsing a fortran file
  • -
  • Bug 703213 - Can't use @ref instead of \ref with msc
  • -
  • Bug 703301 - Misleading warning about DOT font
  • -
  • Bug 703791 - Out-of-line docs for class template specialisations failing
  • -
  • Bug 704079 - Generated XML is malformed
  • -
  • Bug 704172 - Nested Aliases fail when the nested alias has two or more arguments.
  • -
  • Bug 704412 - doxygen don't hide private Inherited Members
  • -
  • Bug 704971 - Can't build with MinGW
  • -
  • Bug 704973 - Doxywizard can't show file names using non-ASCII(Unicode)
  • -
  • Bug 705190 - Incorrectly parsed Q_PROPERTY with 'long long' or 'long int' type
  • -
  • Bug 705217 - Can't use unicode characters to execute external commands
  • -
  • Bug 705218 - QRegExp doesn't work with 80-FF
  • -
  • Bug 705219 - Accept IDs using unicode for C/C++ preprocessor
  • -
  • Bug 705586 - @code tag as the last line of a comment block causes the parser to hang
  • -
  • Bug 705702 - Post-comment blocks on C++11 using definitions attach to following entity
  • -
  • Bug 706236 - Confusing use of GENERATE_TAGFILE
  • -
  • Bug 706520 - Fortran: in body documentation lands on wrong place
  • +
  • Bug 4532 - HTML commands - documentation of </dd> tag missing
  • +
  • Bug 4710 - parameter on doxywizard manual Added sentence in respect to possible argument for doxywizard Added images to the LaTex / pdf version of the manual
  • +
  • Bug 4890 - Strange behavior when placing cite within brief.
  • +
  • Bug 4963 - SHORT_NAMES break references to \page in PDF output
  • +
  • Bug 5023 - Line breaks are not copied/displayed properly when using @copydoc.
  • +
  • Bug 5035 - Logical confusion with DISABLE_INDEX and GENERATE_TREEVIEW
  • +
  • Bug 5080 - #undef is ignored by doxygen
  • +
  • Bug 5153 - vhdldocgen fails to generate proper latex for VHDL record type
  • +
  • Bug 5175 - Incorrectly parsed Q_PROPERTY with 'unsigned int' type
  • +
  • Bug 5184 - XML output does not handle HTML entities in titles
  • +
  • Bug 5185 - Duplicate entry for class template member function with no parameter
  • +
  • Bug 5186 - Template static member functions duplicated as non-static public
  • +
  • Bug 5187 - typedef warning when "using" some operator functions
  • +
  • Bug 5188 - Docbook output produces invalid XML for <programlisting> elements
  • +
  • Bug 5189 - Doxygen does not create links on C++ 11 style enum classes
  • +
  • Bug 5192 - support @cite within brief description.
  • +
  • Bug 5194 - code after \@cond is removed
  • +
  • Bug 5198 - Doxygen 1.8.4 goes into an endless loop
  • +
  • Bug 5199 - URLs are not created on C# classes in some cases
  • +
  • Bug 5200 - Error List window in Visual Studio no longer recognizes doxygen warnings
  • +
  • Bug 5201 - EXPAND_AS_DEFINED not working with some project structures
  • +
  • Bug 5205 - VHDL cross-references fail when unpaired apostrophe present
  • +
  • Bug 5209 - VHDL: Bad HTML formatting when using inline sources
  • +
  • Bug 5211 - Missing space before optional option in method argument list
  • +
  • Bug 5212 - Markdown and @image
  • +
  • Bug 5214 - UTF-16LE BOM not handled by source browser and \snippet
  • +
  • Bug 5216 - Crash with TAB_SIZE=-1
  • +
  • Bug 5217 - Closing ) of function in function documentation is in wrong color
  • +
  • Bug 5230 - Add configure options to enable static SQLite and non-standard SQLite
  • +
  • Bug 5223 - Backward documentation comments are not allowed in Fortran type-bound procedures
  • +
  • Bug 5224 - "operator--()" transformed to "operator&ndash;()" in @copydoc
  • +
  • Bug 5225 - Segmentation fault parsing a fortran file
  • +
  • Bug 5226 - Can't use @ref instead of \ref with msc
  • +
  • Bug 5228 - Misleading warning about DOT font
  • +
  • Bug 5233 - Out-of-line docs for class template specialisations failing
  • +
  • Bug 5234 - Generated XML is malformed
  • +
  • Bug 5239 - Nested Aliases fail when the nested alias has two or more arguments.
  • +
  • Bug 5242 - doxygen don't hide private Inherited Members
  • +
  • Bug 5246 - Can't build with MinGW
  • +
  • Bug 5247 - Doxywizard can't show file names using non-ASCII(Unicode)
  • +
  • Bug 5250 - Incorrectly parsed Q_PROPERTY with 'long long' or 'long int' type
  • +
  • Bug 5251 - Can't use unicode characters to execute external commands
  • +
  • Bug 5252 - QRegExp doesn't work with 80-FF
  • +
  • Bug 5253 - Accept IDs using unicode for C/C++ preprocessor
  • +
  • Bug 5260 - @code tag as the last line of a comment block causes the parser to hang
  • +
  • Bug 5261 - Post-comment blocks on C++11 using definitions attach to following entity
  • +
  • Bug 5268 - Confusing use of GENERATE_TAGFILE
  • +
  • Bug 5270 - Fortran: in body documentation lands on wrong place
  • Small typo corrected in doxywizard_usage.doc Generated config.doc file in git is not identical to the generated one
  • Various improvements to the (still experimental) sqlite3 support (thanks to Adrian Negreanu)
  • jquery: use the env MINIFIER if specified
  • @@ -1410,7 +1811,7 @@
  • Replaced utf8 character that broke latex compilation of the manual
  • Fixed unused parameter warnings
  • Add support for writing and importing C++11 style enums to and from tag files
  • -
  • Fixed regression introduced by fixed bug 700740
  • +
  • Fixed regression introduced by fixed bug 5189
  • Fixed type in function name
  • Remove some unneeded and still enabled debug info
  • Included fix for "Constant Groups" regression on file pages (thanks to Michael Stahl)
  • @@ -1427,11 +1828,11 @@

    Changes

      -
    • id 686384: When INLINE_SIMPLE_STRUCTS is enabled, also structs with +
    • id 4929: 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.
    • +
    • id 4846: More consistent warnings and errors.

    New features

      @@ -1460,110 +1861,110 @@
    • Included patch by Markus Geimer which adds a new option LATEX_EXTRA_FILES which works similarly to HTML_EXTRA_FILES in that it copied specified files to the LaTeX output directory.
    • -
    • id 698223: Added support for C++11 keyword alignas
    • -
    • id 693178: Added support for processing DocSets with Dash (thanks to +
    • id 5149: Added support for C++11 keyword alignas
    • +
    • id 5056: Added support for processing DocSets with Dash (thanks to Bogdan Popescu for the patch
    • -
    • id 684782: Added option EXTERNAL_PAGES which can be used to determine +
    • id 4900: Added option EXTERNAL_PAGES which can be used to determine whether or not pages importated via tags will appear under related pages (similar to EXTERNAL_GROUPS).
    • -
    • id 692227: Added new MathJax command MATHJAX_CODEFILE which supports +
    • id 5042: Added new MathJax command MATHJAX_CODEFILE which supports including a file with MathJax related scripting to be inserted before the MathJax script is loaded. Thanks to Albert for the patch.
    • -
    • id 693537: Comments in the config file starting with ## will now be +
    • id 5070: Comments in the config file starting with ## will now be kept when upgrading the file with doxygen -u (and doxygen -s -u). Thanks to Albert for the patch.
    • -
    • id 693422: Adds support for Latvian (thanks to a patch by Lauris).
    • +
    • id 5061: Adds support for Latvian (thanks to a patch by Lauris).
    • Included language updates for Ukrainian, Romanian, and Korean

    Bug fixes

      -
    • id 145294: Fixed parse issue when using less than inside a template +
    • id 1169: Fixed parse issue when using less than inside a template argument.
    • -
    • id 325266 man page output was missing a linebreak before .SH when +
    • id 1976 man page output was missing a linebreak before .SH when definition a group with a section.
    • -
    • id 338205: @anchor were wrong when CREATE_SUBDIRS was enabled.
    • -
    • id 427012: Putting a @todo in front of an anonymous namespace caused +
    • id 2114: @anchor were wrong when CREATE_SUBDIRS was enabled.
    • +
    • id 2445: Putting a @todo in front of an anonymous namespace caused bogus entry in the todo list.
    • -
    • id 564462: Fixed alignment issue with tabs and multibyte characters.
    • -
    • id 567542: Character entities in titles were not rendered correctly +
    • id 3198: Fixed alignment issue with tabs and multibyte characters.
    • +
    • id 3230: Character entities in titles were not rendered correctly in the HTML navigation tree.
    • -
    • id 571561: No space between * and tag (e.g. \endcode) made parser +
    • id 3272: No space between * and tag (e.g. \endcode) made parser misbehave
    • -
    • id 583233: Included patch to limit generated Doxyfile comments to 80 +
    • id 3397: Included patch to limit generated Doxyfile comments to 80 columns
    • -
    • id 592626: Fixed off-by-one with MAX_DOT_GRAPH_DEPTH.
    • -
    • id 619790: Improved linking to template specializations. +
    • id 3487: Fixed off-by-one with MAX_DOT_GRAPH_DEPTH.
    • +
    • id 3785: Improved linking to template specializations. Thanks to David Haney for the patch.
    • -
    • id 627712: Doxygen Header in C Files makes empty Lines in HTML Source +
    • id 3909: Doxygen Header in C Files makes empty Lines in HTML Source Code when starts in Line 1
    • -
    • id 639954: Fortran: array constructors with brackets were not correctly +
    • id 4096: Fortran: array constructors with brackets were not correctly recognized.
    • -
    • id 646428: The generated man pages had a .PP just before the subject +
    • id 4223: The generated man pages had a .PP just before the subject description
    • -
    • id 646431: On generated manpages the return section is incorrectly +
    • id 4224: On generated manpages the return section is incorrectly indented
    • -
    • id 650004: use \page now generates a man page were the . is not +
    • id 4261: use \page now generates a man page were the . is not replaced by _8.
    • -
    • id 657704: Fixed issue with PROJECT_LOGO when using backslashes in +
    • id 4385: Fixed issue with PROJECT_LOGO when using backslashes in the path.
    • -
    • id 666008: Fortran: Using @var at module level didn't work. +
    • id 4499: Fortran: Using @var at module level didn't work. expect a file/path name.
    • -
    • id 673218: Replaced "echo -n" with "printf" in the configure script.
    • -
    • id 674856: Removed warning when using \endinternal
    • -
    • id 675607: Added &, @, and # as allowed characters for commands that
    • -
    • id 679626: Included patch by Abert to correctly link pages in the manual
    • -
    • id 681874: Added support for single column Markdown tables.
    • -
    • id 682369: Incomplete documentation on doxygen -w latex
    • -
    • id 683516: Doxygen crashed when structural commands (like \var) appeared +
    • id 4650: Replaced "echo -n" with "printf" in the configure script.
    • +
    • id 4684: Removed warning when using \endinternal
    • +
    • id 4696: Added &, @, and # as allowed characters for commands that
    • +
    • id 4788: Included patch by Abert to correctly link pages in the manual
    • +
    • id 4850: Added support for single column Markdown tables.
    • +
    • id 4855: Incomplete documentation on doxygen -w latex
    • +
    • id 4877: Doxygen crashed when structural commands (like \var) appeared in .md files.
    • -
    • id 686259: Fixed character encoding problem when multibytes characters +
    • id 4926: Fixed character encoding problem when multibytes characters were used in anchors.
    • -
    • id 691071: Documentation before an anonymous member did not appear.
    • -
    • id 692162: Fixed Markdown related indentation problem.
    • -
    • id 692320: Regression: Text after @copydoc was not visible anymore.
    • -
    • id 692537: Linked to external pages was done using the page label +
    • id 5013: Documentation before an anonymous member did not appear.
    • +
    • id 5040: Fixed Markdown related indentation problem.
    • +
    • id 5044: Regression: Text after @copydoc was not visible anymore.
    • +
    • id 5046: Linked to external pages was done using the page label rather than the file name.
    • -
    • id 693331: build using ./configure ; make did not work if the path +
    • id 5059: build using ./configure ; make did not work if the path contained a space.
    • -
    • id 693406: Tag files are now identfied by the full path instead of +
    • id 5060: Tag files are now identfied by the full path instead of only the name of the tag file.
    • -
    • id 694376: In some cases members were missing from the tag file.
    • -
    • id 694027: Fortran: derive intent from documentation in case no +
    • id 5086: In some cases members were missing from the tag file.
    • +
    • id 5079: Fortran: derive intent from documentation in case no intent is specified
    • -
    • id 694610: Warning was not reported at the correct line in two cases.
    • -
    • id 694631, 694632: @cond..@endcond did not work properly for removing +
    • id 5089: Warning was not reported at the correct line in two cases.
    • +
    • id 5092, 5093: @cond..@endcond did not work properly for removing macro definitions.
    • -
    • id 694685: Fixed crash when adding two different functions with the +
    • id 5098: Fixed crash when adding two different functions with the same name to the same group.
    • -
    • id 694726: VHDL: fixed issue generating LaTeX output.
    • -
    • id 695277: Fortran: improved handling of protected statement
    • -
    • id 695974: Fortran: Fixed issue resulting in +
    • id 5100: VHDL: fixed issue generating LaTeX output.
    • +
    • id 5116: Fortran: improved handling of protected statement
    • +
    • id 5124: Fortran: Fixed issue resulting in "Stack buffers nested too deeply" error.
    • -
    • id 696708: @cond was not handled properly by the preprocessor.
    • -
    • id 697233: @copyright command did not end a brief description.
    • -
    • id 697249: Markdown tables caused errors reported at wrong line number.
    • -
    • id 697494: Removed double entry from the messages produced by doxygen.
    • -
    • id 698818: Fixed problem handling @cond for #define's
    • -
    • id 698007: Fixed potential crash when searching files.
    • -
    • id 696925: #include's inside namespace could result in duplicate entries.
    • -
    • id 696954: Doxywizard: Labels of items are now also grayed out +
    • id 5128: @cond was not handled properly by the preprocessor.
    • +
    • id 5133: @copyright command did not end a brief description.
    • +
    • id 5134: Markdown tables caused errors reported at wrong line number.
    • +
    • id 5135: Removed double entry from the messages produced by doxygen.
    • +
    • id 5152: Fixed problem handling @cond for #define's
    • +
    • id 5144: Fixed potential crash when searching files.
    • +
    • id 5131: #include's inside namespace could result in duplicate entries.
    • +
    • id 5132: Doxywizard: Labels of items are now also grayed out when an item is disabled (thanks to Albert for the patch).
    • -
    • id 699195: Changed Markdown page label to support multiple .md files +
    • id 5154: Changed Markdown page label to support multiple .md files with the same name.
    • -
    • id 699218: Fixed issue with margin computation in resize.js.
    • -
    • id 699381: Lonely h4,h5,h6 end tag caused assert.
    • -
    • id 699437: Trailing comments were not always rendered properly if +
    • id 5155: Fixed issue with margin computation in resize.js.
    • +
    • id 5157: Lonely h4,h5,h6 end tag caused assert.
    • +
    • id 5158: Trailing comments were not always rendered properly if MARKDOWN_SUPPORT was enabled.
    • -
    • id 699460: Updated doxygen man page (thanks to Manuel for the patch).
    • -
    • id 699464: Added reference to \xmlonly and \docbookonly in \htmlonly
    • -
    • id 699731: LaTeX: switch to using the xtabular package instead of +
    • id 5159: Updated doxygen man page (thanks to Manuel for the patch).
    • +
    • id 5160: Added reference to \xmlonly and \docbookonly in \htmlonly
    • +
    • id 5163: LaTeX: switch to using the xtabular package instead of longtable to prevent overfull vbox errors.
    • -
    • id 699732: Template parameters and Exceptions were rendered differently +
    • id 5164: Template parameters and Exceptions were rendered differently than Parameters and Return Values in the LaTeX output.
    • -
    • id 700153: Tcl: Fixed crash when parsing certain Tcl code.
    • -
    • id 700345: Comment blocking ending with ///// made slashes appear in +
    • id : Tcl: Fixed crash when parsing certain Tcl code.
    • +
    • id 5171: Comment blocking ending with ///// made slashes appear in the output.
    • -
    • id 700456: Added support for separating auto list items with an +
    • id 5180: Added support for separating auto list items with an empty paragraph.
    • Included a couple of VHDL fixes (thanks to Martin Kreis for the patch)
    • \include and \includelineno both showed line numbers.
    • @@ -1589,7 +1990,7 @@
    • 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 +
    • id 5031: 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.
    • @@ -1605,31 +2006,31 @@

    Bug fixes

      -
    • id 644350: Fortran: Included patch to improve parsing line continuation +
    • id 4191: Fortran: Included patch to improve parsing line continuation characters.
    • -
    • id 645423: Fortran: added support for protected attribute
    • -
    • id 682550, 691315: When using @copydoc, paragraphs breaks did not appear +
    • id 4204: Fortran: added support for protected attribute
    • +
    • id 4859, 5023: When using @copydoc, paragraphs breaks did not appear in the copied documentation.
    • -
    • id 686581: Fortran: handle single quotes in normal Fortran comment.
    • -
    • id 686689, 691335: Scope of forwardly declared template class was lost +
    • id 4930: Fortran: handle single quotes in normal Fortran comment.
    • +
    • id 4931, 5025: Scope of forwardly declared template class was lost in the output.
    • -
    • id 689713: Tcl: Inline source code was not rendered correctly.
    • -
    • id 690787: Fixed case were a cyclic inheritance relation could crash +
    • id 4978: Tcl: Inline source code was not rendered correctly.
    • +
    • id 5005: Fixed case were a cyclic inheritance relation could crash doxygen.
    • -
    • id 690831: Using @subpage in a -# style list was not handled properly.
    • -
    • id 691000: For a mainpage without title the project name is now shown as +
    • id 5008: Using @subpage in a -# style list was not handled properly.
    • +
    • id 5012: For a mainpage without title the project name is now shown as the title in the XML output.
    • -
    • id 691277: The generated list of citations is now no longer included in +
    • id 5017: The generated list of citations is now no longer included in the tag file.
    • -
    • id 691073: Documenting strongly typed enum values outside of the enum +
    • id 5014: Documenting strongly typed enum values outside of the enum did not work.
    • -
    • id 691310: Python: = was missing in the output for variable assignment.
    • -
    • id 691323: Doxygen could crash when creating inline msc graphs.
    • -
    • id 691340: Members didn't have a More.. link to jump to detailed docs.
    • -
    • id 691602: Doxygen did not probably distinguish between two template
    • -
    • id 691798: regression: C++ style comments that started with a line of +
    • id 5022: Python: = was missing in the output for variable assignment.
    • +
    • id 5024: Doxygen could crash when creating inline msc graphs.
    • +
    • id 5026: Members didn't have a More.. link to jump to detailed docs.
    • +
    • id 5030: Doxygen did not probably distinguish between two template
    • +
    • id 5034: regression: C++ style comments that started with a line of slashes did not get processed correctly anymore.
    • -
    • id 692031: Fixed parse error when left shift operator occurred as a +
    • id 5038: Fixed parse error when left shift operator occurred as a default parameter. members or functions that only differ in the return type.
    • Setting SEARCH_INCLUDES to NO resulted in no include graphs and no @@ -1657,7 +2058,7 @@ Pez Cuckow for the patch).
    • 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 +
    • id 4863: Included patch to add version info to all generated template files (headers, footers, stylesheets, layout files, etc).

    New features

    @@ -1673,91 +2074,91 @@ 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 +
  • id 3945: 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 +
  • id 4888: 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

    -
  • id 670853: Fixed compile issues with 0 to QCString cast for +
  • id 4584: Fixed compile issues with 0 to QCString cast for old compilers.
  • -
  • id 678139: A class A deriving from another class B inside a namespace +
  • id 4752: A class A deriving from another class B inside a namespace not known to doxygen, caused class B to appear in the global scope.
  • -
  • id 681209: Fixed problem processing .bib files when they were located +
  • id 4839: Fixed problem processing .bib files when they were located in a path containing spaces.
  • -
  • id 681830: Using \addindex in a page will now produce a link to the +
  • id 4848: Using \addindex in a page will now produce a link to the word, instead of the start of the page.
  • -
  • id 681831: The TREEVIEW_WIDTH option did not have any effect.
  • -
  • id 681898: Jumping from a level 3 section to a level 1 section did +
  • id 4849: The TREEVIEW_WIDTH option did not have any effect.
  • +
  • id 4851: Jumping from a level 3 section to a level 1 section did not appear correctly in the page TOC.
  • -
  • id 681976: C++11: Improved handling of noexcept expressions, e.g.: +
  • id 4852: C++11: Improved handling of noexcept expressions, e.g.: Test() noexcept ( noexcept(T::T()) ) = default;
  • -
  • id 682048: Improved SIGINT handling when running multiple dot instances.
  • -
  • id 682602: Fixed problem processing .bib files when using a non default +
  • id 4853: Improved SIGINT handling when running multiple dot instances.
  • +
  • id 4860: Fixed problem processing .bib files when using a non default output directory.
  • -
  • id 682713: Comment for IDL_PROPERTY_SUPPORT in the config file template +
  • id 4862: Comment for IDL_PROPERTY_SUPPORT in the config file template did not have line wrapping.
  • -
  • id 682728: Setting SHOW_FILES to NO prevented call graphs from being +
  • id 4864: Setting SHOW_FILES to NO prevented call graphs from being generated.
  • -
  • id 682740: Fortran: In initialization statement the "=" was missing
  • -
  • id 683284: Fortran: ALIASes where not replaced in !! and !< comments.
  • -
  • id 683976: Added meta tag "generator" to HTML output (thanks to +
  • id 4865: Fortran: In initialization statement the "=" was missing
  • +
  • id 4872: Fortran: ALIASes where not replaced in !! and !< comments.
  • +
  • id 4886: Added meta tag "generator" to HTML output (thanks to Albert for the patch).
  • -
  • id 684781: Sections of the main page did not appear in the +
  • id 4899: Sections of the main page did not appear in the navigation tree until the main page had sub pages. Also fixed bug in treeview that caused mainpage with title and sections to appear at the same level as the sections.
  • -
  • id 685125: Doxygen could select the wrong overloaded method when +
  • id 4908: Doxygen could select the wrong overloaded method when the only difference in parameter types was the template type of a typedef.
  • -
  • id 685181: Inheriting member documentation did not work in combination +
  • id 4909: Inheriting member documentation did not work in combination with Java interfaces.
  • -
  • id 685623: Enum values did not appear in the detailed documentation +
  • id 4915: Enum values did not appear in the detailed documentation when using C++11 style enums.
  • -
  • id 685879: Even though HIDE_UNDOC_MEMBERS was enabled, the navigation +
  • id 4920: Even though HIDE_UNDOC_MEMBERS was enabled, the navigation still showed undocumented members.
  • -
  • id 685940: Fixed back button behaviour when using the navigation tree.
  • -
  • id 686284: Added anchors to refs in the index.qhp TOC.
  • -
  • id 686826: Added XML declaration to index.qhp TOC.
  • -
  • id 686956: When a class and its base class has the same nested class, +
  • id 4921: Fixed back button behaviour when using the navigation tree.
  • +
  • id 4927: Added anchors to refs in the index.qhp TOC.
  • +
  • id : Added XML declaration to index.qhp TOC.
  • +
  • id 4932: When a class and its base class has the same nested class, the collaboration diagram could point to the wrong class.
  • -
  • id 686983: Comments inside a function macro parameter appeared before +
  • id 4934: Comments inside a function macro parameter appeared before the expanded macro, instead of being treated as part of the parameter.
  • -
  • id 687301: Allow minus in the name of a HTML attribute.
  • -
  • id 687572: Code fragments were wrapped too early in the latex output.
  • -
  • id 688226: Fixed Qt version number in ./configure --help text.
  • -
  • id 688463: Included patch to prevent processing identifiers starting +
  • id 4936: Allow minus in the name of a HTML attribute.
  • +
  • id 4939: Code fragments were wrapped too early in the latex output.
  • +
  • id 4947: Fixed Qt version number in ./configure --help text.
  • +
  • id 4955: Included patch to prevent processing identifiers starting with _ or __ as markdown.
  • -
  • id 688531: Horizontal ruler inside paragraph caused missing </p>
  • -
  • id 688542: Using "usergroup" in the layout.xml caused missing <div>
  • -
  • id 688739: Fixed problem with user defined entries in the eclipse help +
  • id 4956: Horizontal ruler inside paragraph caused missing </p>
  • +
  • id 4957: Using "usergroup" in the layout.xml caused missing <div>
  • +
  • id 4962: Fixed problem with user defined entries in the eclipse help index (thanks to Rene Papenhoven for the fix).
  • -
  • id 688647: Fixed problem parsing initializer list with C++11 style +
  • id 4959: Fixed problem parsing initializer list with C++11 style uniform types.
  • -
  • id 689341: \if around list item preceded by whitespace caused wrong +
  • id 4968: \if around list item preceded by whitespace caused wrong list in the output.
  • -
  • id 689461: Correct link in documentation of SIP_SUPPORT option.
  • -
  • id 689720: Fixed bug that could prevent refman.tex from being generated.
  • -
  • id 689833: Fixed missing space in Chinese translation.
  • -
  • id 690093: Files added via HTML_EXTRA_STYLESHEET did not correct refer +
  • id 4969: Correct link in documentation of SIP_SUPPORT option.
  • +
  • id 4979: Fixed bug that could prevent refman.tex from being generated.
  • +
  • id 4980: Fixed missing space in Chinese translation.
  • +
  • id 4989: Files added via HTML_EXTRA_STYLESHEET did not correct refer to files that where placed in a subdirectory.
  • -
  • id 690190: Searching for multibyte characters did not work with the +
  • id 4991: Searching for multibyte characters did not work with the server based search engine.
  • -
  • id 690250: Fixed case where line numbers got out of sync with the code.
  • -
  • id 690341: First member of an anonymous C++11 style enum was not shown +
  • id 4993: Fixed case where line numbers got out of sync with the code.
  • +
  • id 4994: First member of an anonymous C++11 style enum was not shown properly.
  • -
  • id 690385: Fixed case where _'s where falsely converted to Markdown +
  • id 4995: Fixed case where _'s where falsely converted to Markdown emphasis.
  • -
  • id 690403: Title not used when \ref'ing to a \section imported via +
  • id 4996: Title not used when \ref'ing to a \section imported via a tag file.
  • -
  • id 690418: Behavior of @cond was accidentally reversed by new expression +
  • id 4997: Behavior of @cond was accidentally reversed by new expression parser.
  • -
  • id 690602: Fixed problems handling @cond inside /// comments.
  • -
  • id 690629: Fixed case where doxygen would during preprocessing.
  • -
  • id 690685: A file specified using HTML_EXTRA_STYLEHSHEET did not end +
  • id 5000: Fixed problems handling @cond inside /// comments.
  • +
  • id 5001: Fixed case where doxygen would during preprocessing.
  • +
  • id 5002: A file specified using HTML_EXTRA_STYLEHSHEET did not end up in the Qt Help index.
  • Improved the way enum's are rendered in the HTML output.
  • When inlining structs (INLINE_SIMPLE_STRUCTS=YES) a <p> was missing @@ -1794,20 +2195,20 @@
    enum class E
  • enums with explicit type, e.g.:
    enum E : unsigned int { ... }
  • -
  • id 678097: added support for final keyword on classes and methods.
  • +
  • id 4749: added support for final keyword on classes and methods.
  • support for override keyword for methods.
  • nullptr is new a type keyword in code fragments.
  • support for variables with initializer lists, e.g.:
    const int var {10};
  • support for trailing return types, e.g.:
    auto foo() -> Bar;
  • -
  • id 672372: added support for template aliases, +
  • id 4624: added support for template aliases, e.g.:
    template<typename T> using A = B<T>;
  • support for C++11 variadic templates, e.g.:
    template<typename... Values> class C;
  • support for documenting template class declarations.
  • -
  • id 680098: static_assert(...); inside a class is now ignored.
  • -
  • id 679740: Add support parameters with default lambda functions, +
  • id 4807: static_assert(...); inside a class is now ignored.
  • +
  • id 4793: Add support parameters with default lambda functions, e.g.:
    int foo(int i, std::function<int(int)> f = [](int x) -> int { return x / 2; })
  • default initializers for non-static data members, e.g.:
    class C { public: int x = 4; int y {6}; int z = y*func(); };
  • @@ -1853,36 +2254,36 @@ member and its brief description.
  • Fixed a couple of compiler warning with the new XCode 4.4 compiler.
  • Added compilation support for Mountain Lion (Mac OS X 10.8).
  • -
  • id 679631: Nested namespaces did not appear in the namespace list if the +
  • id 4789: Nested namespaces did not appear in the namespace list if the parent namespace was undocumented.
  • -
  • id 680227: Fixed some spelling errors in the code comments.
  • -
  • id 680398: Fortran: comma at begin of argument list description in +
  • id 4809: Fixed some spelling errors in the code comments.
  • +
  • id 4814: Fortran: comma at begin of argument list description in case of implicit type
  • -
  • id 680405: Fortran: Entities on line with USE, ONLY were not hyperlinked +
  • id 4815: Fortran: Entities on line with USE, ONLY were not hyperlinked in code.
  • -
  • id 680408: Fortran: handle carriage return in non terminated strings.
  • -
  • id 680492: Using Markdown formatting in @todo/@bug/.. like descriptions +
  • id 4816: Fortran: handle carriage return in non terminated strings.
  • +
  • id 4821: Using Markdown formatting in @todo/@bug/.. like descriptions did not work.
  • -
  • id 680575: Fixed potential crash when <code> appeared inside <summary> +
  • id 4823: Fixed potential crash when <code> appeared inside <summary> for C# code.
  • -
  • id 680697: \xrefitems of the same type are not grouped together under +
  • id 4824: \xrefitems of the same type are not grouped together under the same heading (just like \todo and friends).
  • Fixed case where full directory path was shown even though FULL_PATH_NAMES was set to NO.
  • -
  • id 680709: HTML output of template-derived classes contained unescaped +
  • id 4825: HTML output of template-derived classes contained unescaped characters.
  • -
  • id 679963: "Class Index" appeared twice in the PDF TOC, Index at the +
  • id 4800: "Class Index" appeared twice in the PDF TOC, Index at the end did not appear at all.
  • In a declaration no link was created when referring to a class inside an undocumented namespace imported via a tag file.
  • -
  • id 681281: Make default for TAB_SIZE 4 and added remark in Markdown +
  • id 4840: Make default for TAB_SIZE 4 and added remark in Markdown section of the manual about the effect of TAB_SIZE on code block processing when using tabs in the comment block.
  • -
  • id 681023: Project logo was not included in the Qt help output.
  • -
  • id 680992: Fixed a couple of typos in the comments.
  • -
  • id 681350: Fixed a problem with Markdown processing of a @code block +
  • id 4835: Project logo was not included in the Qt help output.
  • +
  • id 4834: Fixed a couple of typos in the comments.
  • +
  • id 4841: Fixed a problem with Markdown processing of a @code block inside an indented /// style comment.
  • -
  • id 679928: Disabled section level correction for Markdown pages as +
  • id 4799: Disabled section level correction for Markdown pages as it was confusing.

@@ -1896,7 +2297,7 @@

  • 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 +
  • id 4755: Changed title of the SVG graphs from 'G' to the root node of the graph.

New features

@@ -1905,41 +2306,41 @@ 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 +
  • id 4464: Added support for C++11 strongly typed enums (enum class E { ... }).
  • Bug fixes