chg: usr: add current version of the app in the footer #14
Deploy to Production / deploy (push) Successful in 3m42s

This commit is contained in:
2026-07-27 19:01:42 +02:00
parent 8d542e683e
commit f451df283c
6 changed files with 33 additions and 4 deletions
+23
View File
@@ -119,3 +119,26 @@ footer {
&:hover { color: #95cff5; } &:hover { color: #95cff5; }
} }
} }
.footer-version {
display: inline-flex;
align-items: center;
gap: 5px;
margin: 0 7px;
padding: 3px 8px 2px;
border: 1px solid rgba(149, 207, 245, 0.24);
border-radius: 999px;
background: linear-gradient(135deg, rgba(35, 111, 135, 0.22), rgba(149, 207, 245, 0.08));
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 12px rgba(35, 111, 135, 0.12);
color: rgba(180, 224, 248, 0.9);
font: 700 10px 'Rajdhani', sans-serif;
letter-spacing: 1px;
line-height: 1;
text-transform: uppercase;
vertical-align: middle;
i {
color: #95cff5;
font-size: 9px;
}
}
+1
View File
@@ -10,6 +10,7 @@ services:
environment: environment:
SERVER_NAME: ${SERVER_NAME:-:80} SERVER_NAME: ${SERVER_NAME:-:80}
APP_ENV: prod APP_ENV: prod
APP_VERSION: ${APP_VERSION:-1.0.0}
APP_SECRET: ${APP_SECRET} APP_SECRET: ${APP_SECRET}
APP_PUBLIC_HOSTNAME: ${APP_PUBLIC_HOSTNAME:-localhost} APP_PUBLIC_HOSTNAME: ${APP_PUBLIC_HOSTNAME:-localhost}
APP_CONTACT_MAIL_ADDRESS: ${APP_CONTACT_MAIL_ADDRESS:-7system7@gmail.com} APP_CONTACT_MAIL_ADDRESS: ${APP_CONTACT_MAIL_ADDRESS:-7system7@gmail.com}
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "splendid-bear/mineseeker", "name": "splendid-bear/mineseeker",
"version": "2026.2.1", "version": "2026.3.0",
"license": "GPL-3.0-or-later", "license": "GPL-3.0-or-later",
"author": "https://www.splendidbear.org", "author": "https://www.splendidbear.org",
"bugs": "https://source.splendidbear.org", "bugs": "https://source.splendidbear.org",
+1 -1
View File
@@ -2,7 +2,7 @@
# https://symfony.com/doc/current/best_practices/configuration.html#application-related-configuration # https://symfony.com/doc/current/best_practices/configuration.html#application-related-configuration
parameters: parameters:
locale: 'en' locale: 'en'
jotunheimr.version: 1.1.0-20191026 jotunheimr.version: '%env(APP_VERSION)%'
services: services:
# default configuration for services in *this* file # default configuration for services in *this* file
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "mine-seeker", "name": "mine-seeker",
"version": "2026.2.1", "version": "2026.3.0",
"author": "https://www.splendidbear.org", "author": "https://www.splendidbear.org",
"license": "GPL-3.0-or-later", "license": "GPL-3.0-or-later",
"bugs": "https://source.splendidbear.org", "bugs": "https://source.splendidbear.org",
+6 -1
View File
@@ -265,7 +265,12 @@
</nav> </nav>
</div> </div>
<div class="footer-copy"> <div class="footer-copy">
<p>&copy; {{ "now"|date("Y") }} MineSeeker &nbsp;&bull;&nbsp; All rights reserved &nbsp;&bull;&nbsp; <p>&copy; {{ "now"|date("Y") }} MineSeeker
<span class="footer-version" title="MineSeeker version {{ version }}">
<i class="fas fa-code-branch" aria-hidden="true"></i>
<span>v{{ version }}</span>
</span>
&nbsp;&bull;&nbsp; All rights reserved &nbsp;&bull;&nbsp;
<a href="https://www.splendidbear.org">www.splendidbear.org</a> <a href="https://www.splendidbear.org">www.splendidbear.org</a>
</p> </p>
</div> </div>