diff --git a/download.html b/download.html
index 0f3ac4c..5d08063 100644
--- a/download.html
+++ b/download.html
@@ -1,6 +1,7 @@
Current Release:
+ ()
diff --git a/index.html b/index.html
index 99cb133..176136e 100644
--- a/index.html
+++ b/index.html
@@ -7,6 +7,7 @@
Download v
+ (Released: )
diff --git a/style.css b/style.css
index 5e04868..cf028ba 100644
--- a/style.css
+++ b/style.css
@@ -241,9 +241,15 @@ span.shell-start {
/** index **/
.btn.download {
float: right;
- margin-top: 0.9em;
+ margin-top: 0.8em;
}
+.btn.download .note {
+ font-size: 0.4em;
+ font-style: italic;
+}
+
+
.info {
clear: both;
}
diff --git a/tools/page-parse b/tools/page-parse
index 1c81cf2..b54dd8d 100755
--- a/tools/page-parse
+++ b/tools/page-parse
@@ -24,6 +24,15 @@ curver="$( git tag -l \
| tail -n1
)"
+curver_date="$( date "+%d %b %Y" \
+ --date="$( git for-each-ref \
+ --format='%(*authordate)' \
+ "refs/tags/$curver" \
+ | cut -d' ' -f1-5 \
+ )"
+)"
+
+
# TODO: Both sed and gawk are unnecessary; it was just the most convenient
# solution
gawk '
@@ -33,4 +42,7 @@ gawk '
}
{ print }
' \
- | sed 's//'$curver'/g'
+ | sed "
+ s//$curver/g;
+ s//$curver_date/g;
+ "