signalk-binnacle 0.1.3 → 0.2.1

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/README.md CHANGED
@@ -8,11 +8,13 @@
8
8
 
9
9
  A WebGL chart plotter for [Signal K](https://signalk.org).
10
10
 
11
- > **0.1.3.** This release refines the interface: a grouped, fully keyboard-navigable app menu with
12
- > edge-docked Tracks, Routes, and Layers panels and back-to-menu navigation, Center, Follow, and
13
- > Forecast as three matching labeled controls in the bottom status strip, a cleaner phone layout, an
14
- > opt-in NOAA ENC data-quality overlay, and reduced-motion support. See the
15
- > [changelog](CHANGELOG.md) for the full list.
11
+ > **0.2.1.** A reliability patch. Points of interest no longer flicker (a transient provider response
12
+ > could blank the markers; they are now kept and cached by area), active marine warnings stay put
13
+ > through a transient weather hiccup, an active route re-hydrates its guidance after a stream
14
+ > reconnect instead of freezing on stale values, server charts no longer blank on a transient load
15
+ > failure, and orphaned imported-chart storage is reclaimed. A hidden Points-of-interest layer now
16
+ > does no background work, a base-map console-warning stream is silenced, and a whole-codebase
17
+ > cleanup landed. See the [changelog](CHANGELOG.md) for the full list.
16
18
  >
17
19
  > **It has not been field-tested at any scale.** It has been developed and verified against a single
18
20
  > Signal K server, never across a fleet or a range of real-world boats, hardware, and conditions. It
@@ -35,12 +37,18 @@ Signal K server.
35
37
  Binnacle ships its full feature set as a Signal K webapp:
36
38
 
37
39
  - **Charts and layers:** a GPU vector base map, server charts, four streaming bathymetry and ENC
38
- sources, and your own imported PMTiles, in a toggle, fade, and drag-reorder Layers panel.
40
+ sources (NOAA ENC, BlueTopo, and EMODnet each add a nested survey-quality facet; GEBCO is global
41
+ base bathymetry), and your own imported PMTiles, in a collapsible, categorized Layers panel with
42
+ per-layer toggle, fade, and drag-reorder.
43
+ - **Overlays:** free, key-free OpenSeaMap seamarks, marine protected areas, maritime boundaries, and
44
+ NASA GIBS ocean conditions (sea-surface temperature and sea ice), each with its source attribution.
39
45
  - **Routing:** draw and save routes as Signal K resources and follow one with a nav strip
40
46
  (cross-track, distance, bearing, velocity made good, and time to go) over the v2 Course API, with
41
47
  an arrival alarm.
42
48
  - **Weather:** a zoom-capped mini-map with animated WebGL wind, pressure isobars, waves,
43
49
  precipitation, cloud, and radar, a tap-for-value readout, and a conditions and warnings panel.
50
+ - **Tides:** the nearest NOAA tide station's next high and low with a 48-hour curve, and the nearest
51
+ tidal-current station's next flood or ebb, for US waters.
44
52
  - **Lookout:** a collision watch with CPA and TCPA, chart-highlight rings, an audible alarm, and a
45
53
  published Signal K notification.
46
54
  - **Tracks:** record, save, show, and export your voyage track.
@@ -98,6 +106,17 @@ To add HTTPS to Signal K, the simplest way is the
98
106
  issues the server certificate, and distributes the root to your devices by QR code. The Signal K
99
107
  server's built-in SSL settings (Server, then Settings, then SSL) are an alternative.
100
108
 
109
+ One more step is required, and it is easy to miss: your browser has to **trust** that certificate,
110
+ not just reach it. A self-signed certificate, including one the signalk-ssl plugin generates, is not
111
+ trusted by default, and browsers refuse to register a service worker from an origin whose certificate
112
+ they do not trust, even after you click through the page's certificate warning. So if you only accept
113
+ the one-time warning, the page loads but offline caching never activates, and the console shows a
114
+ message like "service worker registration failed: an SSL certificate error occurred." To fix it,
115
+ install the certificate authority's root (the QR code or `.pem` the plugin gives you) into your
116
+ browser or operating system trust store and mark it trusted, then reload over HTTPS. Once the
117
+ certificate is trusted, the service worker registers and the base map and chart tiles cache for
118
+ offline use.
119
+
101
120
  ## Development
102
121
 
103
122
  This project targets Node 22 or newer. Lint and format use the Biome binary, which must be installed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "signalk-binnacle",
3
- "version": "0.1.3",
3
+ "version": "0.2.1",
4
4
  "description": "WebGL chart plotter for Signal K",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",