Private
Public Access
chg: usr: add current version of the app in the footer #14
Deploy to Production / deploy (push) Successful in 3m42s
Deploy to Production / deploy (push) Successful in 3m42s
This commit is contained in:
@@ -119,3 +119,26 @@ footer {
|
||||
&: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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@ services:
|
||||
environment:
|
||||
SERVER_NAME: ${SERVER_NAME:-:80}
|
||||
APP_ENV: prod
|
||||
APP_VERSION: ${APP_VERSION:-1.0.0}
|
||||
APP_SECRET: ${APP_SECRET}
|
||||
APP_PUBLIC_HOSTNAME: ${APP_PUBLIC_HOSTNAME:-localhost}
|
||||
APP_CONTACT_MAIL_ADDRESS: ${APP_CONTACT_MAIL_ADDRESS:-7system7@gmail.com}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "splendid-bear/mineseeker",
|
||||
"version": "2026.2.1",
|
||||
"version": "2026.3.0",
|
||||
"license": "GPL-3.0-or-later",
|
||||
"author": "https://www.splendidbear.org",
|
||||
"bugs": "https://source.splendidbear.org",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
# https://symfony.com/doc/current/best_practices/configuration.html#application-related-configuration
|
||||
parameters:
|
||||
locale: 'en'
|
||||
jotunheimr.version: 1.1.0-20191026
|
||||
jotunheimr.version: '%env(APP_VERSION)%'
|
||||
|
||||
services:
|
||||
# default configuration for services in *this* file
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mine-seeker",
|
||||
"version": "2026.2.1",
|
||||
"version": "2026.3.0",
|
||||
"author": "https://www.splendidbear.org",
|
||||
"license": "GPL-3.0-or-later",
|
||||
"bugs": "https://source.splendidbear.org",
|
||||
|
||||
@@ -265,7 +265,12 @@
|
||||
</nav>
|
||||
</div>
|
||||
<div class="footer-copy">
|
||||
<p>© {{ "now"|date("Y") }} MineSeeker • All rights reserved •
|
||||
<p>© {{ "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>
|
||||
• All rights reserved •
|
||||
<a href="https://www.splendidbear.org">www.splendidbear.org</a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user