@noforeignland/signalk-to-noforeignland 1.0.1-beta.8 → 1.1.0-beta.2
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 +3 -0
- package/PROJECT_STRUCTURE.md +0 -0
- package/README.md +10 -3
- package/doc/beta_install_cerbo.md +13 -3
- package/index.js +214 -890
- package/lib/ConfigManager.js +216 -0
- package/lib/DataPathEmitter.js +93 -0
- package/lib/DirectoryUtils.js +38 -0
- package/lib/HealthMonitor.js +91 -0
- package/lib/PluginCleanup.js +161 -0
- package/lib/TrackLogger.js +306 -0
- package/lib/TrackMigration.js +110 -0
- package/lib/TrackSender.js +257 -0
- package/package.json +1 -1
- package/doc/dev +0 -17
package/CHANGELOG.md
CHANGED
|
File without changes
|
package/README.md
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
Effortlessly log your boat's movement to **noforeignland.com**
|
|
3
3
|
|
|
4
4
|
## Important for 0.1.x users
|
|
5
|
-
|
|
6
|
-
Users of the old (depricated) 0.1.x versions need to install this new package once manually using the Signal K Appstore. The Plugin Configuration will be kept from the 0.1.x install.
|
|
5
|
+
Upgrade to >1.0.1 by installing this plugin from the Appstore ageain. Your old config will be migrated.
|
|
7
6
|
|
|
8
7
|
## Features
|
|
9
8
|
* Automatically log your position to noforeignland.com
|
|
@@ -43,4 +42,12 @@ noforeignland.status - string - Status & Error
|
|
|
43
42
|
noforeignland.status_boolean - number - 0 = normal operation, 1 = error
|
|
44
43
|
noforeignland.source - string - string - data source of navigation.position
|
|
45
44
|
notifications.noforeignland.status_boolean - json object - auto created
|
|
46
|
-
```
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
https://github.com/noforeignland/nfl-signalk/issues
|
|
48
|
+
|
|
49
|
+
# Virctron Cerbo GX Users
|
|
50
|
+
|
|
51
|
+
## Limited storage
|
|
52
|
+
Signal K can quickly exhaust the small onboard storage of the device, especially when a lot of logging is enabled. Vicron Energy addressed this here:
|
|
53
|
+
https://www.victronenergy.com/live/venus-os:large#disk_space_issues_data_partition_full
|
|
@@ -55,11 +55,14 @@ cd /data/conf/signalk
|
|
|
55
55
|
|
|
56
56
|
npm i @noforeignland/signalk-to-noforeignland@beta
|
|
57
57
|
|
|
58
|
+
# reset owner properly, else package belongs to root
|
|
59
|
+
chown -R signalk:signalk /data/conf/signalk/*
|
|
60
|
+
|
|
58
61
|
```
|
|
59
62
|
|
|
60
63
|
2. Restart Server & Check logs
|
|
61
64
|
```
|
|
62
|
-
|
|
65
|
+
svc -t /service/signalk-server
|
|
63
66
|
```
|
|
64
67
|
|
|
65
68
|
|
|
@@ -70,10 +73,14 @@ cd /data/conf/signalk
|
|
|
70
73
|
|
|
71
74
|
# Here use the beta version you want to install
|
|
72
75
|
npm i @noforeignland/signalk-to-noforeignland@1.0.1-beta.5
|
|
76
|
+
|
|
77
|
+
# reset owner properly, else package belongs to root
|
|
78
|
+
chown -R signalk:signalk /data/conf/signalk/*
|
|
79
|
+
|
|
73
80
|
```
|
|
74
81
|
2. Restart Server & Check logs
|
|
75
82
|
```
|
|
76
|
-
|
|
83
|
+
svc -t /service/signalk-server
|
|
77
84
|
```
|
|
78
85
|
|
|
79
86
|
|
|
@@ -98,9 +105,12 @@ npm pack
|
|
|
98
105
|
cd /data/conf/signalk
|
|
99
106
|
npm install ~/dev/nfl-signalk-main/<your_npm_pack.tgz>
|
|
100
107
|
|
|
108
|
+
# reset owner properly, else package belongs to root
|
|
109
|
+
chown -R signalk:signalk /data/conf/signalk/*
|
|
110
|
+
|
|
101
111
|
```
|
|
102
112
|
|
|
103
113
|
3. Restart Server & Check logs
|
|
104
114
|
```
|
|
105
|
-
|
|
115
|
+
svc -t /service/signalk-server
|
|
106
116
|
```
|