diff options
author | Gabriel Burt <gabriel.burt@gmail.com> | 2011-03-09 10:10:59 -0600 |
---|---|---|
committer | Gabriel Burt <gabriel.burt@gmail.com> | 2011-03-09 10:42:19 -0600 |
commit | 59a3052d5a3302e4fa7759ea3329de7e23b41c6c (patch) | |
tree | 0fbfbb8621c9a896158cd0a698bee8dd82aae45a /extras | |
parent | 49d4bc03da17977b80ed63f12e51d15975328022 (diff) |
Update for 1.9.5 release
Diffstat (limited to 'extras')
-rw-r--r-- | extras/README.releasing | 2 | ||||
-rwxr-xr-x | extras/create-contributors-paragraph | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/extras/README.releasing b/extras/README.releasing index 91268c6f7..0943d9821 100644 --- a/extras/README.releasing +++ b/extras/README.releasing @@ -5,7 +5,7 @@ Pre-release: * Update AUTHORS (cd extras/ && ./create-authors > ../AUTHORS) * Update NEWS * Bump version in configure.ac (don't forget the display version) -* Update banshee.doap +* Update banshee.doap, build/windows/Installer* * Run `make distcheck` * Commit everything diff --git a/extras/create-contributors-paragraph b/extras/create-contributors-paragraph index 866136217..89aa39a10 100755 --- a/extras/create-contributors-paragraph +++ b/extras/create-contributors-paragraph @@ -18,10 +18,12 @@ foreach my $name (@names) { $i = $indent - 1; print "\n"; print ' ' x $indent; + } else { + print " "; } print $name; - print ", "; + print ","; $i += length ($name) + 2; } print "\n"; |