Skip to content

Commit 8694158

Browse files
committed
version info
1 parent 90ca9d8 commit 8694158

7 files changed

+119
-97
lines changed

package-lock.json

+83-85
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "gpst",
33
"description": "Generator Piekielnie Szybkich Thumbnailsów ",
4-
"version": "0.0.3",
4+
"version": "0.2.0-dev",
55
"author": {
66
"name": "Piotr \"Halamix2\" Halama",
77
"email": "[email protected]",
@@ -30,15 +30,15 @@
3030
"file-saver": "^2.0.5",
3131
"pinia": "^2.1.7",
3232
"vite-plugin-vuetify": "^2.0.3",
33-
"vue": "^3.4.29",
33+
"vue": "^3.4.30",
3434
"vue-router": "^4.4.0",
3535
"vuetify": "^3.6.10"
3636
},
3737
"devDependencies": {
3838
"@rushstack/eslint-patch": "^1.10.3",
3939
"@tsconfig/node18": "^18.2.4",
4040
"@types/file-saver": "^2.0.7",
41-
"@types/node": "^20.14.7",
41+
"@types/node": "^20.14.8",
4242
"@vitejs/plugin-vue": "^5.0.5",
4343
"@vue/eslint-config-prettier": "^9.0.0",
4444
"@vue/eslint-config-typescript": "^13.0.0",
@@ -49,6 +49,6 @@
4949
"prettier": "^3.3.2",
5050
"typescript": "~5.5.2",
5151
"vite": "^5.3.1",
52-
"vue-tsc": "^2.0.21"
52+
"vue-tsc": "^2.0.22"
5353
}
5454
}

src/App.vue

+14-4
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,35 @@
11
<script setup lang="ts">
22
import { RouterView } from 'vue-router'
33
// import HeaderItem from './components/HeaderItem.vue'
4+
const appVersion = import.meta.env.PACKAGE_VERSION
45
</script>
56

67
<template>
78
<v-app>
89
<v-app-bar :elevation="2">
10+
<!--<template #prepend>
11+
<v-app-bar-nav-icon v-if="$vuetify.display.smAndDown" /> </template
12+
>-->
13+
<v-img class="me-sm-8" src="favicon.ico" max-width="50" />
914
<!--<v-app-bar-nav-icon />-->
10-
<v-app-bar-title>GPST – Generator Piekielnie Szybkich Thumbnailsów</v-app-bar-title>
15+
<v-app-bar-title v-if="$vuetify.display.smAndDown">GPST</v-app-bar-title>
16+
<v-app-bar-title v-if="$vuetify.display.mdAndUp"
17+
>GPST – Generator Piekielnie Szybkich Thumbnailsów</v-app-bar-title
18+
>
1119
<v-btn stacked prepend-icon="person" to="/">Runnerzy</v-btn>
1220
<v-btn stacked prepend-icon="photo_camera" to="/photo">Zdjęcia</v-btn>
1321
<v-btn stacked prepend-icon="play_circle" to="/youtube">Youtube</v-btn>
1422
</v-app-bar>
1523

1624
<!--<v-navigation-drawer> </v-navigation-drawer>-->
1725

18-
<RouterView />
26+
<v-main>
27+
<RouterView />
28+
</v-main>
1929

2030
<v-footer class="d-flex flex-column">
21-
By Halamix2 &#9874; 2024 - {{ new Date().getFullYear() }}. Halamix nie potrafi we frontend, a
22-
jednak to zrobił; what's your excuse?
31+
By Halamix2 &#9874; 2024 - {{ new Date().getFullYear() }}, wersja {{ appVersion }}. Halamix
32+
nie potrafi we frontend, a jednak to zrobił; what's your excuse?
2333
</v-footer>
2434
</v-app>
2535
</template>

0 commit comments

Comments
 (0)