summaryrefslogtreecommitdiffstats
path: root/packaging/mkNEWS
diff options
context:
space:
mode:
authorAaron Spike <aaron@ekips.org>2007-03-13 18:36:16 +0000
committeracspike <acspike@users.sourceforge.net>2007-03-13 18:36:16 +0000
commit6a21d04d8f9ad1a5b64d35aa3122d2469e46edea (patch)
tree59094c6e9e9a9309174d256b20cd787d3ba85ab0 /packaging/mkNEWS
parentdropping moved/dead files (diff)
downloadinkscape-6a21d04d8f9ad1a5b64d35aa3122d2469e46edea.tar.gz
inkscape-6a21d04d8f9ad1a5b64d35aa3122d2469e46edea.zip
fix mkNEWS to deal with point releases and the correct wiki port
(bzr r2631)
Diffstat (limited to 'packaging/mkNEWS')
-rw-r--r--packaging/mkNEWS4
1 files changed, 2 insertions, 2 deletions
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 <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;