signalk-race-control 0.12.2 → 0.12.3
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/package.json +1 -1
- package/public/favicon.svg +7 -0
- package/public/index.html +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "signalk-race-control",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.3",
|
|
4
4
|
"description": "SignalK plugin and webapp for tracking elapsed and handicap-corrected (Time-on-Time) race time, with a per-boat editable TCF and boat names pulled from AIS when available.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "Joachim Bakke <github@heiamoss.com>",
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
2
|
+
<ellipse cx="12" cy="17.2" rx="6.2" ry="2.6" fill="#38bdf8" stroke="#0b1420" stroke-width="1"/>
|
|
3
|
+
<path d="M12 3L17.2 13.4H6.8Z" fill="#38bdf8" stroke="#0b1420" stroke-width="1" stroke-linejoin="round"/>
|
|
4
|
+
<circle cx="12" cy="17.2" r="1.1" fill="#0b1420"/>
|
|
5
|
+
<path d="M12 17.2V14.6" stroke="#0b1420" stroke-width="1.3" stroke-linecap="round"/>
|
|
6
|
+
<path d="M12 17.2L14.3 18.6" stroke="#0b1420" stroke-width="1.3" stroke-linecap="round"/>
|
|
7
|
+
</svg>
|
package/public/index.html
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
<meta charset="utf-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
6
6
|
<title>Race Control</title>
|
|
7
|
+
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
|
|
7
8
|
<link rel="stylesheet" href="vendor/leaflet/leaflet.css" />
|
|
8
9
|
<link rel="stylesheet" href="style.css" />
|
|
9
10
|
</head>
|