Code

fix mkNEWS to deal with point releases and the correct wiki port
authoracspike <acspike@users.sourceforge.net>
Tue, 13 Mar 2007 18:36:16 +0000 (18:36 +0000)
committeracspike <acspike@users.sourceforge.net>
Tue, 13 Mar 2007 18:36:16 +0000 (18:36 +0000)
packaging/mkNEWS

index 31c0fc0dcae6f45aac22ac7fd0b9d3b12b4cb58c..495d09283953779babfb82f5629f3fc5ebc2f6a8 100644 (file)
@@ -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 <release-number>\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;