Add VERSION file and live version display on settings page

- New VERSION file at project root, starting at 0.3.0.
- config.py reads VERSION and exposes it as Config.VERSION.
- Admin settings page now renders the live version from config.
- Semantic versioning convention: MAJOR for breaking/user-facing changes,
  MINOR for new features, PATCH for bug fixes and small polish.
This commit is contained in:
Troll (Hermes Agent) 2026-08-05 03:17:16 +00:00
parent d9e198e397
commit db249e80bd
4 changed files with 16 additions and 1 deletions

View file

@ -164,7 +164,7 @@
<body>
<div class="container">
<div class="topbar">
<h1>Admin Settings <span class="version-tag">v0.3</span></h1>
<h1>Admin Settings <span class="version-tag">v{{ version }}</span></h1>
<div class="nav">
<a href="{{ url_for('admin_dashboard') }}">← Back to Dashboard</a>
<a href="{{ url_for('admin_logout') }}">Log out</a>