Dev build 2026-06-01 21:49

This commit is contained in:
Ivo Oskamp 2026-06-01 21:49:31 +02:00
parent ef05da92f8
commit e7834d6816
4 changed files with 11 additions and 4 deletions

View File

@ -125,10 +125,10 @@ html {
font-family: var(--mono); font-family: var(--mono);
font-size: 0.68rem; font-size: 0.68rem;
color: var(--text-dim); color: var(--text-dim);
text-decoration: none;
opacity: 0.75; opacity: 0.75;
cursor: default;
user-select: none;
} }
.sidebar-version:hover { opacity: 1; }
.disk-warning { .disk-warning {
display: flex; display: flex;

View File

@ -289,7 +289,7 @@
</svg> </svg>
<span id="rescan-label">Rescan library</span> <span id="rescan-label">Rescan library</span>
</button> </button>
<a href="/changelog" class="sidebar-version" title="Running Novela build">{{ app_version() }}</a> <span class="sidebar-version" title="Running Novela build">{{ app_version() }}</span>
</div> </div>
</aside> </aside>

View File

@ -10,7 +10,7 @@ from __future__ import annotations
from changelog import CHANGELOG from changelog import CHANGELOG
BUILD = 6 BUILD = 7
def _release_version() -> str: def _release_version() -> str:

View File

@ -1,5 +1,12 @@
# Develop Changelog # Develop Changelog
## 2026-06-01 — Sidebar version is display-only
### Changed
- The build version at the bottom of the sidebar is no longer a clickable link to the changelog — it is now a plain text display. It exists only to show that the running build number has incremented (so it's clear the new code is active).
- `templates/_sidebar.html`: `<a href="/changelog" class="sidebar-version">``<span class="sidebar-version">`.
- `static/sidebar.css`: dropped the link/hover styling; added `cursor: default` and `user-select: none`.
## 2026-06-01 — Local pre-restore snapshots + token-free / upload restore ## 2026-06-01 — Local pre-restore snapshots + token-free / upload restore
### Added ### Added