@signalk/freeboard-sk 2.5.0 → 2.6.0-rc2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # CHANGELOG: Freeboard
2
2
 
3
+ ### v2.6.0
4
+
5
+ - **Added**: Ability to show/hide toolbar buttons on both sides of the screen.
6
+ - **Added**: Route builder. 1st release allows creating a route from waypoints.
7
+ - **Fixed**: Wind speed values in vessel popover showing 0 rather than - when no value is present.
8
+
3
9
  ### v2.5.0
4
10
 
5
11
  - **Added**: In the chart list, toggle the display of the bounds of all available charts on the map.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signalk/freeboard-sk",
3
- "version": "2.5.0",
3
+ "version": "2.6.0-rc2",
4
4
  "description": "Openlayers chart plotter implementation for Signal K",
5
5
  "keywords": [
6
6
  "signalk-webapp",
@@ -25,7 +25,7 @@
25
25
  "build:web": "ng build -c production --output-hashing all",
26
26
  "build:all": "npm run build:helper && npm run build:web",
27
27
  "build:prod": "npm run build:all",
28
- "prepare": "npm run build:all"
28
+ "prepack": "npm run build:all"
29
29
  },
30
30
  "author": "AdrianP",
31
31
  "contributors": [
@@ -1092,8 +1092,16 @@
1092
1092
  <div style="padding-left: 15px">
1093
1093
  <ul>
1094
1094
  <li>
1095
- <b>Draw a Route</b>: Create a route by clicking locations on
1096
- the map
1095
+ <b>Measure</b>: Measure distances by clicking locations on the
1096
+ map.
1097
+ </li>
1098
+ <li>
1099
+ <b>Draw Route</b>: Create a route by clicking locations on the
1100
+ map.
1101
+ </li>
1102
+ <li>
1103
+ <b>Build Route</b>: Displays the route builder screen where
1104
+ you can create a route from the available waypoints.
1097
1105
  </li>
1098
1106
  <li>
1099
1107
  <b>Drop Waypoint</b>: Create a waypoint by clicking a location
@@ -1108,9 +1116,38 @@
1108
1116
  <i>note</i> by clicking locations on the map to define the
1109
1117
  region.
1110
1118
  </li>
1119
+ </ul>
1120
+ </div>
1121
+ </div>
1122
+
1123
+ <div style="padding-top: 20px">
1124
+ <b>Route Builder:</b>
1125
+ </div>
1126
+ <div style="display: flex; flex-wrap: wrap">
1127
+ <div style="padding-right: 20px">
1128
+ <img
1129
+ src="./img/build_route.png"
1130
+ style="max-width: 250px"
1131
+ alt=""
1132
+ />
1133
+ </div>
1134
+ <div>
1135
+ <ul>
1136
+ <li>
1137
+ To add waypoints to the route, drag the waypoint over to the
1138
+ route.
1139
+ </li>
1111
1140
  <li>
1112
- <b>Measure</b>: Measure distances by clicking locations on the
1113
- map.
1141
+ Re-order the waypoints in the route by dragging them to the
1142
+ required location in the list.
1143
+ </li>
1144
+ <li>
1145
+ To remove a waypoint click the
1146
+ <i class="material-icons">delete</i> button.
1147
+ </li>
1148
+ <li>
1149
+ Click <b><i class="material-icons">save</i> Save</b> to name
1150
+ the route and save it.
1114
1151
  </li>
1115
1152
  </ul>
1116
1153
  </div>