From: acspike Date: Tue, 13 Mar 2007 18:36:16 +0000 (+0000) Subject: fix mkNEWS to deal with point releases and the correct wiki port X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=7e0337b0c91e10012bc41d0671b603ae73c89831;p=inkscape.git fix mkNEWS to deal with point releases and the correct wiki port --- diff --git a/packaging/mkNEWS b/packaging/mkNEWS index 31c0fc0dc..495d09283 100644 --- a/packaging/mkNEWS +++ b/packaging/mkNEWS @@ -3,7 +3,7 @@ use strict; use warnings; -my $wiki = "http://wiki.inkscape.org:8080/wiki/index.php"; +my $wiki = "http://wiki.inkscape.org/wiki/index.php"; if (@ARGV < 1) { print "Usage: $0 \n"; @@ -20,7 +20,7 @@ foreach my $line (@page) { last if $line =~ /^Previous releases/; next if $line =~ /\[\[\d+\]edit\]/; - if ($line =~ /^Inkscape .*overview/) { + if ($line =~ /^Inkscape .*0.45/ || $line =~ /^Inkscape .* changes with respect to/) { $seen_overview = 1; } next unless $seen_overview;