Commit d65a54b 1 parent ee81dbe commit d65a54b Copy full SHA for d65a54b
File tree 5 files changed +13
-6
lines changed
5 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 1
1
Release 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
2
8
v1.70 - 2015-03-16
3
9
Changes
4
10
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)
123
129
the actual subroutines that they are tied to.
124
130
Known Issues
125
131
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
426
426
# be included in the documentation.
427
427
# The default value is: NO.
428
428
429
- EXTRACT_PRIVATE = NO
429
+ EXTRACT_PRIVATE = YES
430
430
431
431
# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal
432
432
# scope will be included in the documentation.
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ use strict;
27
27
use warnings;
28
28
use Log::Log4perl;
29
29
30
- our $VERSION = ' 1.71 ' ;
30
+ our $VERSION = ' 1.72 ' ;
31
31
$VERSION = eval $VERSION ;
32
32
33
33
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ use Pod::POM;
31
31
use IO::Handle;
32
32
use Doxygen::Filter::Perl::POD;
33
33
34
- our $VERSION = ' 1.71 ' ;
34
+ our $VERSION = ' 1.72 ' ;
35
35
$VERSION = eval $VERSION ;
36
36
37
37
@@ -427,7 +427,8 @@ sub PrintAll
427
427
# Print all functions/methods in order of appearance, let doxygen take care of grouping them according to modifiers
428
428
# I added this print public line to make sure the functions print if one of
429
429
# 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");
431
432
foreach my $methodName (@{$self -> {' _hData' }-> {' class' }-> {$class }-> {' subroutineorder' }})
432
433
{
433
434
$self -> _PrintMethodBlock($class , $methodName );
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ use warnings;
28
28
use parent qw( Pod::POM::View::HTML) ;
29
29
use Log::Log4perl;
30
30
31
- our $VERSION = ' 1.71 ' ;
31
+ our $VERSION = ' 1.72 ' ;
32
32
$VERSION = eval $VERSION ;
33
33
34
34
You can’t perform that action at this time.
0 commit comments