Skip to content

Commit fe198cb

Browse files
Add bits for v1.4.0 (#391)
* Prepare v1.4.0 release * Add new blogpost --------- Co-authored-by: Pete Johns <[email protected]>
1 parent abe0641 commit fe198cb

File tree

3 files changed

+59
-1
lines changed

3 files changed

+59
-1
lines changed
1.79 MB
Loading

build/version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash -xe
22

3-
export VERSION=1.3.1
3+
export VERSION=1.4.0
44
# Strip any 'v' characters from the version string, as exist in the git tag
55
export EXTENSION_BUILD_VERSION=`echo ${EXTENSION_BUILD_VERSION:-$VERSION} | sed -e s/v//`
66
# Default the build id variable to zero if not set - The CI system should set this to
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
---
2+
layout: post
3+
title: "Bug fixes and adapting to the parkrun wiki going away (v1.4.0)"
4+
categories:
5+
- chrome-extension
6+
- firefox-addon
7+
- release
8+
---
9+
10+
Things change, but we try and keep up (within some period of time, measured in months)
11+
12+
## New Features
13+
14+
### Added parkwalker role badge
15+
16+
The parkwalker role is a relatively new one, but by this point I think it has been around at least 6 months, so we aren't exactly quick off the mark in including this... But now there is a badge for this role.
17+
18+
## Bug fixes
19+
20+
### Updated the colours of all the high-viz badges
21+
22+
As the parkwalker role was added we took the opportunity to update all the colours of the high-viz vests to match the current colour scheme. The Run Director bib was at least 2 versions behind!
23+
24+
### Name Badge fixed
25+
26+
At some point parkrun changed the way the parkrunner name was displayed at the top of the page to suffix it with your parkrun number, e.g. A1309364, which got automatically picked up by this challenge, and made you need to gain an extra A (as you couldn't get any numbers, these were skipped anyway). [Stephen Greenham](https://github.com/solarisfire) fixed this for us via [#370](https://github.com/fraz3alpha/running-challenges/pull/370), thanks!
27+
28+
### parkrun.pl fixed
29+
30+
A few things seemed to have changed on the Polish site, including the name of the results table, and some of the translations. The results table name resulted in a massive fail parsing the page and the extension did not handle this well, the translations were just missing badges.
31+
32+
### Removed the Dependency on the parkrun Wiki
33+
34+
It seems the wiki is on the way out, and there is less and less there. In our case we relied on a table that was published there which said whether an event was live or not (effectively, had it had at least one event), and we used that to omit events that were on the map, but hadn't started, from anything we calculated.
35+
Without this data you might find that new parkruns pop up and you'll have gaps in your explorer map for events that you couldn't have run, or similarly a NENDY of an even that hasn't started. In the grand scheme of keeping things simple, we'll just have to accept this now, and live with it. The wiki page was often flakey anyway, and often was being regenerated which led to frequent error messages popping up, so hopefully now at least it will go back to being pretty stable.
36+
37+
### Warm up Volunteer badge fixed
38+
39+
This volunteer role changed from "Warm Up Leader (junior events only)" to "Warm Up Leader", so needed an alias adding - it's now back.
40+
41+
### Fixed error when no the parkrunner hadn't run any events
42+
43+
We've got [Luke Woodward](https://github.com/LukeWoodward) to thank for this fix, after he provided us with the changes required via [#383](https://github.com/fraz3alpha/running-challenges/pull/383). It turned out that if a parkrunner didn't have any results against their name, the extension broke trying to print some debug information - and now it doesn't. Thanks Luke!
44+
45+
## General Improvements
46+
47+
We added a way to reliably tests all the parkrun sites with a locally saved copy of several parkrunners (mostly Andy, but also some others) against each build of the extension, so hopefully we can make sure that all the volunteer role translations are correct, and we don't lose any badges. It's still a work in progress, but we have something to work from now - and it has already proved its worth while fixing the Polish parkrun site, and some others we found were incorrect!
48+
49+
50+
## How do I get all of this great stuff?
51+
52+
If you have already installed the extension it should update soon. Typically we
53+
have found it takes a few days to auto-update, but it should
54+
do so eventually. If you haven't yet joined the fun you can get it from one of
55+
the links below (the Firefox version will be likely a little delayed):
56+
57+
[![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 }})
58+
{: style="text-align: center;"}

0 commit comments

Comments
 (0)