mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-23 14:08:40 +00:00
added RS Venture
This commit is contained in:
+1
@@ -123,6 +123,7 @@ public enum BoatClassMasterdata {
|
|||||||
RS_X ("RS:X", true, 2.86, 0.93, BoatHullType.SURFERBOARD, false, "RS-X", "RSX", "RS:X", "RS:X Men", "RS:X Woman", "RS:X Women"),
|
RS_X ("RS:X", true, 2.86, 0.93, BoatHullType.SURFERBOARD, false, "RS-X", "RSX", "RS:X", "RS:X Men", "RS:X Woman", "RS:X Women"),
|
||||||
RS_FEVA ("RS Feva", true, 3.64, 1.42, BoatHullType.MONOHULL, true, "RSFeva"),
|
RS_FEVA ("RS Feva", true, 3.64, 1.42, BoatHullType.MONOHULL, true, "RSFeva"),
|
||||||
RS_TERA ("RS Tera", true, 2.87, 1.23, BoatHullType.MONOHULL, true, "RSTera"),
|
RS_TERA ("RS Tera", true, 2.87, 1.23, BoatHullType.MONOHULL, true, "RSTera"),
|
||||||
|
RS_VENTURE ("RS Venture", true, 4.9, 2.0, BoatHullType.MONOHULL, true, "RSVenture"),
|
||||||
SCAN_KAP_99 ("Scan-kap 99", true, 9.86, 2.61, BoatHullType.MONOHULL,true, "Scan Kap 99"),
|
SCAN_KAP_99 ("Scan-kap 99", true, 9.86, 2.61, BoatHullType.MONOHULL,true, "Scan Kap 99"),
|
||||||
SK_22 ("SK 22", true, 12, 2, BoatHullType.MONOHULL, true, "22er Schärenkreuzer", "22", "SK22", "22 sq.m."),
|
SK_22 ("SK 22", true, 12, 2, BoatHullType.MONOHULL, true, "22er Schärenkreuzer", "22", "SK22", "22 sq.m."),
|
||||||
SKUD_18 ("SKUD 18", true, 5.8, 2.29, BoatHullType.MONOHULL, true),
|
SKUD_18 ("SKUD 18", true, 5.8, 2.29, BoatHullType.MONOHULL, true),
|
||||||
|
|||||||
+1
@@ -136,6 +136,7 @@ public class BoatClassImageResolver {
|
|||||||
boatClassIconsMap.put(BoatClassMasterdata.RS_X.getDisplayName(), imageResources.RSXIcon());
|
boatClassIconsMap.put(BoatClassMasterdata.RS_X.getDisplayName(), imageResources.RSXIcon());
|
||||||
boatClassIconsMap.put(BoatClassMasterdata.RS_FEVA.getDisplayName(), imageResources.RSFevaIcon());
|
boatClassIconsMap.put(BoatClassMasterdata.RS_FEVA.getDisplayName(), imageResources.RSFevaIcon());
|
||||||
boatClassIconsMap.put(BoatClassMasterdata.RS_TERA.getDisplayName(), imageResources.RSTeraIcon());
|
boatClassIconsMap.put(BoatClassMasterdata.RS_TERA.getDisplayName(), imageResources.RSTeraIcon());
|
||||||
|
boatClassIconsMap.put(BoatClassMasterdata.RS_VENTURE.getDisplayName(), imageResources.RSVentureIcon());
|
||||||
boatClassIconsMap.put(BoatClassMasterdata.SCAN_KAP_99.getDisplayName(), imageResources.ScanKap99Icon());
|
boatClassIconsMap.put(BoatClassMasterdata.SCAN_KAP_99.getDisplayName(), imageResources.ScanKap99Icon());
|
||||||
boatClassIconsMap.put(BoatClassMasterdata.SKUD_18.getDisplayName(), imageResources.Skud18Icon());
|
boatClassIconsMap.put(BoatClassMasterdata.SKUD_18.getDisplayName(), imageResources.Skud18Icon());
|
||||||
boatClassIconsMap.put(BoatClassMasterdata.SK_22.getDisplayName(), imageResources.SK22Icon());
|
boatClassIconsMap.put(BoatClassMasterdata.SK_22.getDisplayName(), imageResources.SK22Icon());
|
||||||
|
|||||||
+4
@@ -368,6 +368,10 @@ public interface BoatClassImageResources extends ClientBundle {
|
|||||||
@ImageOptions(preventInlining = true)
|
@ImageOptions(preventInlining = true)
|
||||||
ImageResource RSTeraIcon();
|
ImageResource RSTeraIcon();
|
||||||
|
|
||||||
|
@Source("com/sap/sailing/gwt/ui/client/images/boatclass/RS_VENTURE.png")
|
||||||
|
@ImageOptions(preventInlining = true)
|
||||||
|
ImageResource RSVentureIcon();
|
||||||
|
|
||||||
@Source("com/sap/sailing/gwt/ui/client/images/boatclass/SCAN_KAP_99.png")
|
@Source("com/sap/sailing/gwt/ui/client/images/boatclass/SCAN_KAP_99.png")
|
||||||
@ImageOptions(preventInlining = true)
|
@ImageOptions(preventInlining = true)
|
||||||
ImageResource ScanKap99Icon();
|
ImageResource ScanKap99Icon();
|
||||||
|
|||||||
+2
-1
@@ -47,7 +47,8 @@ public class BoatClassVectorGraphicsResolver {
|
|||||||
BoatClassMasterdata.FIRST_CLASS_7_5,
|
BoatClassMasterdata.FIRST_CLASS_7_5,
|
||||||
BoatClassMasterdata.J70, BoatClassMasterdata.J80, BoatClassMasterdata.J92, BoatClassMasterdata.J92S,
|
BoatClassMasterdata.J70, BoatClassMasterdata.J80, BoatClassMasterdata.J92, BoatClassMasterdata.J92S,
|
||||||
BoatClassMasterdata.B_ONE, BoatClassMasterdata.IRC, BoatClassMasterdata.LASER_SB3, BoatClassMasterdata.LONGTZE,
|
BoatClassMasterdata.B_ONE, BoatClassMasterdata.IRC, BoatClassMasterdata.LASER_SB3, BoatClassMasterdata.LONGTZE,
|
||||||
BoatClassMasterdata.RS_FEVA, BoatClassMasterdata.RS_TERA, BoatClassMasterdata.RS100, BoatClassMasterdata.RS21, BoatClassMasterdata.TP52,
|
BoatClassMasterdata.RS_FEVA, BoatClassMasterdata.RS_TERA, BoatClassMasterdata.RS_VENTURE,
|
||||||
|
BoatClassMasterdata.RS100, BoatClassMasterdata.RS21, BoatClassMasterdata.TP52,
|
||||||
BoatClassMasterdata.CLUB_SWAN_50, BoatClassMasterdata.BAVARIA_CRUISER_41S, BoatClassMasterdata.BAVARIA_CRUISER_45,
|
BoatClassMasterdata.CLUB_SWAN_50, BoatClassMasterdata.BAVARIA_CRUISER_41S, BoatClassMasterdata.BAVARIA_CRUISER_45,
|
||||||
BoatClassMasterdata.BAVARIA_CRUISER_46, BoatClassMasterdata.BENETEAU_FIRST_35, BoatClassMasterdata.BENETEAU_FIRST_45,
|
BoatClassMasterdata.BAVARIA_CRUISER_46, BoatClassMasterdata.BENETEAU_FIRST_35, BoatClassMasterdata.BENETEAU_FIRST_45,
|
||||||
BoatClassMasterdata.SPAEKHUGGER, BoatClassMasterdata.SCAN_KAP_99,
|
BoatClassMasterdata.SPAEKHUGGER, BoatClassMasterdata.SCAN_KAP_99,
|
||||||
|
|||||||
BIN
Binary file not shown.
|
After Width: | Height: | Size: 26 KiB |
@@ -39,6 +39,7 @@
|
|||||||
<a href="https://en.wikipedia.org/wiki/List_of_IOC_country_codes">https://en.wikipedia.org/wiki/List_of_IOC_country_codes</a>
|
<a href="https://en.wikipedia.org/wiki/List_of_IOC_country_codes">https://en.wikipedia.org/wiki/List_of_IOC_country_codes</a>
|
||||||
are now supported (MAC and FRO, respectively).</li>
|
are now supported (MAC and FRO, respectively).</li>
|
||||||
<li>Added "303" as alias name for the "Hansa 303" class</li>
|
<li>Added "303" as alias name for the "Hansa 303" class</li>
|
||||||
|
<li>Added "RS Venture" boat class with icon</li>
|
||||||
</ul>
|
</ul>
|
||||||
<h2 class="articleSubheadline">July 2023</h2>
|
<h2 class="articleSubheadline">July 2023</h2>
|
||||||
<ul class="bulletList">
|
<ul class="bulletList">
|
||||||
|
|||||||
Reference in New Issue
Block a user