Ncdu 2 announcement + beta releases

This commit is contained in:
Yorhel 2021-07-31 07:33:47 +02:00
parent ecb76f9797
commit 38b35f30b4
51 changed files with 553 additions and 15 deletions

View file

@ -6,8 +6,9 @@ $title = shift;
print "---\ntitle: $title\npage-type: changelog\n...\n";
for (split /\n\n/, join '', <>) {
s/^([0-9]+\.[0-9]+(?:\.[0-9]+)?)\s+-\s+([0-9]{4}-[0-9]{2}-[0-9]{2})//;
for (split /\n\n/, join '', grep !/^#/, <>) {
s/^\s*//;
s/^([^\s]+)\s+-\s+([0-9]{4}-[0-9]{2}-[0-9]{2})//;
print "\n- **$1** - $2";
$dl = "$project-$1.tar.gz";
$dl = "$project-linux-amd64-$1.tar.gz" if !-f "pub/download/$dl";