@mxtommy/kip 1.2.1 → 1.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 (315) hide show
  1. package/.angulardoc.json +3 -3
  2. package/CHANGELOG.md +145 -124
  3. package/CONTRIBUTORS.md +16 -13
  4. package/README.md +102 -101
  5. package/angular.json +162 -152
  6. package/karma.conf.js +31 -31
  7. package/package.json +87 -80
  8. package/public/3rdpartylicenses.txt +317 -62
  9. package/public/assets/NoSleep.min.js +1 -1
  10. package/public/assets/fontawesome6/css/all.min.css +6 -0
  11. package/public/assets/fontawesome6/webfonts/fa-brands-400.ttf +0 -0
  12. package/public/assets/fontawesome6/webfonts/fa-brands-400.woff2 +0 -0
  13. package/public/assets/fontawesome6/webfonts/fa-regular-400.ttf +0 -0
  14. package/public/assets/fontawesome6/webfonts/fa-regular-400.woff2 +0 -0
  15. package/public/assets/fontawesome6/webfonts/fa-solid-900.ttf +0 -0
  16. package/public/assets/fontawesome6/webfonts/fa-solid-900.woff2 +0 -0
  17. package/public/assets/fontawesome6/webfonts/fa-v4compatibility.ttf +0 -0
  18. package/public/assets/fontawesome6/webfonts/fa-v4compatibility.woff2 +0 -0
  19. package/public/assets/icon-192x192.png +0 -0
  20. package/public/assets/icon-256x256.png +0 -0
  21. package/public/assets/icon-384x384.png +0 -0
  22. package/public/assets/icon-512x512.png +0 -0
  23. package/public/assets/steelseries-min.js +25 -25
  24. package/public/assets/steelseries-min.js.map +8 -8
  25. package/public/assets/steelseries.js +15834 -15834
  26. package/public/assets/svg-autopilot-inkscape-plain.svg +983 -983
  27. package/public/assets/svg-wind-inkscape.svg +1358 -1358
  28. package/public/assets/tween.js +381 -381
  29. package/public/index.html +19 -20
  30. package/public/main-es2018.98175eb4c61ccaf7eb17.js +1 -0
  31. package/public/main-es5.98175eb4c61ccaf7eb17.js +1 -0
  32. package/public/manifest.json +33 -0
  33. package/public/polyfills-es2018.3a61665863c173cd6ba3.js +1 -0
  34. package/public/polyfills-es5.44827ae4ff4e41de51fb.js +1 -0
  35. package/public/runtime-es2018.baedb88c6d2abacae2b8.js +1 -0
  36. package/public/runtime-es5.baedb88c6d2abacae2b8.js +1 -0
  37. package/public/styles.b92ae2c466c89712209d.css +5 -0
  38. package/src/app/alarm-menu/alarm-menu.component.html +55 -55
  39. package/src/app/alarm-menu/alarm-menu.component.scss +52 -53
  40. package/src/app/alarm-menu/alarm-menu.component.spec.ts +25 -25
  41. package/src/app/alarm-menu/alarm-menu.component.ts +186 -186
  42. package/src/app/app-help/app-help.component.css +4 -4
  43. package/src/app/app-help/app-help.component.html +135 -121
  44. package/src/app/app-help/app-help.component.ts +45 -45
  45. package/src/app/app.component.css +39 -39
  46. package/src/app/app.component.html +93 -93
  47. package/src/app/app.component.scss +79 -79
  48. package/src/app/app.component.spec.ts +32 -32
  49. package/src/app/app.component.ts +191 -192
  50. package/src/app/app.module.ts +200 -200
  51. package/src/app/config.blank.const.ts +51 -51
  52. package/src/app/config.blank.notification.const.ts +19 -19
  53. package/src/app/config.blank.units.const.ts +23 -23
  54. package/src/app/config.demo.const.ts +383 -382
  55. package/src/app/data-browser/data-browser.component.css +29 -29
  56. package/src/app/data-browser/data-browser.component.html +44 -44
  57. package/src/app/data-browser/data-browser.component.spec.ts +25 -25
  58. package/src/app/data-browser/data-browser.component.ts +91 -91
  59. package/src/app/data-browser-row/data-browser-row-unit-modal.html +17 -17
  60. package/src/app/data-browser-row/data-browser-row.component.css +9 -9
  61. package/src/app/data-browser-row/data-browser-row.component.html +4 -4
  62. package/src/app/data-browser-row/data-browser-row.component.ts +78 -78
  63. package/src/app/data-set.service.ts +273 -273
  64. package/src/app/dynamic-widget.directive.ts +11 -11
  65. package/src/app/gauge-steel/gauge-steel.component.css +4 -4
  66. package/src/app/gauge-steel/gauge-steel.component.html +4 -4
  67. package/src/app/gauge-steel/gauge-steel.component.spec.ts +25 -25
  68. package/src/app/gauge-steel/gauge-steel.component.ts +282 -282
  69. package/src/app/gauges-module/base-gauge.ts +301 -0
  70. package/src/app/gauges-module/gauges.module.ts +17 -0
  71. package/src/app/gauges-module/linear-gauge.ts +50 -0
  72. package/src/app/gauges-module/radial-gauge.ts +48 -0
  73. package/src/app/layout-split/layout-split.component.html +30 -30
  74. package/src/app/layout-split/layout-split.component.scss +33 -33
  75. package/src/app/layout-split/layout-split.component.spec.ts +25 -25
  76. package/src/app/layout-split/layout-split.component.ts +59 -59
  77. package/src/app/layout-splits.service.ts +284 -284
  78. package/src/app/modal-path-selector/modal-path-selector.component.html +62 -62
  79. package/src/app/modal-path-selector/modal-path-selector.component.scss +39 -39
  80. package/src/app/modal-path-selector/modal-path-selector.component.spec.ts +25 -25
  81. package/src/app/modal-path-selector/modal-path-selector.component.ts +132 -132
  82. package/src/app/modal-widget/modal-widget.component.css +32 -32
  83. package/src/app/modal-widget/modal-widget.component.html +341 -334
  84. package/src/app/modal-widget/modal-widget.component.spec.ts +25 -25
  85. package/src/app/modal-widget/modal-widget.component.ts +84 -84
  86. package/src/app/notifications.service.ts +392 -387
  87. package/src/app/object-keys.pipe.spec.ts +8 -8
  88. package/src/app/object-keys.pipe.ts +13 -13
  89. package/src/app/reset-config/reset-config.component.html +3 -3
  90. package/src/app/reset-config/reset-config.component.spec.ts +25 -25
  91. package/src/app/reset-config/reset-config.component.ts +31 -31
  92. package/src/app/root-display/root-display.component.html +4 -4
  93. package/src/app/root-display/root-display.component.spec.ts +25 -25
  94. package/src/app/root-display/root-display.component.ts +57 -57
  95. package/src/app/safe.pipe.ts +15 -15
  96. package/src/app/settings/settings.component.css +9 -9
  97. package/src/app/settings/settings.component.html +25 -25
  98. package/src/app/settings/settings.component.spec.ts +25 -25
  99. package/src/app/settings/settings.component.ts +22 -22
  100. package/src/app/settings-config/settings-config.component.css +38 -38
  101. package/src/app/settings-config/settings-config.component.spec.ts +25 -25
  102. package/src/app/settings-config/settings-config.component.ts +161 -161
  103. package/src/app/settings-datasets/settings-datasets.component.html +43 -43
  104. package/src/app/settings-datasets/settings-datasets.component.scss +39 -39
  105. package/src/app/settings-datasets/settings-datasets.component.spec.ts +25 -25
  106. package/src/app/settings-datasets/settings-datasets.component.ts +98 -98
  107. package/src/app/settings-datasets/settings-datasets.modal.html +54 -54
  108. package/src/app/settings-notifications/settings-notifications.component.html +65 -65
  109. package/src/app/settings-notifications/settings-notifications.component.spec.ts +25 -25
  110. package/src/app/settings-notifications/settings-notifications.component.ts +29 -29
  111. package/src/app/settings-signalk/settings-signalk.component.html +8 -8
  112. package/src/app/settings-signalk/settings-signalk.component.spec.ts +25 -25
  113. package/src/app/settings-signalk/settings-signalk.component.ts +6 -17
  114. package/src/app/settings-units/settings-units.component.css +4 -4
  115. package/src/app/settings-units/settings-units.component.html +19 -19
  116. package/src/app/settings-units/settings-units.component.spec.ts +25 -25
  117. package/src/app/settings-units/settings-units.component.ts +62 -62
  118. package/src/app/settings-zones/settings-zones.component.css +21 -21
  119. package/src/app/settings-zones/settings-zones.component.html +70 -70
  120. package/src/app/settings-zones/settings-zones.modal.html +38 -38
  121. package/src/app/signalk-connection.service.ts +344 -344
  122. package/src/app/signalk-delta.service.spec.ts +15 -15
  123. package/src/app/signalk-delta.service.ts +97 -97
  124. package/src/app/signalk-full.service.ts +99 -99
  125. package/src/app/signalk-interfaces.ts +129 -129
  126. package/src/app/signalk-requests.service.spec.ts +12 -12
  127. package/src/app/signalk-requests.service.ts +180 -180
  128. package/src/app/svg-autopilot/svg-autopilot.component.html +1036 -1036
  129. package/src/app/svg-autopilot/svg-autopilot.component.spec.ts +25 -25
  130. package/src/app/svg-autopilot/svg-autopilot.component.ts +174 -174
  131. package/src/app/svg-simple-linear-gauge/svg-simple-linear-gauge.component.html +119 -119
  132. package/src/app/svg-simple-linear-gauge/svg-simple-linear-gauge.component.spec.ts +25 -25
  133. package/src/app/svg-simple-linear-gauge/svg-simple-linear-gauge.component.ts +49 -49
  134. package/src/app/svg-wind/svg-wind.component.html +969 -969
  135. package/src/app/svg-wind/svg-wind.component.scss +76 -76
  136. package/src/app/svg-wind/svg-wind.component.spec.ts +25 -25
  137. package/src/app/svg-wind/svg-wind.component.ts +280 -280
  138. package/src/app/unit-window/unit-window.component.css +37 -37
  139. package/src/app/unit-window/unit-window.component.html +8 -8
  140. package/src/app/unit-window/unit-window.component.spec.ts +25 -25
  141. package/src/app/unit-window/unit-window.component.ts +134 -134
  142. package/src/app/unit-window/unit-window.modal.html +24 -24
  143. package/src/app/units.service.ts +300 -300
  144. package/src/app/widget-autopilot/widget-autopilot.component.html +78 -85
  145. package/src/app/widget-autopilot/widget-autopilot.component.scss +191 -191
  146. package/src/app/widget-autopilot/widget-autopilot.component.spec.ts +25 -25
  147. package/src/app/widget-autopilot/widget-autopilot.component.ts +774 -781
  148. package/src/app/widget-blank/widget-blank.component.scss +21 -22
  149. package/src/app/widget-blank/widget-blank.component.spec.ts +25 -25
  150. package/src/app/widget-blank/widget-blank.component.ts +17 -17
  151. package/src/app/widget-gauge/widget-gauge.component.css +25 -25
  152. package/src/app/widget-gauge/widget-gauge.component.html +29 -29
  153. package/src/app/widget-gauge/widget-gauge.component.spec.ts +25 -25
  154. package/src/app/widget-gauge/widget-gauge.component.ts +120 -120
  155. package/src/app/widget-gauge-ng-linear/widget-gauge-ng-linear.component.html +126 -126
  156. package/src/app/widget-gauge-ng-linear/widget-gauge-ng-linear.component.scss +94 -93
  157. package/src/app/widget-gauge-ng-linear/widget-gauge-ng-linear.component.spec.ts +25 -25
  158. package/src/app/widget-gauge-ng-linear/widget-gauge-ng-linear.component.ts +424 -424
  159. package/src/app/widget-gauge-ng-radial/widget-gauge-ng-radial.component.html +122 -122
  160. package/src/app/widget-gauge-ng-radial/widget-gauge-ng-radial.component.scss +69 -69
  161. package/src/app/widget-gauge-ng-radial/widget-gauge-ng-radial.component.spec.ts +25 -25
  162. package/src/app/widget-gauge-ng-radial/widget-gauge-ng-radial.component.ts +553 -553
  163. package/src/app/widget-historical/widget-historical.component.html +14 -14
  164. package/src/app/widget-historical/widget-historical.component.spec.ts +25 -25
  165. package/src/app/widget-historical/widget-historical.component.ts +306 -307
  166. package/src/app/widget-iframe/widget-iframe.component.css +11 -11
  167. package/src/app/widget-iframe/widget-iframe.component.html +21 -21
  168. package/src/app/widget-iframe/widget-iframe.component.spec.ts +25 -25
  169. package/src/app/widget-iframe/widget-iframe.component.ts +63 -63
  170. package/src/app/widget-list.service.ts +135 -135
  171. package/src/app/widget-manager.service.ts +141 -140
  172. package/src/app/widget-numeric/widget-numeric.component.html +1 -1
  173. package/src/app/widget-numeric/widget-numeric.component.scss +3 -3
  174. package/src/app/widget-numeric/widget-numeric.component.spec.ts +25 -25
  175. package/src/app/widget-simple-linear/widget-simple-linear.component.html +28 -28
  176. package/src/app/widget-simple-linear/widget-simple-linear.component.scss +64 -64
  177. package/src/app/widget-simple-linear/widget-simple-linear.component.spec.ts +25 -25
  178. package/src/app/widget-simple-linear/widget-simple-linear.component.ts +199 -199
  179. package/src/app/widget-state/widget-state.component.html +27 -27
  180. package/src/app/widget-state/widget-state.component.scss +68 -68
  181. package/src/app/widget-state/widget-state.component.spec.ts +25 -25
  182. package/src/app/widget-state/widget-state.component.ts +178 -178
  183. package/src/app/widget-switch/widget-switch.component.css +69 -69
  184. package/src/app/widget-switch/widget-switch.component.html +17 -17
  185. package/src/app/widget-switch/widget-switch.component.spec.ts +25 -25
  186. package/src/app/widget-switch/widget-switch.component.ts +134 -134
  187. package/src/app/widget-text-generic/widget-text-generic.component.html +9 -9
  188. package/src/app/widget-text-generic/widget-text-generic.component.spec.ts +25 -25
  189. package/src/app/widget-tutorial/widget-tutorial.component.html +34 -34
  190. package/src/app/widget-tutorial/widget-tutorial.component.spec.ts +25 -25
  191. package/src/app/widget-tutorial/widget-tutorial.component.ts +18 -18
  192. package/src/app/widget-unknown/widget-unknown.component.spec.ts +25 -25
  193. package/src/app/widget-wind/widget-wind.component.css +23 -23
  194. package/src/app/widget-wind/widget-wind.component.html +20 -20
  195. package/src/app/widget-wind/widget-wind.component.spec.ts +25 -25
  196. package/src/app/widget-wind/widget-wind.component.ts +369 -369
  197. package/src/assets/NoSleep.min.js +1 -1
  198. package/src/assets/fontawesome6/css/all.min.css +6 -0
  199. package/src/assets/fontawesome6/webfonts/fa-brands-400.ttf +0 -0
  200. package/src/assets/fontawesome6/webfonts/fa-brands-400.woff2 +0 -0
  201. package/src/assets/fontawesome6/webfonts/fa-regular-400.ttf +0 -0
  202. package/src/assets/fontawesome6/webfonts/fa-regular-400.woff2 +0 -0
  203. package/src/assets/fontawesome6/webfonts/fa-solid-900.ttf +0 -0
  204. package/src/assets/fontawesome6/webfonts/fa-solid-900.woff2 +0 -0
  205. package/src/assets/fontawesome6/webfonts/fa-v4compatibility.ttf +0 -0
  206. package/src/assets/fontawesome6/webfonts/fa-v4compatibility.woff2 +0 -0
  207. package/src/assets/icon-192x192.png +0 -0
  208. package/src/assets/icon-256x256.png +0 -0
  209. package/src/assets/icon-384x384.png +0 -0
  210. package/src/assets/icon-512x512.png +0 -0
  211. package/src/assets/steelseries-min.js +25 -25
  212. package/src/assets/steelseries-min.js.map +8 -8
  213. package/src/assets/steelseries.js +15834 -15834
  214. package/src/assets/svg-autopilot-inkscape-plain.svg +983 -983
  215. package/src/assets/svg-wind-inkscape.svg +1358 -1358
  216. package/src/assets/tween.js +381 -381
  217. package/src/index.html +20 -20
  218. package/src/main.ts +11 -11
  219. package/src/manifest.json +33 -0
  220. package/src/polyfills.ts +80 -76
  221. package/src/styles.scss +11 -11
  222. package/src/themes/darkBlueTheme.scss +117 -116
  223. package/src/themes/defaultTheme.scss +50 -49
  224. package/src/themes/highContrastTheme.scss +47 -46
  225. package/src/themes/modernTheme.scss +143 -142
  226. package/src/themes/nightMode.scss +185 -184
  227. package/src/themes/platypusTheme.scss +80 -79
  228. package/src/themes/signalkTheme.scss +112 -111
  229. package/src/tsconfig.app.json +15 -15
  230. package/src/tsconfig.spec.json +20 -20
  231. package/tsconfig.json +23 -23
  232. package/tslint.json +143 -143
  233. package/public/assets/font-awesome/HELP-US-OUT.txt +0 -7
  234. package/public/assets/font-awesome/css/font-awesome.css +0 -2337
  235. package/public/assets/font-awesome/css/font-awesome.min.css +0 -4
  236. package/public/assets/font-awesome/desktop.ini +0 -4
  237. package/public/assets/font-awesome/fonts/FontAwesome.otf +0 -0
  238. package/public/assets/font-awesome/fonts/fontawesome-webfont.eot +0 -0
  239. package/public/assets/font-awesome/fonts/fontawesome-webfont.svg +0 -2671
  240. package/public/assets/font-awesome/fonts/fontawesome-webfont.ttf +0 -0
  241. package/public/assets/font-awesome/fonts/fontawesome-webfont.woff +0 -0
  242. package/public/assets/font-awesome/fonts/fontawesome-webfont.woff2 +0 -0
  243. package/public/assets/font-awesome/less/animated.less +0 -34
  244. package/public/assets/font-awesome/less/bordered-pulled.less +0 -25
  245. package/public/assets/font-awesome/less/core.less +0 -12
  246. package/public/assets/font-awesome/less/fixed-width.less +0 -6
  247. package/public/assets/font-awesome/less/font-awesome.less +0 -18
  248. package/public/assets/font-awesome/less/icons.less +0 -789
  249. package/public/assets/font-awesome/less/larger.less +0 -13
  250. package/public/assets/font-awesome/less/list.less +0 -19
  251. package/public/assets/font-awesome/less/mixins.less +0 -60
  252. package/public/assets/font-awesome/less/path.less +0 -15
  253. package/public/assets/font-awesome/less/rotated-flipped.less +0 -20
  254. package/public/assets/font-awesome/less/screen-reader.less +0 -5
  255. package/public/assets/font-awesome/less/stacked.less +0 -20
  256. package/public/assets/font-awesome/less/variables.less +0 -800
  257. package/public/assets/font-awesome/scss/_animated.scss +0 -34
  258. package/public/assets/font-awesome/scss/_bordered-pulled.scss +0 -25
  259. package/public/assets/font-awesome/scss/_core.scss +0 -12
  260. package/public/assets/font-awesome/scss/_fixed-width.scss +0 -6
  261. package/public/assets/font-awesome/scss/_icons.scss +0 -789
  262. package/public/assets/font-awesome/scss/_larger.scss +0 -13
  263. package/public/assets/font-awesome/scss/_list.scss +0 -19
  264. package/public/assets/font-awesome/scss/_mixins.scss +0 -60
  265. package/public/assets/font-awesome/scss/_path.scss +0 -15
  266. package/public/assets/font-awesome/scss/_rotated-flipped.scss +0 -20
  267. package/public/assets/font-awesome/scss/_screen-reader.scss +0 -5
  268. package/public/assets/font-awesome/scss/_stacked.scss +0 -20
  269. package/public/assets/font-awesome/scss/_variables.scss +0 -800
  270. package/public/assets/font-awesome/scss/font-awesome.scss +0 -18
  271. package/public/main-es2018.625fb92c9cbb6a4131de.js +0 -1
  272. package/public/main-es5.625fb92c9cbb6a4131de.js +0 -1
  273. package/public/polyfills-es2018.713f95af1f028e444854.js +0 -1
  274. package/public/polyfills-es5.c78877945523541d2597.js +0 -1
  275. package/public/runtime-es2018.a4dadbc03350107420a4.js +0 -1
  276. package/public/runtime-es5.a4dadbc03350107420a4.js +0 -1
  277. package/public/styles.71bb0d04cad96b5efbe1.css +0 -19
  278. package/src/assets/font-awesome/HELP-US-OUT.txt +0 -7
  279. package/src/assets/font-awesome/css/font-awesome.css +0 -2337
  280. package/src/assets/font-awesome/css/font-awesome.min.css +0 -4
  281. package/src/assets/font-awesome/desktop.ini +0 -4
  282. package/src/assets/font-awesome/fonts/FontAwesome.otf +0 -0
  283. package/src/assets/font-awesome/fonts/fontawesome-webfont.eot +0 -0
  284. package/src/assets/font-awesome/fonts/fontawesome-webfont.svg +0 -2671
  285. package/src/assets/font-awesome/fonts/fontawesome-webfont.ttf +0 -0
  286. package/src/assets/font-awesome/fonts/fontawesome-webfont.woff +0 -0
  287. package/src/assets/font-awesome/fonts/fontawesome-webfont.woff2 +0 -0
  288. package/src/assets/font-awesome/less/animated.less +0 -34
  289. package/src/assets/font-awesome/less/bordered-pulled.less +0 -25
  290. package/src/assets/font-awesome/less/core.less +0 -12
  291. package/src/assets/font-awesome/less/fixed-width.less +0 -6
  292. package/src/assets/font-awesome/less/font-awesome.less +0 -18
  293. package/src/assets/font-awesome/less/icons.less +0 -789
  294. package/src/assets/font-awesome/less/larger.less +0 -13
  295. package/src/assets/font-awesome/less/list.less +0 -19
  296. package/src/assets/font-awesome/less/mixins.less +0 -60
  297. package/src/assets/font-awesome/less/path.less +0 -15
  298. package/src/assets/font-awesome/less/rotated-flipped.less +0 -20
  299. package/src/assets/font-awesome/less/screen-reader.less +0 -5
  300. package/src/assets/font-awesome/less/stacked.less +0 -20
  301. package/src/assets/font-awesome/less/variables.less +0 -800
  302. package/src/assets/font-awesome/scss/_animated.scss +0 -34
  303. package/src/assets/font-awesome/scss/_bordered-pulled.scss +0 -25
  304. package/src/assets/font-awesome/scss/_core.scss +0 -12
  305. package/src/assets/font-awesome/scss/_fixed-width.scss +0 -6
  306. package/src/assets/font-awesome/scss/_icons.scss +0 -789
  307. package/src/assets/font-awesome/scss/_larger.scss +0 -13
  308. package/src/assets/font-awesome/scss/_list.scss +0 -19
  309. package/src/assets/font-awesome/scss/_mixins.scss +0 -60
  310. package/src/assets/font-awesome/scss/_path.scss +0 -15
  311. package/src/assets/font-awesome/scss/_rotated-flipped.scss +0 -20
  312. package/src/assets/font-awesome/scss/_screen-reader.scss +0 -5
  313. package/src/assets/font-awesome/scss/_stacked.scss +0 -20
  314. package/src/assets/font-awesome/scss/_variables.scss +0 -800
  315. package/src/assets/font-awesome/scss/font-awesome.scss +0 -18
package/.angulardoc.json CHANGED
@@ -1,4 +1,4 @@
1
- {
2
- "repoId": "609324d9-e673-438b-bc4d-3b73014f8dbd",
3
- "lastSync": 0
1
+ {
2
+ "repoId": "609324d9-e673-438b-bc4d-3b73014f8dbd",
3
+ "lastSync": 0
4
4
  }
package/CHANGELOG.md CHANGED
@@ -1,124 +1,145 @@
1
- # V1.2.0
2
- ## Features
3
- * Zones!!!
4
- * Set zones in Settings, give range and state for that range.
5
- * Warnings and alarms generated when in range.
6
- * Radial / Linear Gauges show zones. Sets colors on gauge and red value on warn/alarm.
7
- * Numeric widget alarming on Zones. Red text on warning, flashing red background on alarm.
8
- * New Data Browser feature!
9
- * Start of a Help section (still needs some more content, feel free to suggest ideas!)
10
- * Enable/Disable different notification sounds in settings (normal/warning/alarm/etc)
11
- * Added choice between numeric and cardinal ticks on compass (0,90,180,270 vs N,E,S,W)
12
- * Allow paths that do not exist in path input.
13
- * Added percent unit
14
- * Optimize font size calculations by up to 50x on numeric widget
15
- * Added a new color option on linear gauges (No Progress). Makes it just the needle, usefull for example rudder position
16
-
17
- ## Bugfix/Other
18
- * Refactor alarms/notification service.
19
- * Fix blank config version
20
- * Update Dependencies to latest (Angular 11)
21
- * Fix full tree API parsing (might not work with very old server versions though...) (commit 30220f0)
22
- * Fix various small typos / small bugs
23
- * Position updates are in deg, but KIP expects rad. Convert deg to rad on incoming position data.
24
- * Fix metadata parsing
25
-
26
- # V1.1.2
27
- * Don't save unlock status in config (not needed)
28
- * Add hPA/mbar units
29
- * Fix unit selection on historical widgets
30
-
31
- # V1.1.1
32
- * Fix base Href
33
-
34
- # V1.1.0
35
- * A lot of code cleanup!
36
- * UI refresh/cleanup
37
- * Updated dependencies to latest Angular/etc
38
- * Path selection dropdown in Widget settings modal replaced with auto-complete. Also has path description if available
39
- * Config has UUID to that instance (for identifying to server)
40
- * Settings page has updates per second graph
41
- * Start of support for metadata in widgets
42
- * additional notifications settings
43
- * fix Wind gauge wind sectors theming
44
- * Widget select modal refactor into groups
45
-
46
- ### V1.0.3
47
- * updated navbar styling
48
- * Theme work/cleanup
49
- * Work on ng gauges
50
-
51
- ### V1.0.2
52
- * Tooltip for long messages, and hide badge when 0 unacked alarms
53
-
54
- ### V1.0.1
55
- * Respect methods for alarms!
56
-
57
- # V1.0.0
58
- * add ngcanvasgauges and new modern theme (thanks godind!)
59
- * new Theme change event allowing widgets to subscribe to theme changes (thanks godind!)
60
- * Historical Graph color change on theme update
61
- * Update WidgetString to use canvas like numeric widget for dynamic font size
62
- * Latitude/Longitude Unit format
63
- * Load / Save config from server!
64
- * Notifications service for application status (snackbar)
65
- * Deleting the last widget in a page deletes the page!
66
- * Signalk Notifications in menubar!
67
-
68
- ### V0.1.12
69
- * iFrame to embed something in kip
70
- * Unit defaults!
71
-
72
- ### V0.1.11
73
- * Performance fixes for large numeric widgets
74
- * Bugfixes
75
-
76
- ### V0.1.10
77
- * Numeric Min/Max
78
-
79
-
80
- ### V0.1.9
81
- * Updated NPM dependencies
82
- * Show connection lost overlay on closed websocket connection
83
- * Only resize Steelseries Gauges max 1 a second (helps in resizing)
84
- * Add Frequency Units
85
- * Put Support! On/Off and Momentary support on boolean state
86
- * Request R/W token from SignalK Server
87
-
88
- ### V0.1.8
89
- * Fix bug related to source parsing in deltas
90
-
91
- ### V0.1.7
92
- Note, Any configs stored in browser will be lost as config format has changed.
93
- * Performance gain in Numeric widget in large fonts
94
- * Sailgauge updates (laylines, windsectors, general refactor)
95
- * Simplified source selection in the code
96
- * Removed Derived Data
97
- * Added Percentage unit, and stopped showing "no unit" on numeric
98
- * Updated Angular from v4 to v5 and also all dependencies to latest version
99
- * Complete re-write of widget settings modal for future ease of coding
100
- * Complete re-write of unit conversion service. Now if metadata specifies unit, it only offers you compatible units
101
- * Gauge Background and frame color options!
102
- * new Signal K Theme
103
-
104
- ### V0.1.6
105
- * Hash based routing
106
- * Start of Boolean state widget
107
- * default to /signalk in url
108
-
109
- ### V0.1.5
110
- * fix select dialogs (missing mat-form-field)
111
-
112
- ### V0.1.4
113
- * Fix typo in settings page
114
-
115
- ### V0.1.1
116
- * Tutorial Widget
117
- * fix new page bug (had to reload to access it)
118
-
119
- ### V0.1
120
- * Derived Data - true wind and dow
121
- * Sailgauge (True wind)
122
- * Demo default config
123
- * Load/Save Config
124
- * Get a few themes going, theme wind gauge
1
+ # V 1.3.0
2
+ * Platform update to Node 14, Angular and Angular Material 12
3
+ * Upgrade to Awesomefont6 with new icon style classes update
4
+ * Retired old node-sass in favor of new Sass module
5
+ * Dependecies updated to latest
6
+ * App manifest added, thanks VibroAxe
7
+ * Added new ng server dev configuration with map files enabling debugger breakpoints. Use: ng server --configuration=dev to enable VS Code debugger map file and inline break points.
8
+ * Fixed issue: Latest Master doesn't build #111 - NG-Canvas-Gauge package dependecy
9
+ * Fix Kip N2K Autopilot gauge buttons layout and modes feature. AP Gauge should work with Raymarine Seatalk, N2K APs and SmartPilots connected to Seatalk-STNG-Converter device. Latest n2k-signalk (2.5.2+) and signalk-autopitot (v1.2.5+) plugin are required.
10
+
11
+ # V 1.2.3
12
+ * Fix bug in ng-Gauges initialization
13
+ * Don't error out on missing notification method
14
+ * Add some more help videos
15
+
16
+ # V1.2.2
17
+ * Option to make historical graphs vertical, thanks ahm4711!
18
+
19
+ # V1.2.1
20
+ * Fix bad base href in V1.2.0
21
+
22
+ # V1.2.0
23
+ ## Features
24
+ * Zones!!!
25
+ * Set zones in Settings, give range and state for that range.
26
+ * Warnings and alarms generated when in range.
27
+ * Radial / Linear Gauges show zones. Sets colors on gauge and red value on warn/alarm.
28
+ * Numeric widget alarming on Zones. Red text on warning, flashing red background on alarm.
29
+ * New Data Browser feature!
30
+ * Start of a Help section (still needs some more content, feel free to suggest ideas!)
31
+ * Enable/Disable different notification sounds in settings (normal/warning/alarm/etc)
32
+ * Added choice between numeric and cardinal ticks on compass (0,90,180,270 vs N,E,S,W)
33
+ * Allow paths that do not exist in path input.
34
+ * Added percent unit
35
+ * Optimize font size calculations by up to 50x on numeric widget
36
+ * Added a new color option on linear gauges (No Progress). Makes it just the needle, usefull for example rudder position
37
+
38
+ ## Bugfix/Other
39
+ * Refactor alarms/notification service.
40
+ * Fix blank config version
41
+ * Update Dependencies to latest (Angular 11)
42
+ * Fix full tree API parsing (might not work with very old server versions though...) (commit 30220f0)
43
+ * Fix various small typos / small bugs
44
+ * Position updates are in deg, but KIP expects rad. Convert deg to rad on incoming position data.
45
+ * Fix metadata parsing
46
+
47
+ # V1.1.2
48
+ * Don't save unlock status in config (not needed)
49
+ * Add hPA/mbar units
50
+ * Fix unit selection on historical widgets
51
+
52
+ # V1.1.1
53
+ * Fix base Href
54
+
55
+ # V1.1.0
56
+ * A lot of code cleanup!
57
+ * UI refresh/cleanup
58
+ * Updated dependencies to latest Angular/etc
59
+ * Path selection dropdown in Widget settings modal replaced with auto-complete. Also has path description if available
60
+ * Config has UUID to that instance (for identifying to server)
61
+ * Settings page has updates per second graph
62
+ * Start of support for metadata in widgets
63
+ * additional notifications settings
64
+ * fix Wind gauge wind sectors theming
65
+ * Widget select modal refactor into groups
66
+
67
+ ### V1.0.3
68
+ * updated navbar styling
69
+ * Theme work/cleanup
70
+ * Work on ng gauges
71
+
72
+ ### V1.0.2
73
+ * Tooltip for long messages, and hide badge when 0 unacked alarms
74
+
75
+ ### V1.0.1
76
+ * Respect methods for alarms!
77
+
78
+ # V1.0.0
79
+ * add ngcanvasgauges and new modern theme (thanks godind!)
80
+ * new Theme change event allowing widgets to subscribe to theme changes (thanks godind!)
81
+ * Historical Graph color change on theme update
82
+ * Update WidgetString to use canvas like numeric widget for dynamic font size
83
+ * Latitude/Longitude Unit format
84
+ * Load / Save config from server!
85
+ * Notifications service for application status (snackbar)
86
+ * Deleting the last widget in a page deletes the page!
87
+ * Signalk Notifications in menubar!
88
+
89
+ ### V0.1.12
90
+ * iFrame to embed something in kip
91
+ * Unit defaults!
92
+
93
+ ### V0.1.11
94
+ * Performance fixes for large numeric widgets
95
+ * Bugfixes
96
+
97
+ ### V0.1.10
98
+ * Numeric Min/Max
99
+
100
+
101
+ ### V0.1.9
102
+ * Updated NPM dependencies
103
+ * Show connection lost overlay on closed websocket connection
104
+ * Only resize Steelseries Gauges max 1 a second (helps in resizing)
105
+ * Add Frequency Units
106
+ * Put Support! On/Off and Momentary support on boolean state
107
+ * Request R/W token from SignalK Server
108
+
109
+ ### V0.1.8
110
+ * Fix bug related to source parsing in deltas
111
+
112
+ ### V0.1.7
113
+ Note, Any configs stored in browser will be lost as config format has changed.
114
+ * Performance gain in Numeric widget in large fonts
115
+ * Sailgauge updates (laylines, windsectors, general refactor)
116
+ * Simplified source selection in the code
117
+ * Removed Derived Data
118
+ * Added Percentage unit, and stopped showing "no unit" on numeric
119
+ * Updated Angular from v4 to v5 and also all dependencies to latest version
120
+ * Complete re-write of widget settings modal for future ease of coding
121
+ * Complete re-write of unit conversion service. Now if metadata specifies unit, it only offers you compatible units
122
+ * Gauge Background and frame color options!
123
+ * new Signal K Theme
124
+
125
+ ### V0.1.6
126
+ * Hash based routing
127
+ * Start of Boolean state widget
128
+ * default to /signalk in url
129
+
130
+ ### V0.1.5
131
+ * fix select dialogs (missing mat-form-field)
132
+
133
+ ### V0.1.4
134
+ * Fix typo in settings page
135
+
136
+ ### V0.1.1
137
+ * Tutorial Widget
138
+ * fix new page bug (had to reload to access it)
139
+
140
+ ### V0.1
141
+ * Derived Data - true wind and dow
142
+ * Sailgauge (True wind)
143
+ * Demo default config
144
+ * Load/Save Config
145
+ * Get a few themes going, theme wind gauge
package/CONTRIBUTORS.md CHANGED
@@ -1,13 +1,16 @@
1
- KIP contributors (sorted alphabetically)
2
- ============================================
3
-
4
- * **[David Godin](https://github.com/godind)**
5
-
6
- * Integration of Canvas-Gauges
7
- * A lot of UI polishing and code cleanup
8
- * Additional Customization of gauges
9
- * Metadata/Zones work
10
-
11
- * **[Thomas St-Pierre](https://github.com/mxtommy)**
12
-
13
- * Original Author and maintainer
1
+ KIP contributors (sorted alphabetically)
2
+ ============================================
3
+
4
+ * **[ahm4711](https://github.com/ahm4711)**
5
+ * Vertical historical graphs
6
+
7
+ * **[David Godin](https://github.com/godind)**
8
+
9
+ * Integration of Canvas-Gauges
10
+ * A lot of UI polishing and code cleanup
11
+ * Additional Customization of gauges
12
+ * Metadata/Zones work
13
+
14
+ * **[Thomas St-Pierre](https://github.com/mxtommy)**
15
+
16
+ * Original Author and maintainer
package/README.md CHANGED
@@ -1,101 +1,102 @@
1
- # Kip
2
-
3
- This is a marine instrumentation package to display signalK data. Display can be split up in any arrangement to show any kind data available on the server.
4
-
5
- # Design Goal
6
-
7
- The idea is to replicate the functionality of your average MFD such as the B&G Triton, Raymarine i70, or Garmin GMI20.
8
- - Display should be fullscreen and not require any scrolling
9
- - Anything displayed should be as big as possible in the given space
10
- - Touchscreen user experience should be excellent
11
- - Layout and configuration should be both easy to operate and flexible
12
- - Compatibility with Chromium browser and other device form factor important (**HELP WANTED)
13
-
14
- # Features
15
- ## User Experience
16
- ### Built-in Theme Sample
17
- Request a theme and send us inspirational/reference material (web sites, picture, etc.). If we fall in love, we will do it. Even better, branch and contribute. We will assist and guide!
18
-
19
- Modern Dark Theme
20
- ![Modern Dark Theme](./KipSample-1-1024x488.png)
21
-
22
- SignalK Inspired Theme
23
- ![SignalK Inspired Theme](./KipSample-2-1024x488.png)
24
-
25
- Light Blue Theme
26
- ![Light Blue Theme](./KipSample-3-1024x488.png)
27
-
28
- ### Accessible Night Mode
29
- Keep your night vision with a quick Night Mode access button, regardless of the selected theme. The below image looks very dark, but at night...it's perfect!
30
-
31
- ![Light Blue Theme](./KipNightMode-1024x488.png)
32
-
33
-
34
- ## Gauge Layout and Configuration
35
- ### Flexible and Easy
36
- Built purposeful screen(s) with however many gauges you want, where you want them.
37
-
38
- Split or delete gauge zones, resize and position, then simply add the gauge of your choosing. Add as many pages as you whish to keep screens purposeful.
39
- ![Layouts Configuration Image](./KipWidgetConfig-layout-1024x488.png)
40
-
41
- Easy basic gauge config.
42
- ![Gauges Configuration Image](./KipConfig-display-1024x488.png)
43
-
44
- See what SignalK has to offer that you can leverage in a gauge. Select it and tweak the display options for your purpose.
45
- ![Paths Configuration Image](./KipWidgetConfig-paths-1024x488.png)
46
-
47
- Many units are supported. Choose your prefered App defaults, than tweak it gauge by gauge as necessary. Kip will convert the displayed units for you.
48
- ![Units Configuration Image](./KipConfig-Units-1024x488.png)
49
-
50
- ### Reusable Gauge Library
51
- Get the latest version of Kip to see what's new!
52
-
53
- Sample gauge types
54
- ![Sample Gauges Image](./KipGaugeSample-1-1024x545.png)
55
-
56
- Electrical and Tank monitoring sample
57
- ![Electrical Concept Image](./KipMonitor-1024x488.png)
58
-
59
- # Developing
60
-
61
- Kip is built on Angular using various open-source assets. All free!
62
-
63
- **Tools**
64
-
65
- Linux, Macs, Pi or Windows dev platform supported
66
- 1. Install the latest Node version
67
- 2. Download you favorite coding IDE (we use the free Visual Code)
68
- 3. Create your own GitHub Kip fork and configure your IDE source control to point to this Fork (With Visual Code, GitHub support is built-in)
69
-
70
- **Setup**
71
- 1. Create a GitHub Branch of your own Kip Fork
72
- 2. Checkout this new Branch to get the source code locally.
73
- 3. In a command shell (or in the Visual Code Terminal window), go to the root of you local project folder.
74
- 4. Install project dependencies using NPM package and dependency manager: run `npm install`. NPM will read local Kip project dependencies (see Steps 2), download and install everything automatically for you.
75
- 5. Build the app locally using Angular-CLI: from that same project root folder, run `ng build`. CLI tool will read local Kip project configuration (see Tools - steps 4) and build everything.
76
-
77
- **Work**
78
- 1. Fire up your local dev instance with CLI using `ng serve`.
79
- 2. Point your favorite browser to `http://localhost:4200/` and voila!
80
-
81
- *As you work on source code and save files, the app will automatically reload in the browser with your latest changes.*
82
-
83
- **Publish**
84
- 1. From your Fork's working Branch, make a GitHub pull request to have your code reviewed, merged and part of the next release.
85
-
86
- Or
87
-
88
- 2. Build your own version:
89
- 1. Use the `-prod` flag for a production build.
90
- 2. To generate a npm package, run `npm run-script build-npm`.
91
- 3. Deploy and have fun!
92
-
93
- **Collaborate**
94
- Join us on Slack -> SignalK-dev / Apps_and_client channel. We will hook up and assist as best we can.
95
-
96
- # Feature Ideas
97
- * More Customization options for Historical Charts
98
- * Attitude Indicator
99
- * Sailing Polars with ChartJS Radar type chart?
100
- * More Customization options for radial/linear Gauges
101
- * Pre-created widgets for commonly used displays
1
+ # Kip
2
+
3
+ This is a marine instrumentation package to display signalK data. Display can be split up in any arrangement to show any kind data available on the server.
4
+
5
+ # Design Goal
6
+
7
+ The idea is to replicate the functionality of your average MFD such as the B&G Triton, Raymarine i70, or Garmin GMI20.
8
+ - Display should be fullscreen and not require any scrolling
9
+ - Anything displayed should be as big as possible in the given space
10
+ - Touchscreen user experience should be excellent
11
+ - Layout and configuration should be both easy to operate and flexible
12
+ - Compatibility with Chromium browser and other device form factor important (**HELP WANTED)
13
+
14
+ # Features
15
+ ## User Experience
16
+ ### Built-in Theme Sample
17
+ Request a theme and send us inspirational/reference material (web sites, picture, etc.). If we fall in love, we will do it. Even better, branch and contribute. We will assist and guide!
18
+
19
+ Modern Dark Theme
20
+ ![Modern Dark Theme](./KipSample-1-1024x488.png)
21
+
22
+ SignalK Inspired Theme
23
+ ![SignalK Inspired Theme](./KipSample-2-1024x488.png)
24
+
25
+ Light Blue Theme
26
+ ![Light Blue Theme](./KipSample-3-1024x488.png)
27
+
28
+ ### Accessible Night Mode
29
+ Keep your night vision with a quick Night Mode access button, regardless of the selected theme. The below image looks very dark, but at night...it's perfect!
30
+
31
+ ![Light Blue Theme](./KipNightMode-1024x488.png)
32
+
33
+
34
+ ## Gauge Layout and Configuration
35
+ ### Flexible and Easy
36
+ Built purposeful screen(s) with however many gauges you want, where you want them.
37
+
38
+ Split or delete gauge zones, resize and position, then simply add the gauge of your choosing. Add as many pages as you whish to keep screens purposeful.
39
+ ![Layouts Configuration Image](./KipWidgetConfig-layout-1024x488.png)
40
+
41
+ Easy basic gauge config.
42
+ ![Gauges Configuration Image](./KipConfig-display-1024x488.png)
43
+
44
+ See what SignalK has to offer that you can leverage in a gauge. Select it and tweak the display options for your purpose.
45
+ ![Paths Configuration Image](./KipWidgetConfig-paths-1024x488.png)
46
+
47
+ Many units are supported. Choose your prefered App defaults, than tweak it gauge by gauge as necessary. Kip will convert the displayed units for you.
48
+ ![Units Configuration Image](./KipConfig-Units-1024x488.png)
49
+
50
+ ### Reusable Gauge Library
51
+ Get the latest version of Kip to see what's new!
52
+
53
+ Sample gauge types
54
+ ![Sample Gauges Image](./KipGaugeSample-1-1024x545.png)
55
+
56
+ Electrical and Tank monitoring sample
57
+ ![Electrical Concept Image](./KipMonitor-1024x488.png)
58
+
59
+ # Developing
60
+
61
+ Kip is built on Angular using various open-source assets. All free!
62
+
63
+ **Tools**
64
+
65
+ Linux, Macs, Pi or Windows dev platform supported
66
+ 1. Install the latest Node version
67
+ 2. Download you favorite coding IDE (we use the free Visual Code)
68
+ 3. Create your own GitHub Kip fork and configure your IDE source control to point to this Fork (With Visual Code, GitHub support is built-in)
69
+
70
+ **Setup**
71
+ 1. Create a GitHub Branch of your own Kip Fork
72
+ 2. Checkout this new Branch to get the source code locally.
73
+ 3. In a command shell (or in the Visual Code Terminal window), go to the root of you local project folder.
74
+ 4. Install project dependencies using NPM package and dependency manager: run `npm install`. NPM will read local Kip project dependencies (see Steps 2), download and install everything automatically for you.
75
+ 5. Build the app locally using Angular-CLI: from that same project root folder, run `ng build`. CLI tool will read local Kip project configuration (see Tools - steps 4) and build everything.
76
+
77
+ **Work**
78
+ 1. Fire up your local dev instance with CLI using `ng serve --configuration=dev`.
79
+ 2. Point your favorite browser to `http://localhost:4200/` and voila!
80
+
81
+ *As you work on source code and save files, the app will automatically reload in the browser with your latest changes.*
82
+
83
+ **Publish**
84
+ 1. From your Fork's working Branch, make a GitHub pull request to have your code reviewed, merged and part of the next release.
85
+
86
+ Or
87
+
88
+ 2. Build your own version:
89
+ 1. Use the `-prod` flag for a production build.
90
+ 2. To generate a npm package, run `npm run-script build-npm`.
91
+ 3. Warning: Git Bash seems to mess up Base Href, fix it in public/index.html if needed
92
+ 4. Deploy and have fun!
93
+
94
+ **Collaborate**
95
+ Join us on Slack -> SignalK-dev / Apps_and_client channel. We will hook up and assist as best we can.
96
+
97
+ # Feature Ideas
98
+ * More Customization options for Historical Charts
99
+ * Attitude Indicator
100
+ * Sailing Polars with ChartJS Radar type chart?
101
+ * More Customization options for radial/linear Gauges
102
+ * Pre-created widgets for commonly used displays