1
0
Fork 0

Added current release date to download button and page

website
Mike Gerwitz 2012-05-07 00:40:29 -04:00
parent 279931cd0b
commit 1a3ccc3c6c
No known key found for this signature in database
GPG Key ID: F22BB8158EE30EAB
4 changed files with 22 additions and 2 deletions

View File

@ -1,6 +1,7 @@
<p> <p>
<span class="release-current"> <span class="release-current">
Current Release: <span class="version"><!--%curver--></span> Current Release: <span class="version"><!--%curver--></span>
<span class="version date">(<!--%curver-date-->)</span>
</span> </span>
</p> </p>
<p> <p>

View File

@ -7,6 +7,7 @@
<a href="download.html" class="download btn large go"> <a href="download.html" class="download btn large go">
Download v<!--%curver--> Download v<!--%curver-->
<div class="note">(Released: <!--%curver-date-->)</div>
</a> </a>
<ul class="features"> <ul class="features">

View File

@ -241,9 +241,15 @@ span.shell-start {
/** index **/ /** index **/
.btn.download { .btn.download {
float: right; float: right;
margin-top: 0.9em; margin-top: 0.8em;
} }
.btn.download .note {
font-size: 0.4em;
font-style: italic;
}
.info { .info {
clear: both; clear: both;
} }

View File

@ -24,6 +24,15 @@ curver="$( git tag -l \
| tail -n1 | 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 # TODO: Both sed and gawk are unnecessary; it was just the most convenient
# solution # solution
gawk ' gawk '
@ -33,4 +42,7 @@ gawk '
} }
{ print } { print }
' \ ' \
| sed 's/<!--%curver-->/'$curver'/g' | sed "
s/<!--%curver-->/$curver/g;
s/<!--%curver-date-->/$curver_date/g;
"