File tree Expand file tree Collapse file tree 5 files changed +13
-6
lines changed
Expand file tree Collapse file tree 5 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 11Release Notes:
2+ v1.72 - 2015-03-23
3+ Changes
4+ Un-did change from 1.71 and fixed it correctly by changing the Doxyfile
5+ v1.71 - 2015-03-16
6+ Chnaged
7+ Fix issue where public objects were not showing up, if a private objects was found
28v1.70 - 2015-03-16
39 Changes
410 Moved repo from sourceforge to github at https://github.com/jordan2175/doxygen-filter-perl
@@ -123,4 +129,4 @@ v0.99_01 - Initial Alpha Release (2011-10-21)
123129 the actual subroutines that they are tied to.
124130 Known Issues
125131 POD support is not yet included
126- Only two structural indicators are currently supported - more to com
132+ Only two structural indicators are currently supported - more to com
Original file line number Diff line number Diff line change @@ -426,7 +426,7 @@ EXTRACT_ALL = NO
426426# be included in the documentation.
427427# The default value is: NO.
428428
429- EXTRACT_PRIVATE = NO
429+ EXTRACT_PRIVATE = YES
430430
431431# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal
432432# scope will be included in the documentation.
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ use strict;
2727use warnings;
2828use Log::Log4perl;
2929
30- our $VERSION = ' 1.71 ' ;
30+ our $VERSION = ' 1.72 ' ;
3131$VERSION = eval $VERSION ;
3232
3333
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ use Pod::POM;
3131use IO::Handle;
3232use Doxygen::Filter::Perl::POD;
3333
34- our $VERSION = ' 1.71 ' ;
34+ our $VERSION = ' 1.72 ' ;
3535$VERSION = eval $VERSION ;
3636
3737
@@ -427,7 +427,8 @@ sub PrintAll
427427 # Print all functions/methods in order of appearance, let doxygen take care of grouping them according to modifiers
428428 # I added this print public line to make sure the functions print if one of
429429 # the previous elements was a my $a = 1 and thus had a print "private:"
430- print (" public:\n " );
430+ # This is no longer needed, fixed it in the Doxyfile instead.
431+ # print("public:\n");
431432 foreach my $methodName (@{$self -> {' _hData' }-> {' class' }-> {$class }-> {' subroutineorder' }})
432433 {
433434 $self -> _PrintMethodBlock($class , $methodName );
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ use warnings;
2828use parent qw( Pod::POM::View::HTML) ;
2929use Log::Log4perl;
3030
31- our $VERSION = ' 1.71 ' ;
31+ our $VERSION = ' 1.72 ' ;
3232$VERSION = eval $VERSION ;
3333
3434
You can’t perform that action at this time.
0 commit comments