File tree Expand file tree Collapse file tree 4 files changed +21
-7
lines changed
Expand file tree Collapse file tree 4 files changed +21
-7
lines changed Original file line number Diff line number Diff line change 11Release Notes:
2+ v1.73 - 2019-11-15
3+ Changes
4+ Detection of package name (see (see https://github.com/jordan2175/doxygen-filter-perl/pull/20)
5+ Asterisk in prototype (see: https://github.com/jordan2175/doxygen-filter-perl/pull/19)
6+ Recognizing subroutine definitions. (see https://github.com/jordan2175/doxygen-filter-perl/pull/18)
7+ Don't encode text (see https://github.com/jordan2175/doxygen-filter-perl/pull/17)
8+ Remove `\n` from headers (see https://github.com/jordan2175/doxygen-filter-perl/pull/15)
9+ Small prototype support (see https://github.com/jordan2175/doxygen-filter-perl/pull/14)
10+ Doxygen supports `<code>` (see https://github.com/jordan2175/doxygen-filter-perl/pull/13)
11+ Incorrect end of comment detected (see https://github.com/jordan2175/doxygen-filter-perl/pull/12)
12+ Make code section XHTML compatible (see https://github.com/jordan2175/doxygen-filter-perl/pull/10)
13+ Correcting multiple use of doxygen section labels (see https://github.com/jordan2175/doxygen-filter-perl/pull/9)
14+ Uninitialized variable (see https://github.com/jordan2175/doxygen-filter-perl/pull/8)
15+ Fix for some uninitialized variables (see https://github.com/jordan2175/doxygen-filter-perl/pull/7)
16+ Correct file name in case of space in the name (see https://github.com/jordan2175/doxygen-filter-perl/pull/6)
17+ Uninitialized value $sOptions (see https://github.com/jordan2175/doxygen-filter-perl/pull/5)
18+ issue #3 "Use of uninitialized value $sMethodName" problem (see https://github.com/jordan2175/doxygen-filter-perl/pull/4)
219v1.72 - 2015-03-23
320 Changes
4- Un-did change from 1.71 and fixed it correctly by changing the Doxyfile
21+ Fixed license (just in case)
522v1.71 - 2015-03-16
623 Chnaged
724 Fix issue where public objects were not showing up, if a private objects was found
Original file line number Diff line number Diff line change 1818# @endverbatim
1919#
2020# @copy 2011, Bret Jordan (jordan2175@gmail.com, jordan@open1x.org)
21- # $Id: Filter.pm 88 2012-07-07 04:27:35Z jordan2175 $
2221# *
2322package Doxygen::Filter ;
2423
@@ -27,7 +26,7 @@ use strict;
2726use warnings;
2827use Log::Log4perl;
2928
30- our $VERSION = ' 1.72 ' ;
29+ our $VERSION = ' 1.73 ' ;
3130$VERSION = eval $VERSION ;
3231
3332
Original file line number Diff line number Diff line change 1818# @endverbatim
1919#
2020# @copy 2011, Bret Jordan (jordan2175@gmail.com, jordan@open1x.org)
21- # $Id: Perl.pm 93 2015-03-17 13:08:02Z jordan2175 $
2221# *
2322package Doxygen::Filter::Perl ;
2423
@@ -31,7 +30,7 @@ use Pod::POM;
3130use IO::Handle;
3231use Doxygen::Filter::Perl::POD;
3332
34- our $VERSION = ' 1.72 ' ;
33+ our $VERSION = ' 1.73 ' ;
3534$VERSION = eval $VERSION ;
3635
3736
Original file line number Diff line number Diff line change 1818# @endverbatim
1919#
2020# @copy 2011, Bret Jordan (jordan2175@gmail.com, jordan@open1x.org)
21- # $Id: POD.pm 88 2012-07-07 04:27:35Z jordan2175 $
2221# *
2322package Doxygen::Filter::Perl::POD ;
2423
@@ -28,7 +27,7 @@ use warnings;
2827use parent qw( Pod::POM::View::HTML) ;
2928use Log::Log4perl;
3029
31- our $VERSION = ' 1.72 ' ;
30+ our $VERSION = ' 1.73 ' ;
3231$VERSION = eval $VERSION ;
3332our $labelCnt = 0; # label counter to see to it that when e.g. twice a =head1 NAME in a file it is still an unique label
3433our $sectionLabel = ' x' ;
You can’t perform that action at this time.
0 commit comments