Skip to content

Commit b219657

Browse files
authored
Merge pull request #132 from fraz3alpha/release-0.7.4
Add v0.7.4 release
2 parents 71d9e5e + f8600c8 commit b219657

File tree

4 files changed

+83
-1
lines changed

4 files changed

+83
-1
lines changed

build/version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export VERSION=0.7.3
1+
export VERSION=0.7.4
22
# Strip any 'v' characters from the version string, as exist in the git tag
33
export EXTENSION_BUILD_VERSION=`echo ${EXTENSION_BUILD_VERSION:-$VERSION} | sed -e s/v//`
44
# Default the build id variable to zero if not set - Travis should set this to
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
#!/usr/bin/env bash
2+
3+
# This script pushing the built copy of the this site to a staging repository
4+
5+
# Enable exit on failure
6+
set -e
7+
8+
echo "Copying shared resources to the website folder"
9+
10+
echo "Copying badges to website img/badges directory"
11+
mkdir -p website/img/badges
12+
cp -r images/badges/256x256/*.png website/img/badges/
13+
14+
echo "Copying flags to website img/flags directory"
15+
mkdir -p website/img/flags
16+
cp -r images/flags/twemoji/png/*.png website/img/flags/
17+
18+
echo "Copying logos to website img/logo directory"
19+
mkdir -p website/img/logo
20+
cp -r images/logo/*.png website/img/logo/
21+
22+
echo "Copying screenshots to website img/screenshots directory"
23+
mkdir -p website/img/screenshots
24+
cp -r images/screenshots/*.png website/img/screenshots/
25+
26+
# based on https://jekyllrb.com/docs/continuous-integration/travis-ci/
27+
28+
# Move into the website directory
29+
cd website
30+
31+
SITE_DIR=_site
32+
33+
# Clear out the build directory
34+
rm -rf ${SITE_DIR} && mkdir ${SITE_DIR}
35+
36+
docker run --rm --name jekyll \
37+
-p 4000:4000 \
38+
-v `pwd`:/srv/jekyll \
39+
-v `pwd`/vendor/bundle:/usr/local/bundle \
40+
jekyll/jekyll jekyll serve
41+
42+
# Print summary
43+
echo "Built site, total size: `du -sh ${SITE_DIR}`"

website/_config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ header_pages:
5656
- _pages/faq.md
5757
- _pages/getstarted.md
5858

59+
permalink: /:year/:month/:day/:title:output_ext
60+
5961
# Exclude from processing.
6062
# The following items will not be processed, by default. Create a custom list
6163
# to override the default setting.
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
layout: post
3+
title: "Version 0.7.4 Released"
4+
date: 2018-12-03 23:00:00 +0000
5+
categories:
6+
- chrome-extension
7+
- firefox-addon
8+
- release
9+
---
10+
11+
It's Christmas!
12+
13+
Well, it's Christmas soon, and to celebrate, we have released a new running
14+
badge to adorn those runners who have managed to run on Christmas day.
15+
16+
(We'd really like to give extra special kudos to those volunteers giving up their
17+
Christmas morning, but until the parkrun website lists the dates of each volunteer
18+
role, unfortunately we aren't able to do so.)
19+
20+
21+
Additionally, we have added the 'All Weather Runner' badge, contributed by
22+
[Russell Boyatt](https://github.com/rboyatt) - this badge celebrates those parkrunners
23+
who have kept up their attendence come rain or shime and have run at least once
24+
in every calendar month (they don't have to be in the same year).
25+
26+
![Run on Christmas Day (25th December)]({{ site.baseurl }}/img/badges/runner-christmas-day.png)![All Weather Runner - Run in each month of the year (not necessarily in the same year)]({{ site.baseurl }}/img/badges/runner-all-weather-runner.png)
27+
{: style="text-align: center;"}
28+
29+
Happy parkrunning!
30+
31+
If you have already installed the extension it should update soon - typically we
32+
have found it takes a few days for Chrome and Firefox to auto-update, but it should
33+
do so eventually. If you haven't yet joined the fun you can get it from one of
34+
the links below. :
35+
36+
[![Running Challenges in the Chrome Web Store]({{ site.baseurl }}/img/ChromeWebStore_BadgeWBorder_v2_206x58.png "Running Challenges in the Chrome Web Store")]({{ site.data.webstore.webstore-running-challenges-link }})[![Running Challenges in the Firefox Add-ons Web Store]({{ site.baseurl }}/img/firefox_web_store-172x60.png "Running Challenges in the Firefox Add-ons Web Store")]({{ site.data.webstore.firefox-running-challenges-link }})
37+
{: style="text-align: center;"}

0 commit comments

Comments
 (0)