diff --git a/src/assets/icon-lock.svg b/src/assets/icon-lock.svg
new file mode 100644
index 0000000..1c79bea
--- /dev/null
+++ b/src/assets/icon-lock.svg
@@ -0,0 +1,6 @@
+
diff --git a/src/components/ui/Card.vue b/src/components/ui/Card.vue
index 2b8a7f1..43efdd6 100644
--- a/src/components/ui/Card.vue
+++ b/src/components/ui/Card.vue
@@ -43,6 +43,18 @@
alt="default-pack"
title="Sceneria domyślnie dostępna w grze"
/>
+
+
+
+ {{parseInt(stationInfo.reqLevel) < 2 ? "L" : stationInfo.reqLevel}}
| {{station.stationName}} | + >{{station.stationName}} {{ station.reqLevel ? "| " + (parseInt(station.reqLevel) >= 2 ? station.reqLevel : "L") : "" }}{{station.dispatcherName}} |
@@ -66,6 +66,13 @@
alt="SBL"
title="Sceneria posiada SBL na przynajmniej jednym ze szlaków"
/>
+
+ |
@@ -155,6 +162,9 @@ export default Vue.extend({ case "NIEDOSTĘPNY": className = "unavailable"; break; + case "Z/W": + className = "brb"; + break; default: break; } @@ -206,6 +216,12 @@ ul { background-color: $accent2Col; font-size: 0.9em; } + + &.brb { + background-color: $accentCol; + color: black; + font-size: 0.95em; + } } .list { diff --git a/src/data/stations.json b/src/data/stations.json index 024edee..7e591f5 100644 --- a/src/data/stations.json +++ b/src/data/stations.json @@ -44,7 +44,8 @@ "noCatenary": 0 } }, - "default": false + "default": false, + "nonPublic": true }, { "stationName": "LCS Gdańsk", @@ -1614,6 +1615,7 @@ "noCatenary": 0 } }, - "default": false + "default": false, + "non-public": true } ] \ No newline at end of file diff --git a/src/store/stations.ts b/src/store/stations.ts index a48bd38..b9f2a3e 100644 --- a/src/store/stations.ts +++ b/src/store/stations.ts @@ -56,6 +56,9 @@ export default new Vuex.Store({ { hour12: false, hour: '2-digit', minute: '2-digit' }); } + if (occupiedCode === 1) + occupiedTo = "Z/W"; + if (occupiedCode === 2 && occupiedTimestamp === 0) occupiedTo = "KOŃCZY"; } |