signalk-backup 0.2.0 → 0.3.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.
Files changed (41) hide show
  1. package/package.json +5 -4
  2. package/plugin/config/schema.d.ts +7 -6
  3. package/plugin/config/schema.d.ts.map +1 -1
  4. package/plugin/config/schema.js +12 -39
  5. package/plugin/config/schema.js.map +1 -1
  6. package/plugin/database-export/iso-week.d.ts +11 -0
  7. package/plugin/database-export/iso-week.d.ts.map +1 -0
  8. package/plugin/database-export/iso-week.js +48 -0
  9. package/plugin/database-export/iso-week.js.map +1 -0
  10. package/plugin/database-export/manifest.d.ts +19 -0
  11. package/plugin/database-export/manifest.d.ts.map +1 -0
  12. package/plugin/database-export/manifest.js +62 -0
  13. package/plugin/database-export/manifest.js.map +1 -0
  14. package/plugin/database-export/questdb.d.ts +25 -13
  15. package/plugin/database-export/questdb.d.ts.map +1 -1
  16. package/plugin/database-export/questdb.js +143 -38
  17. package/plugin/database-export/questdb.js.map +1 -1
  18. package/plugin/database-export/types.d.ts +13 -6
  19. package/plugin/database-export/types.d.ts.map +1 -1
  20. package/plugin/database-export/types.js +6 -3
  21. package/plugin/database-export/types.js.map +1 -1
  22. package/plugin/index.d.ts.map +1 -1
  23. package/plugin/index.js +143 -6
  24. package/plugin/index.js.map +1 -1
  25. package/plugin/proxy.d.ts.map +1 -1
  26. package/plugin/proxy.js +17 -2
  27. package/plugin/proxy.js.map +1 -1
  28. package/plugin/smb-discovery.d.ts +9 -0
  29. package/plugin/smb-discovery.d.ts.map +1 -0
  30. package/plugin/smb-discovery.js +42 -0
  31. package/plugin/smb-discovery.js.map +1 -0
  32. package/plugin/types.d.ts +43 -2
  33. package/plugin/types.d.ts.map +1 -1
  34. package/public/assets/{index-B7P78qlq.js → index-C97Ruecu.js} +2 -2
  35. package/public/assets/{index-B7P78qlq.js.map → index-C97Ruecu.js.map} +1 -1
  36. package/public/assets/main-DtkejeIo.js +11 -0
  37. package/public/assets/main-DtkejeIo.js.map +1 -0
  38. package/public/icon.svg +12 -7
  39. package/public/index.html +1 -1
  40. package/public/assets/main-DQRPJ7oa.js +0 -11
  41. package/public/assets/main-DQRPJ7oa.js.map +0 -1
package/public/icon.svg CHANGED
@@ -2,9 +2,10 @@
2
2
  <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" width="256" height="256">
3
3
  <!--
4
4
  signalk-backup icon
5
- A shield (backup, protection) over a SignalK-blue wave field with a
6
- checkmark at center (snapshot completed). Two-tone, scales cleanly to
7
- 16px favicon size — kept simple geometry, no fine detail.
5
+ Rounded square (SignalK admin tile aesthetic) with a SignalK-blue
6
+ gradient, a white shield (backup, protection), and a green
7
+ checkmark (snapshot completed). Fills the whole viewBox so no
8
+ underlying tile background shows through.
8
9
  -->
9
10
  <defs>
10
11
  <linearGradient id="seaGrad" x1="0" x2="0" y1="0" y2="1">
@@ -17,13 +18,17 @@
17
18
  </linearGradient>
18
19
  </defs>
19
20
 
20
- <!-- background disc -->
21
- <circle cx="128" cy="128" r="120" fill="url(#seaGrad)"/>
21
+ <!-- The SignalK admin tile renders this with `bg-primary` (Bootstrap
22
+ blue) underneath. Without a backdrop the rounded-rect corners
23
+ show that blue. Paint a white square first, then the rounded
24
+ blue tile on top, so the corner cutouts read as white. -->
25
+ <rect x="0" y="0" width="256" height="256" fill="#ffffff"/>
26
+ <rect x="0" y="0" width="256" height="256" rx="36" ry="36" fill="url(#seaGrad)"/>
22
27
 
23
28
  <!-- waves -->
24
- <path d="M 28 168 Q 64 152, 100 168 T 172 168 T 228 168 V 200 H 28 Z"
29
+ <path d="M 0 168 Q 40 152, 80 168 T 160 168 T 256 168 V 256 H 0 Z"
25
30
  fill="#ffffff" fill-opacity="0.18"/>
26
- <path d="M 28 188 Q 64 174, 100 188 T 172 188 T 228 188 V 220 H 28 Z"
31
+ <path d="M 0 192 Q 40 178, 80 192 T 160 192 T 256 192 V 256 H 0 Z"
27
32
  fill="#ffffff" fill-opacity="0.12"/>
28
33
 
29
34
  <!-- shield body -->
package/public/index.html CHANGED
@@ -19,7 +19,7 @@
19
19
  — it just renders unstyled until reactstrap/bootstrap defaults kick
20
20
  in via component classnames.
21
21
  -->
22
- <script type="module" crossorigin src="/signalk-backup/assets/index-B7P78qlq.js"></script>
22
+ <script type="module" crossorigin src="/signalk-backup/assets/index-C97Ruecu.js"></script>
23
23
  </head>
24
24
  <body>
25
25
  <div id="root"></div>