Skip to content

Commit

Permalink
Merge pull request #190 from GIScience/hotfix-0.2.1
Browse files Browse the repository at this point in the history
Hotfix 0.2.1
  • Loading branch information
TimMcCauley authored Feb 27, 2018
2 parents 853e05a + 71d9cff commit e87a6f1
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 11 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [0.2.1] - 2018-02-27

### Removed
- elevation for car and hgv requests as they are removed from the backend vehicle graphs
(effects heightgraph display)

## [0.2.0] - 2018-02-27

### Added
Expand Down
14 changes: 7 additions & 7 deletions app/constants/lists.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ angular.module('orsApp')
profiles: {
Car: {
name: 'Car',
elevation: true,
elevation: false,
subgroup: 'Car',
request: 'driving-car',
shortValue: '0',
Expand Down Expand Up @@ -117,42 +117,42 @@ angular.module('orsApp')
},
hgv: {
name: 'hgv',
elevation: true,
elevation: false,
subgroup: 'HeavyVehicle',
request: 'driving-hgv',
shortValue: '4a'
},
goods: {
name: 'goods',
elevation: true,
elevation: false,
subgroup: 'HeavyVehicle',
request: 'driving-hgv',
shortValue: '4b'
},
bus: {
name: 'bus',
elevation: true,
elevation: false,
subgroup: 'HeavyVehicle',
request: 'driving-hgv',
shortValue: '4c'
},
agricultural: {
name: 'agricultural',
elevation: true,
elevation: false,
subgroup: 'HeavyVehicle',
request: 'driving-hgv',
shortValue: '4d'
},
forestry: {
name: 'forestry',
elevation: true,
elevation: false,
subgroup: 'HeavyVehicle',
request: 'driving-hgv',
shortValue: '4e'
},
delivery: {
name: 'delivery',
elevation: true,
elevation: false,
subgroup: 'HeavyVehicle',
request: 'driving-hgv',
shortValue: '4f'
Expand Down
4 changes: 2 additions & 2 deletions app/includes/route-instructions.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ <h4 class="pointer" ng-bind-html="$ctrl.waypoints[$index]._address">
</div>
</div>
<div class="group">
<div class="summary-item" ng-if="segment.detour_factor" tooltip-side="top" tooltip-template="{{('DETOUR_FACTOR' | translate)}}" tooltips="">
<div class="summary-item" ng-if="segment.detourfactor" tooltip-side="top" tooltip-template="{{('DETOUR_FACTOR' | translate)}}" tooltips="">
<span>
<i class="fa fa-lastfm">
</i>
</span>
<span ng-bind-html="'<b>' + (route.summary.distance / (segment.detour_factor * route.summary.distance) | number: 1 ) + '</b>'">
<span ng-bind-html="'<b>' + (route.summary.distance / (segment.detourfactor * route.summary.distance) | number: 1 ) + '</b>'">
</span>
</div>
<div class="summary-item" ng-if="segment.percentage" tooltip-side="top" tooltip-template="{{('PERCENTAGE_OF_ROUTE' | translate)}}" tooltips="">
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "openrouteservice.org",
"description": "angular version of openrouteservice.org",
"version": "0.2.0",
"version": "0.2.1",
"homepage": "http://www.uni-heidelberg.de",
"license": "MIT",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "maps.openrouteservice.org",
"version": "0.2.0",
"version": "0.2.1",
"scripts": {
"start": "npm run lite",
"lite": "lite-server"
Expand Down

0 comments on commit e87a6f1

Please sign in to comment.