From 344ad5e04dbf8a53e6043a4181bdaeed24d90ce9 Mon Sep 17 00:00:00 2001 From: Amandus Date: Tue, 27 Feb 2018 14:41:40 +0100 Subject: [PATCH 1/2] Fixes bugs in 0.2.0 elevation got removed from vehicle graphs in backend therefore removing elevation from hgv and car requests renaming detour_factor to detourfactor (refers to https://github.com/GIScience/openrouteservice/pull/128) --- app/constants/lists.js | 14 +++++++------- app/includes/route-instructions.html | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/app/constants/lists.js b/app/constants/lists.js index 7ee5c794..19a1feea 100755 --- a/app/constants/lists.js +++ b/app/constants/lists.js @@ -47,7 +47,7 @@ angular.module('orsApp') profiles: { Car: { name: 'Car', - elevation: true, + elevation: false, subgroup: 'Car', request: 'driving-car', shortValue: '0', @@ -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' diff --git a/app/includes/route-instructions.html b/app/includes/route-instructions.html index d65e0a87..806cfcaf 100755 --- a/app/includes/route-instructions.html +++ b/app/includes/route-instructions.html @@ -53,12 +53,12 @@

-
+
- +
From 71d9cff65f3d400447aff27bc007778590e4fc94 Mon Sep 17 00:00:00 2001 From: Amandus Date: Tue, 27 Feb 2018 14:45:50 +0100 Subject: [PATCH 2/2] Changed Version to 0.2.1 --- CHANGELOG.md | 6 ++++++ bower.json | 2 +- package.json | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9939f9d7..8a2dda2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/bower.json b/bower.json index 9feea7a6..a2fab34a 100755 --- a/bower.json +++ b/bower.json @@ -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, diff --git a/package.json b/package.json index 50e9c090..b7f1f8e2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "maps.openrouteservice.org", - "version": "0.2.0", + "version": "0.2.1", "scripts": { "start": "npm run lite", "lite": "lite-server"