Skip to content

Commit

Permalink
Release-1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitri van Heesch committed May 19, 2012
1 parent 44ca951 commit 55e5055
Show file tree
Hide file tree
Showing 59 changed files with 1,643 additions and 979 deletions.
1 change: 0 additions & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,6 @@ HTML_COLORSTYLE_HUE = 220
HTML_COLORSTYLE_SAT = 100
HTML_COLORSTYLE_GAMMA = 80
HTML_TIMESTAMP = YES
HTML_ALIGN_MEMBERS = YES
HTML_DYNAMIC_SECTIONS = YES
GENERATE_DOCSET = YES
DOCSET_FEEDNAME = "Doxygen docs"
Expand Down
4 changes: 2 additions & 2 deletions INSTALL
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
DOXYGEN Version 1.8.0-20120429
DOXYGEN Version 1.8.1

Please read the installation section of the manual
(http://www.doxygen.org/install.html) for instructions.

--------
Dimitri van Heesch (29 April 2012)
Dimitri van Heesch (19 May 2012)
4 changes: 2 additions & 2 deletions README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DOXYGEN Version 1.8.0_20120429
DOXYGEN Version 1.8.1

Please read INSTALL for compilation instructions.

Expand Down Expand Up @@ -26,4 +26,4 @@ forum.

Enjoy,

Dimitri van Heesch ([email protected]) (29 April 2012)
Dimitri van Heesch ([email protected]) (19 May 2012)
4 changes: 2 additions & 2 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@

doxygen_version_major=1
doxygen_version_minor=8
doxygen_version_revision=0
doxygen_version_revision=1

#NOTE: Setting version_mmn to "NO" will omit mmn info from the package.
doxygen_version_mmn=20120429
doxygen_version_mmn=NO

bin_dirs=`echo $PATH | sed -e "s/:/ /g"`

Expand Down
61 changes: 48 additions & 13 deletions doc/doxygen_manual.css
Original file line number Diff line number Diff line change
Expand Up @@ -149,20 +149,55 @@ dl.el {
margin-left: -1cm;
}

.fragment {
font-family: monospace, fixed;
font-size: 105%;
}

pre.fragment {
border: 1px solid #D5D5D5;
background-color: #FCFCFC;
padding: 4px 6px;
margin: 4px 8px 4px 2px;
overflow: auto;
word-wrap: break-word;
font-size: 9pt;
line-height: 125%;
border: 1px solid #C4CFE5;
background-color: #FBFCFD;
padding: 4px 6px;
margin: 4px 8px 4px 2px;
overflow: auto;
word-wrap: break-word;
font-size: 9pt;
line-height: 125%;
font-family: monospace, fixed;
font-size: 105%;
}

div.fragment {
padding: 4px;
margin: 4px;
background-color: #FCFCFC;
border: 1px solid #D5D5D5;
}

div.line {
font-family: monospace, fixed;
font-size: 13px;
line-height: 1.0;
text-wrap: unrestricted;
white-space: -moz-pre-wrap; /* Moz */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
white-space: pre-wrap; /* CSS3 */
word-wrap: break-word; /* IE 5.5+ */
text-indent: -53px;
padding-left: 53px;
padding-bottom: 0px;
margin: 0px;
}

span.lineno {
padding-right: 4px;
text-align: right;
border-right: 2px solid #0F0;
background-color: #E8E8E8;
white-space: pre;
}
span.lineno a {
background-color: #D8D8D8;
}

span.lineno a:hover {
background-color: #C8C8C8;
}

div.ah {
Expand Down
3 changes: 2 additions & 1 deletion doc/markdown.doc
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ Level 1 or 2 headers can be made as the follows
-------------------------

A header is followed by a line containing only ='s or -'s.
Note that the exact amount of ='s or -'s is not important.
Note that the exact amount of ='s or -'s is not important as long as
there are at least two.

Alternatively, you can use #'s at the start of a line to make a header.
The number of #'s at the start of the line determines the level (up to 6 levels are supported).
Expand Down
4 changes: 2 additions & 2 deletions doc/preprocessing.doc
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ the \ref cfg_predefined "PREDEFINED" or
\ref cfg_expand_as_defined "EXPAND_AS_DEFINED" tag.

A typically example where some help from the preprocessor is needed is
when dealing with Microsoft's __declspec language extension. Here is an
example function.
when dealing with Microsoft's __declspec language extension. The same goes
for GNU's __attribute__ extension. Here is an example function.

\verbatim
extern "C" void __declspec(dllexport) ErrorMsg( String aMessage,...);
Expand Down
5 changes: 2 additions & 3 deletions qtools/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ PROJECT_NUMBER =
PROJECT_BRIEF =
PROJECT_LOGO =
OUTPUT_DIRECTORY = ../qtools_docs
CREATE_SUBDIRS = NO
CREATE_SUBDIRS = YES
OUTPUT_LANGUAGE = English
BRIEF_MEMBER_DESC = YES
REPEAT_BRIEF = YES
Expand Down Expand Up @@ -117,7 +117,7 @@ FILTER_SOURCE_PATTERNS =
#---------------------------------------------------------------------------
# configuration options related to source browsing
#---------------------------------------------------------------------------
SOURCE_BROWSER = NO
SOURCE_BROWSER = YES
INLINE_SOURCES = NO
STRIP_CODE_COMMENTS = YES
REFERENCED_BY_RELATION = YES
Expand Down Expand Up @@ -145,7 +145,6 @@ HTML_COLORSTYLE_HUE = 220
HTML_COLORSTYLE_SAT = 100
HTML_COLORSTYLE_GAMMA = 80
HTML_TIMESTAMP = YES
HTML_ALIGN_MEMBERS = YES
HTML_DYNAMIC_SECTIONS = YES
GENERATE_DOCSET = YES
DOCSET_FEEDNAME = "Doxygen generated docs"
Expand Down
Loading

0 comments on commit 55e5055

Please sign in to comment.