Skip to content

Commit

Permalink
fix default configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
panaaj committed Sep 15, 2023
1 parent faba9b2 commit 9512191
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG: Freeboard

### v2.2.3

- **Fixed**: Do not make "Fixed Location" mode the default.

### v2.2.2

- **Fixed**: Update Anchor Watch to use `signalk-anchor-alarm` REST API to resolve incorrect state being displayed.
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": "@signalk/freeboard-sk",
"version": "2.2.2",
"version": "2.2.3",
"description": "Openlayers chart plotter implementation for Signal K",
"keywords": [
"signalk-webapp",
Expand Down
4 changes: 2 additions & 2 deletions src/app/app.info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const FreeboardConfig = {
animate: false,
limitZoom: false
},
fixedLocationMode: true,
fixedLocationMode: false,
fixedPosition: [0, 0],
vesselTrail: false, // display trail
vesselWindVectors: true, // display vessel TWD, AWD vectors
Expand Down Expand Up @@ -264,7 +264,7 @@ export class AppInfo extends Info {
this.name = 'Freeboard-SK';
this.shortName = 'Freeboard';
this.description = `Signal K Chart Plotter.`;
this.version = '2.2.2';
this.version = '2.2.3';
this.url = 'https://github.com/signalk/freeboard-sk';
this.logo = './assets/img/app_logo.png';

Expand Down

0 comments on commit 9512191

Please sign in to comment.