diff --git a/package.json b/package.json index 6c515aa..a992c99 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stacjownik", - "version": "1.28.7", + "version": "1.29.0", "private": true, "type": "module", "scripts": { diff --git a/public/images/icon-srjp.svg b/public/images/icon-srjp.svg new file mode 100644 index 0000000..93a1f0a --- /dev/null +++ b/public/images/icon-srjp.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Global/DonationCard.vue b/src/components/Global/DonationCard.vue index a1d0fc4..ebc43c7 100644 --- a/src/components/Global/DonationCard.vue +++ b/src/components/Global/DonationCard.vue @@ -187,7 +187,7 @@ a.discord { text-decoration: underline; } -.actions { +.actions-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 0.5em; diff --git a/src/components/JournalView/JournalOptions.vue b/src/components/JournalView/JournalOptions.vue index 44a5b90..cabc030 100644 --- a/src/components/JournalView/JournalOptions.vue +++ b/src/components/JournalView/JournalOptions.vue @@ -33,7 +33,7 @@

{{ $t('options.search-title') }}

- + {{ $t('journal.dispatcher-name') }} {{ timetable.authorName }} - + + {{ $t('journal.stock-timetable-speed') }} + {{ timetable.trainMaxSpeed }}km/h + + + {{ $t('journal.stock-max-speed') }} {{ timetable.maxSpeed }}km/h - - - {{ $t('journal.stock-length') }} - - {{ - currentHistoryIndex == 0 - ? timetable.stockLength - : stockHistory[currentHistoryIndex].stockLength || timetable.stockLength - }}m - - - - - {{ $t('journal.stock-mass') }} - - {{ - Math.floor( - (currentHistoryIndex == 0 - ? timetable.stockMass - : stockHistory[currentHistoryIndex].stockMass || timetable.stockMass) / 1000 - ) - }}t - -
@@ -93,8 +74,35 @@
+ {{ $t('journal.stock-preview') }}: +
+ + {{ $t('journal.stock-length') }} + + {{ + currentHistoryIndex == 0 + ? timetable.stockLength + : stockHistory[currentHistoryIndex].stockLength || timetable.stockLength + }}m + + + + + {{ $t('journal.stock-mass') }} + + {{ + Math.floor( + (currentHistoryIndex == 0 + ? timetable.stockMass + : stockHistory[currentHistoryIndex].stockMass || timetable.stockMass) / 1000 + ) + }}t + + +
+