Skip to content

Commit

Permalink
Release 1.5.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Maprunner committed Jan 11, 2020
1 parent dfcd5ff commit d811f3a
Show file tree
Hide file tree
Showing 13 changed files with 19 additions and 17 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
# Routegadget 2

## Latest news
Version 1.5.7 was released on 30th December 2018 and is installed on all routegadget.co.uk sites.
Version 1.5.8 was released on 11th January 2020 and is installed on all routegadget.co.uk sites. This includes several enhancements.

This improves the statistics display by adding tabs to reduce some of the scrolling. Double click on a runner on the results tab to see this.
* The statistics display (accessed by double clicking on a runner on the results tab) has been further updated and now includes "performance" and "consistency" values. Performance represents how well you did against the average of the top 25% of splits for each leg. A higher score is better. Consistency gives an indication of how your performance on each leg varied. A lower score is better.

It also fixes an IOF XML V3 results import bug which meant that missing controls were not being handled correctly.
* Colour-coding of GPS routes for georeferenced maps is now based on minutes per kilometer. You can configure the speed range by setting the fast (green) and slow (red) speeds from the configuration dialog. Points below the slow setting are displayed in blue.

* Various minor changes have been made to improve the handling of incomplete results (e.g. missing punches).

## User Guide and Introductory Videos

Expand Down
2 changes: 1 addition & 1 deletion css/rg2-1.5.7.min.css → css/rg2-1.5.8.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
require(dirname(__FILE__) . '/app/utils.php');

// version replaced by Gruntfile as part of release
define('RG2VERSION', '1.5.7');
define('RG2VERSION', '1.5.8');
define("RG_LOG_FILE", dirname(__FILE__)."/log/rg2log.txt");

if (file_exists(dirname(__FILE__) . '/rg2-config.php')) {
Expand Down
2 changes: 1 addition & 1 deletion js/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
EVENT_WITHOUT_RESULTS: 2,
SCORE_EVENT: 3,
// version gets set automatically by grunt file during build process
RG2VERSION: '1.5.7',
RG2VERSION: '1.5.8',
TIME_NOT_FOUND: 9999,
// values for evt.which
RIGHT_CLICK: 3,
Expand Down
4 changes: 0 additions & 4 deletions js/rg2-1.5.7.min.js

This file was deleted.

1 change: 0 additions & 1 deletion js/rg2-1.5.7.min.js.map

This file was deleted.

4 changes: 4 additions & 0 deletions js/rg2-1.5.8.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions js/rg2-1.5.8.min.js.map

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion js/rg2manager-1.5.7.min.js.map

This file was deleted.

6 changes: 3 additions & 3 deletions js/rg2manager-1.5.7.min.js → js/rg2manager-1.5.8.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions js/rg2manager-1.5.8.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "rg2",
"description": "Routegadget 2",
"version": "1.5.7",
"version": "1.5.8",
"license": "MIT",
"repository": "https://github.com/Maprunner/rg2",
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion rg2api.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
}

// version replaced by Gruntfile as part of release
define('RG2VERSION', '1.5.7');
define('RG2VERSION', '1.5.8');
define('KARTAT_DIRECTORY', $kartat);
define('LOCK_DIRECTORY', dirname(__FILE__)."/lock/saving/");
define('CACHE_DIRECTORY', $kartat."cache/");
Expand Down

0 comments on commit d811f3a

Please sign in to comment.