@signalk/freeboard-sk 2.24.1 → 3.0.0-beta.0
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 +16 -0
- package/docs/screenshots/2_freeboard-sk.jpg +0 -0
- package/docs/screenshots/3_freeboard-sk.jpg +0 -0
- package/package.json +11 -6
- package/public/3rdpartylicenses.txt +45 -19
- package/public/assets/img/no-such-symbol.svg +4 -0
- package/public/chunk-2FVHKTB6.js +1010 -0
- package/public/chunk-3NORWTAX.js +1 -0
- package/public/chunk-4H477JJR.js +1612 -0
- package/public/chunk-55GTZWIA.js +1 -0
- package/public/chunk-7N46HDRA.js +1 -0
- package/public/chunk-F7DZSD5Z.js +1 -0
- package/public/chunk-FZ6NAONR.js +1 -0
- package/public/chunk-HALNSHCE.js +929 -0
- package/public/chunk-KYXYDUTF.js +1 -0
- package/public/chunk-MNPNP6MN.js +3871 -0
- package/public/{chunk-LXUTMJYP.js → chunk-MZFM2DTJ.js} +1 -1
- package/public/chunk-N7K5OEHJ.js +1709 -0
- package/public/chunk-NPNYOL2H.js +1 -0
- package/public/chunk-QBGO6O5L.js +1 -0
- package/public/chunk-UHBHOIXR.js +107 -0
- package/public/chunk-VHJDKR5K.js +1 -0
- package/public/chunk-Z5RYOUPW.js +2 -0
- package/public/index.html +1 -1
- package/public/main-E44BDMWA.js +466 -0
- package/public/chunk-2AF4T5IB.js +0 -1
- package/public/chunk-3GHIRJ3C.js +0 -2
- package/public/chunk-A4TULHTL.js +0 -1
- package/public/chunk-AFVK3UQJ.js +0 -5482
- package/public/chunk-AX3UMUXB.js +0 -1
- package/public/chunk-EFVTFEXB.js +0 -1
- package/public/chunk-FALIRPMH.js +0 -1035
- package/public/chunk-G4GM24WE.js +0 -1
- package/public/chunk-NTIQMWPW.js +0 -2718
- package/public/chunk-QIOZNURQ.js +0 -1
- package/public/chunk-SBFXQ3G7.js +0 -1
- package/public/main-AZEF35BN.js +0 -466
- /package/{src/assets → assets}/icons/icon-192x192.png +0 -0
package/README.md
CHANGED
|
@@ -143,6 +143,22 @@ _Note: The `Signal K Instrument Panel` app will be displayed if no user selectio
|
|
|
143
143
|
|
|
144
144
|
---
|
|
145
145
|
|
|
146
|
+
### Screen Widgets:
|
|
147
|
+
|
|
148
|
+
If you have installed any plugins on your Signal K server that provide screen widgets, you can place them directly onto the chart screen.
|
|
149
|
+
|
|
150
|
+
Widgets sit in the corners and at the centre of the top and bottom edges of the screen _(the top-left corner is reserved for Freeboard's own menu)_.
|
|
151
|
+
|
|
152
|
+

|
|
153
|
+
|
|
154
|
+
**To add a widget**, press and hold an empty spot in any of these areas for at least 1.5 seconds (or right-click if you are using a mouse and keyboard). A short list of the widgets that fit there appears — choose one and it is added to your screen. As you add more, widgets stack neatly from the edge inward.
|
|
155
|
+
|
|
156
|
+
**To change or remove a widget** you have already placed, press and hold the widget itself for 1.5 seconds. This opens its settings, where you can adjust it (if it has any options) or remove it from the screen.
|
|
157
|
+
|
|
158
|
+
Your layout is remembered, so the widgets you place are still there the next time you open Freeboard-SK.
|
|
159
|
+
|
|
160
|
+
---
|
|
161
|
+
|
|
146
162
|
### S57 Charts
|
|
147
163
|
|
|
148
164
|
Freeboard-SK is able to display S57 ENC charts that have been converted to vector tiles with [s57-tiler](https://github.com/wdantuma/s57-tiler). _(See the [README](https://github.com/wdantuma/s57-tiler) for instructions how to create the vector tiles from downloaded S57 ENC's.)_
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signalk/freeboard-sk",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0-beta.0",
|
|
4
4
|
"description": "Openlayers chart plotter implementation for Signal K",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"signalk-webapp",
|
|
@@ -10,15 +10,17 @@
|
|
|
10
10
|
"files": [
|
|
11
11
|
"plugin",
|
|
12
12
|
"public",
|
|
13
|
-
"
|
|
13
|
+
"assets/icons/icon-192x192.png",
|
|
14
14
|
"docs/screenshots",
|
|
15
15
|
"CHANGELOG.md"
|
|
16
16
|
],
|
|
17
17
|
"signalk": {
|
|
18
18
|
"displayName": "Freeboard-SK",
|
|
19
|
-
"appIcon": "
|
|
19
|
+
"appIcon": "assets/icons/icon-192x192.png",
|
|
20
20
|
"screenshots": [
|
|
21
|
-
"./docs/screenshots/1_freeboard-sk.png"
|
|
21
|
+
"./docs/screenshots/1_freeboard-sk.png",
|
|
22
|
+
"./docs/screenshots/2_freeboard-sk.jpg",
|
|
23
|
+
"./docs/screenshots/3_freeboard-sk.jpg"
|
|
22
24
|
],
|
|
23
25
|
"recommends": [
|
|
24
26
|
"signalk-charts-provider-simple",
|
|
@@ -39,14 +41,16 @@
|
|
|
39
41
|
"build": "ng build",
|
|
40
42
|
"test": "ng test",
|
|
41
43
|
"format": "prettier --ignore-path .gitignore --write \"src/**/*.+(ts|html)\"",
|
|
44
|
+
"format:check": "prettier --ignore-path .gitignore --check \"src/**/*.+(ts|html)\"",
|
|
42
45
|
"format:helper": "prettier --ignore-path .gitignore --write \"helper/**/*.+(ts|html)\"",
|
|
43
46
|
"format:all": "npm run format && npm run format:helper",
|
|
44
47
|
"build:helper": "tsc -p tsconfig-helper.json",
|
|
45
|
-
"build:web": "
|
|
48
|
+
"build:web": "node scripts/build-web.mjs",
|
|
46
49
|
"build:sit": "ng build -c development --aot",
|
|
47
50
|
"build:all": "npm run build:helper && npm run build:web",
|
|
48
51
|
"build:prod": "npm run build:all",
|
|
49
|
-
"prepack": "npm run build:all"
|
|
52
|
+
"prepack": "npm run build:all",
|
|
53
|
+
"test:ci": "node scripts/test-ci.mjs"
|
|
50
54
|
},
|
|
51
55
|
"author": "AdrianP",
|
|
52
56
|
"contributors": [
|
|
@@ -62,6 +66,7 @@
|
|
|
62
66
|
"@signalk/server-api": "^2.24.0",
|
|
63
67
|
"geolib": "^3.3.3",
|
|
64
68
|
"google-protobuf": "^4.0.1",
|
|
69
|
+
"signalk-plotterext-bus": "^0.8.0",
|
|
65
70
|
"tslib": "^2.0.0",
|
|
66
71
|
"uuid": "^11.1.0"
|
|
67
72
|
},
|
|
@@ -552,6 +552,11 @@ Package: mgrs
|
|
|
552
552
|
License: "MIT"
|
|
553
553
|
|
|
554
554
|
|
|
555
|
+
--------------------------------------------------------------------------------
|
|
556
|
+
Package: signalk-client-angular
|
|
557
|
+
License: "Apache-20"
|
|
558
|
+
|
|
559
|
+
|
|
555
560
|
--------------------------------------------------------------------------------
|
|
556
561
|
Package: pmtiles
|
|
557
562
|
License: "BSD-3-Clause"
|
|
@@ -764,11 +769,6 @@ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
764
769
|
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
765
770
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
766
771
|
|
|
767
|
-
--------------------------------------------------------------------------------
|
|
768
|
-
Package: signalk-client-angular
|
|
769
|
-
License: "Apache-20"
|
|
770
|
-
|
|
771
|
-
|
|
772
772
|
--------------------------------------------------------------------------------
|
|
773
773
|
Package: @kolkov/angular-editor
|
|
774
774
|
License: "MIT"
|
|
@@ -961,6 +961,46 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
961
961
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
962
962
|
SOFTWARE.
|
|
963
963
|
|
|
964
|
+
--------------------------------------------------------------------------------
|
|
965
|
+
Package: uuid
|
|
966
|
+
License: "MIT"
|
|
967
|
+
|
|
968
|
+
The MIT License (MIT)
|
|
969
|
+
|
|
970
|
+
Copyright (c) 2010-2020 Robert Kieffer and other contributors
|
|
971
|
+
|
|
972
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
973
|
+
|
|
974
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
975
|
+
|
|
976
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
977
|
+
|
|
978
|
+
--------------------------------------------------------------------------------
|
|
979
|
+
Package: signalk-plotterext-bus
|
|
980
|
+
License: "MIT"
|
|
981
|
+
|
|
982
|
+
MIT License
|
|
983
|
+
|
|
984
|
+
Copyright (c) 2026 Joel Kozikowski
|
|
985
|
+
|
|
986
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
987
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
988
|
+
in the Software without restriction, including without limitation the rights
|
|
989
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
990
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
991
|
+
furnished to do so, subject to the following conditions:
|
|
992
|
+
|
|
993
|
+
The above copyright notice and this permission notice shall be included in all
|
|
994
|
+
copies or substantial portions of the Software.
|
|
995
|
+
|
|
996
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
997
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
998
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
999
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1000
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1001
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1002
|
+
SOFTWARE.
|
|
1003
|
+
|
|
964
1004
|
--------------------------------------------------------------------------------
|
|
965
1005
|
Package: @angular/core
|
|
966
1006
|
License: "MIT"
|
|
@@ -1314,20 +1354,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
1314
1354
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1315
1355
|
THE SOFTWARE.
|
|
1316
1356
|
|
|
1317
|
-
--------------------------------------------------------------------------------
|
|
1318
|
-
Package: uuid
|
|
1319
|
-
License: "MIT"
|
|
1320
|
-
|
|
1321
|
-
The MIT License (MIT)
|
|
1322
|
-
|
|
1323
|
-
Copyright (c) 2010-2020 Robert Kieffer and other contributors
|
|
1324
|
-
|
|
1325
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
1326
|
-
|
|
1327
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
1328
|
-
|
|
1329
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1330
|
-
|
|
1331
1357
|
--------------------------------------------------------------------------------
|
|
1332
1358
|
Package: google-protobuf
|
|
1333
1359
|
License: "(BSD-3-Clause AND Apache-2.0)"
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="48" height="48">
|
|
2
|
+
<circle cx="24" cy="24" r="22" fill="#e57373" stroke="#c62828" stroke-width="2"/>
|
|
3
|
+
<text x="24" y="33" text-anchor="middle" font-family="sans-serif" font-size="28" font-weight="bold" fill="white">?</text>
|
|
4
|
+
</svg>
|