"Zurück zum Training"-Button auf der Statistik-Seite durch Lucide 'undo-2' Symbol ersetzt"

This commit is contained in:
jamulix 2025-10-28 19:36:28 +01:00 committed by jamulix (aider)
commit 4cbc98f0a9
4 changed files with 7 additions and 7 deletions

View file

@ -1,4 +1,4 @@
# 📖 Typewriter Trainer - Online-Hilfe
# 📖 Typewriter Trainer - Online-Hilfe (v0.4.0)
Willkommen beim Typewriter Trainer! Diese Hilfe erklärt alle Funktionen und gibt Tipps für effektives Tipptraining.
@ -426,4 +426,4 @@ Der Text scrollt **automatisch**, sodass:
---
*Typewriter Trainer v0.3.0 - Mit ❤️ entwickelt für effektives Tipptraining*
*Typewriter Trainer v0.4.0 - Mit ❤️ entwickelt für effektives Tipptraining*

View file

@ -1 +1 @@
v0.4.0
0.4.0

2
app.py
View file

@ -26,7 +26,7 @@ def get_version() -> str:
with open(version_file, 'r') as f:
return f.read().strip()
except Exception:
return 'unknown'
return '0.4.0'
VERSION = get_version()

View file

@ -25,9 +25,9 @@
<i data-lucide="sun" id="theme-toggle-sun" style="width: 24px; height: 24px; position: absolute; top: 0; left: 0;"></i>
<i data-lucide="moon" id="theme-toggle-moon" style="width: 24px; height: 24px; position: absolute; top: 0; left: 0; display: none;"></i>
</div>
<button onclick="window.location.href='/train'" class="btn btn-outline-light">
Zurück zum Training
</button>
<div onclick="window.location.href='/train'" style="width: 24px; height: 24px; cursor: pointer; display: flex; align-items: center; justify-content: center;" aria-label="Zurück zum Training">
<i data-lucide="undo-2" style="width: 24px; height: 24px;"></i>
</div>
</div>
</div>
</div>