mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 21:38:13 +00:00
Bump z v1.4.6 do v1.4.7
This commit is contained in:
+44
-14
@@ -12,7 +12,10 @@ git <template>
|
|||||||
<span class="header_brand">
|
<span class="header_brand">
|
||||||
<span>
|
<span>
|
||||||
<span>Stacj</span>
|
<span>Stacj</span>
|
||||||
<img src="@/assets/trainlogo.png" alt="trainlogo" />
|
<img
|
||||||
|
src="@/assets/trainlogo.png"
|
||||||
|
alt="trainlogo"
|
||||||
|
/>
|
||||||
<span>wnik</span>
|
<span>wnik</span>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
@@ -23,7 +26,10 @@ git <template>
|
|||||||
:class="{ current: currentLang == 'pl' }"
|
:class="{ current: currentLang == 'pl' }"
|
||||||
v-if="currentLang == 'pl'"
|
v-if="currentLang == 'pl'"
|
||||||
>
|
>
|
||||||
<img :src="iconPL" alt="icon-pl" />
|
<img
|
||||||
|
:src="iconPL"
|
||||||
|
alt="icon-pl"
|
||||||
|
/>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span
|
<span
|
||||||
@@ -32,7 +38,10 @@ git <template>
|
|||||||
:class="{ current: currentLang == 'en' }"
|
:class="{ current: currentLang == 'en' }"
|
||||||
v-if="currentLang == 'en'"
|
v-if="currentLang == 'en'"
|
||||||
>
|
>
|
||||||
<img :src="iconEN" alt="icon-en" />
|
<img
|
||||||
|
:src="iconEN"
|
||||||
|
alt="icon-en"
|
||||||
|
/>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
@@ -40,27 +49,43 @@ git <template>
|
|||||||
<span class="header_info">
|
<span class="header_info">
|
||||||
<Clock />
|
<Clock />
|
||||||
<div class="info_counter">
|
<div class="info_counter">
|
||||||
<img src="@/assets/icon-dispatcher.svg" alt="icon dispatcher" />
|
<img
|
||||||
|
src="@/assets/icon-dispatcher.svg"
|
||||||
|
alt="icon dispatcher"
|
||||||
|
/>
|
||||||
<span>{{ data.activeStationCount }}</span>
|
<span>{{ data.activeStationCount }}</span>
|
||||||
<span>{{ data.activeTrainCount }}</span>
|
<span>{{ data.activeTrainCount }}</span>
|
||||||
<img src="@/assets/icon-train.svg" alt="icon train" />
|
<img
|
||||||
|
src="@/assets/icon-train.svg"
|
||||||
|
alt="icon train"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span class="header_links">
|
<span class="header_links">
|
||||||
<router-link class="route" active-class="route-active" to="/" exact
|
<router-link
|
||||||
>{{ $t("app.sceneries") }}
|
class="route"
|
||||||
|
active-class="route-active"
|
||||||
|
to="/"
|
||||||
|
exact
|
||||||
|
>{{ $t("app.sceneries") }}
|
||||||
</router-link>
|
</router-link>
|
||||||
/
|
/
|
||||||
<router-link class="route" active-class="route-active" to="/trains"
|
<router-link
|
||||||
>{{ $t("app.trains") }}
|
class="route"
|
||||||
|
active-class="route-active"
|
||||||
|
to="/trains"
|
||||||
|
>{{ $t("app.trains") }}
|
||||||
</router-link>
|
</router-link>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<main class="app_main">
|
<main class="app_main">
|
||||||
<transition name="view-anim" mode="out-in">
|
<transition
|
||||||
|
name="view-anim"
|
||||||
|
mode="out-in"
|
||||||
|
>
|
||||||
<keep-alive>
|
<keep-alive>
|
||||||
<router-view />
|
<router-view />
|
||||||
</keep-alive>
|
</keep-alive>
|
||||||
@@ -69,12 +94,17 @@ git <template>
|
|||||||
|
|
||||||
<footer class="app_footer">
|
<footer class="app_footer">
|
||||||
©
|
©
|
||||||
<a href="https://td2.info.pl/profile/?u=20777" target="_blank">
|
<a
|
||||||
|
href="https://td2.info.pl/profile/?u=20777"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
Spythere
|
Spythere
|
||||||
</a>
|
</a>
|
||||||
2021 | v{{ VERSION }} | [
|
2021 | v{{ VERSION }} | [
|
||||||
<a target="_blank" href="https://paypal.me/spythere"
|
<a
|
||||||
>{{ $t("app.support") }}!
|
target="_blank"
|
||||||
|
href="https://paypal.me/spythere"
|
||||||
|
>{{ $t("app.support") }}!
|
||||||
</a>
|
</a>
|
||||||
]
|
]
|
||||||
</footer>
|
</footer>
|
||||||
@@ -99,7 +129,7 @@ export default class App extends Vue {
|
|||||||
@Action("synchronizeData") synchronizeData;
|
@Action("synchronizeData") synchronizeData;
|
||||||
@Getter("getAllData") data!: StoreData;
|
@Getter("getAllData") data!: StoreData;
|
||||||
|
|
||||||
private VERSION = "1.4.6";
|
private VERSION = "1.4.7";
|
||||||
|
|
||||||
hasReleaseNotes = false;
|
hasReleaseNotes = false;
|
||||||
updateModalVisible = false;
|
updateModalVisible = false;
|
||||||
|
|||||||
Reference in New Issue
Block a user