@sailingrotevista/rotevista-dash 1.0.13 → 1.0.14

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 (2) hide show
  1. package/index.js +2 -3
  2. package/package.json +2 -3
package/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  module.exports = function (app) {
2
2
  const plugin = {};
3
- plugin.id = 'rotevista-dash';
3
+ plugin.id = 'rotevista-dash'; // Questo ID determina l'URL delle impostazioni
4
4
  plugin.name = 'Rotevista Dash Configuration';
5
5
  plugin.description = 'Configura i parametri della barca per la Dashboard';
6
6
 
@@ -12,7 +12,6 @@ module.exports = function (app) {
12
12
  app.debug('Rotevista Dash Plugin Stopped');
13
13
  };
14
14
 
15
- // Qui definiamo la maschera che vedrai su SignalK
16
15
  plugin.schema = {
17
16
  type: 'object',
18
17
  properties: {
@@ -44,4 +43,4 @@ module.exports = function (app) {
44
43
  };
45
44
 
46
45
  return plugin;
47
- };
46
+ };
package/package.json CHANGED
@@ -1,9 +1,8 @@
1
1
  {
2
2
  "name": "@sailingrotevista/rotevista-dash",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "Public Wind Dashboard with navigation and course aids",
5
- "main": "index.html",
6
- "plugin": "index.js",
5
+ "main": "index.js",
7
6
  "publishConfig": {
8
7
  "access": "public"
9
8
  },