signalk-to-noforeignland 0.1.25 → 0.1.26

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.
Files changed (4) hide show
  1. package/CHANGELOG.md +55 -49
  2. package/README.md +26 -26
  3. package/index.js +638 -638
  4. package/package.json +28 -28
package/CHANGELOG.md CHANGED
@@ -1,49 +1,55 @@
1
- 0.1.25
2
- * CHANGE: Minimum boat move default increased from 50m to 80m
3
- * CHANGE: Updated the README.md
4
- * CHANGE: Use public ipv4 DNS instead of local with cache for testInternet()
5
- * Final version after successful testing SV MOIN and SV KIAPA NUI
6
-
7
- 0.1.25-beta.3
8
- * NEW: Check if boat key is set on startup, else report error to dashboard
9
- * CHANGE: Changing the order and label of the Plugin Settings to make it more clear for unexpierienced users and grouped to Mandatory, Advanced and Expert.
10
- * CHANGE: Migration of < 0.1.25 Plugin settings to new structure.
11
- * CHANGE: PluginStatus last track sent "Never" changed to "Not transfered since plugin start" to avoid confusions.
12
-
13
-
14
- 0.1.25-beta.2
15
- * CHANGE: Typo in pluginName fixed
16
- * CHANGE: Dates for SetPlugin now ISO8601 formated (https://github.com/noforeignland/nfl-signalk/issues/9)
17
-
18
- 0.1.25-beta.1
19
- * CHANGE: User mattzilla470 reported timout Issues on VE Cerbo with a small CPU and using 4G (https://github.com/noforeignland/nfl-signalk/issues/7). So added a timout option in the plugin config and a tripple retry while increasing the timeout for the API call.
20
-
21
- 0.1.24
22
- * CHANGE: testInternet() only uses ipv4 now, some users don't have ipv6 configured properly and where unable to reach the API, when testInternet returned false
23
- * NEW: PluginStatus on SK dashboard now shows last savePoint and last API transfer, so a user has more feedback what the app is doing without enabling the debug log and crawling though it.
24
- * CHANGE: Renamed CHANGELOG to CHANGELOG.md
25
- * CHANGE: CHANGELOG ORDER - newest on top.
26
- * Final version after successful testing SV MOIN and SV KIAPA NUI
27
-
28
- 0.1.23
29
- * Final version after successful testing SV MOIN and SV KIAPA NUI
30
-
31
- 0.1.23-beta.1
32
- * Renamed branch to follow the release versions.
33
- * CLEANUP - More debug info for the SK dashboard using this.app.setPluginError
34
- * CLEANUP - Removed CreateGPX, was only used for removed Email transmission of the track
35
-
36
- 0.1.22-beta.2
37
-
38
- * CLEANUP and move to Object Oriented Javascript
39
-
40
- 0.1.22-beta.1
41
-
42
- * CONFIG: Attempt sending location while moving - Default changed from false to true
43
- * CONFIG: Ping added for 24h ping if boat is not moved. - Default: true
44
- * Package.json - Nodemailer dependency removed
45
- * Marked for removal - Depricated "sendEmailData" function.
46
- * REMOVED - sendEmail.js
47
- * CLEANUP - Renamed emaiCron to apiCron
48
- * NEW: 24h api ping, when enabled, even if boat didn't move.
49
-
1
+ 0.1.26
2
+ * Same as 0.1.26-beta.1
3
+
4
+ 0.1.26-beta.1
5
+ * CHANGE: PluginStatus last track sent "Not transfered since plugin start" gets truncated by the dashboard. Changed to "None since start"
6
+
7
+ 0.1.25
8
+ * CHANGE: Minimum boat move default increased from 50m to 80m
9
+ * CHANGE: Updated the README.md
10
+ * CHANGE: Use public ipv4 DNS instead of local with cache for testInternet()
11
+ * Final version after successful testing SV MOIN and SV KIAPA NUI
12
+
13
+ 0.1.25-beta.3
14
+ * NEW: Check if boat key is set on startup, else report error to dashboard
15
+ * CHANGE: Changing the order and label of the Plugin Settings to make it more clear for unexpierienced users and grouped to Mandatory, Advanced and Expert.
16
+ * CHANGE: Migration of < 0.1.25 Plugin settings to new structure.
17
+ * CHANGE: PluginStatus last track sent "Never" changed to "Not transfered since plugin start" to avoid confusions.
18
+
19
+
20
+ 0.1.25-beta.2
21
+ * CHANGE: Typo in pluginName fixed
22
+ * CHANGE: Dates for SetPlugin now ISO8601 formated (https://github.com/noforeignland/nfl-signalk/issues/9)
23
+
24
+ 0.1.25-beta.1
25
+ * CHANGE: User mattzilla470 reported timout Issues on VE Cerbo with a small CPU and using 4G (https://github.com/noforeignland/nfl-signalk/issues/7). So added a timout option in the plugin config and a tripple retry while increasing the timeout for the API call.
26
+
27
+ 0.1.24
28
+ * CHANGE: testInternet() only uses ipv4 now, some users don't have ipv6 configured properly and where unable to reach the API, when testInternet returned false
29
+ * NEW: PluginStatus on SK dashboard now shows last savePoint and last API transfer, so a user has more feedback what the app is doing without enabling the debug log and crawling though it.
30
+ * CHANGE: Renamed CHANGELOG to CHANGELOG.md
31
+ * CHANGE: CHANGELOG ORDER - newest on top.
32
+ * Final version after successful testing SV MOIN and SV KIAPA NUI
33
+
34
+ 0.1.23
35
+ * Final version after successful testing SV MOIN and SV KIAPA NUI
36
+
37
+ 0.1.23-beta.1
38
+ * Renamed branch to follow the release versions.
39
+ * CLEANUP - More debug info for the SK dashboard using this.app.setPluginError
40
+ * CLEANUP - Removed CreateGPX, was only used for removed Email transmission of the track
41
+
42
+ 0.1.22-beta.2
43
+
44
+ * CLEANUP and move to Object Oriented Javascript
45
+
46
+ 0.1.22-beta.1
47
+
48
+ * CONFIG: Attempt sending location while moving - Default changed from false to true
49
+ * CONFIG: Ping added for 24h ping if boat is not moved. - Default: true
50
+ * Package.json - Nodemailer dependency removed
51
+ * Marked for removal - Depricated "sendEmailData" function.
52
+ * REMOVED - sendEmail.js
53
+ * CLEANUP - Renamed emaiCron to apiCron
54
+ * NEW: 24h api ping, when enabled, even if boat didn't move.
55
+
package/README.md CHANGED
@@ -1,26 +1,26 @@
1
- # SignalK To NFL
2
- Effortlessly log your boat's movement to **noforeignland.com**
3
-
4
- ## Features
5
- * Automatically log your position to NFL
6
- * Send detailed tracks to log your entire trip and not just your final position
7
- * Can be used in near real time or cache and upload when stopped and data-connection is available.
8
- * Can sent a 24h keepalive, when off the boat for a while.
9
-
10
- ## Issues
11
- * Report issues on GitHub (https://github.com/noforeignland/nfl-signalk/issues)
12
-
13
- ## Requirements
14
- * An internet connection is required in order to update NFL.
15
- * A navigation.position data path inside Signal K for self, which is your current GPS position
16
- * A **noforeignland.com** account
17
- * Your Boat API Key from the **noforeignland.com** website:
18
- * Account > Settings > Boat tracking > API Key
19
-
20
- > Note your Boat API Key is not available in the app.
21
- > You must sign in to the **noforeignland.com** website (using the same authentication method you use for the app: Google. Facebook, Email).
22
-
23
- ## Configuration
24
- 1. Add your boat's API Key into the Server > Plugin Config > Signal K to Noforeignland > Boat API Key
25
- 2. Hit "Submit"
26
- 3. Restart the Signal K server
1
+ # Signal K To NFL
2
+ Effortlessly log your boat's movement to **noforeignland.com**
3
+
4
+ ## Features
5
+ * Automatically log your position to NFL
6
+ * Send detailed tracks to log your entire trip and not just your final position
7
+ * Can be used in near real time or cache and upload when stopped and data-connection is available.
8
+ * Can sent a 24h keepalive, when off the boat for a while.
9
+
10
+ ## Issues
11
+ * Report issues on GitHub (https://github.com/noforeignland/nfl-signalk/issues)
12
+
13
+ ## Requirements
14
+ * An internet connection is required in order to update NFL.
15
+ * A navigation.position data path inside Signal K for self, which is your current GPS position
16
+ * A **noforeignland.com** account
17
+ * Your Boat API Key from the **noforeignland.com** website:
18
+ * Account > Settings > Boat tracking > API Key
19
+
20
+ > Note your Boat API Key is not available in the app.
21
+ > You must sign in to the **noforeignland.com** website (using the same authentication method you use for the app: Google. Facebook, Email).
22
+
23
+ ## Configuration
24
+ 1. Add your boat's API Key into the Server > Plugin Config > Signal K to Noforeignland > Boat API Key
25
+ 2. Hit "Submit"
26
+ 3. Restart the Signal K server