diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c1913ab..42443b17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGELOG: Freeboard +### v2.2.2 + +- **Fixed**: Update Anchor Watch to use `signalk-anchor-alarm` REST API to resolve incorrect state being displayed. +- **Fixed**: Switching to fixed location did not update map until a delta update had been parsed. + ### v2.2.1 - **Fixed**: Issue where waypoint was not centered on the screen when the center waypoint button was clicked from the entry in the waypoint list. diff --git a/package.json b/package.json index 3fe32dab..ad8a804f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@signalk/freeboard-sk", - "version": "2.2.1", + "version": "2.2.2", "description": "Openlayers chart plotter implementation for Signal K", "keywords": [ "signalk-webapp", diff --git a/src/app/app.info.ts b/src/app/app.info.ts index 524374f9..87bbb055 100644 --- a/src/app/app.info.ts +++ b/src/app/app.info.ts @@ -170,7 +170,7 @@ interface PluginInfo { @Injectable({ providedIn: 'root' }) export class AppInfo extends Info { private DEV_SERVER = { - host: '192.168.86.32', //'localhost', // host name || ip address + host: 'localhost', //'192.168.86.32', // host name || ip address port: 3000, // port number ssl: false }; @@ -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.1'; + this.version = '2.2.2'; this.url = 'https://github.com/signalk/freeboard-sk'; this.logo = './assets/img/app_logo.png';