v0.4.60 - tweecijferig patch-nummer

This commit is contained in:
bes-r 2026-06-06 22:16:10 +02:00
parent fd9b6ff53d
commit 82f68278f6
4 changed files with 13 additions and 3 deletions

View file

@ -1,3 +1,13 @@
# v0.4.60 — Tweecijferig patch-nummer
## Versiebeleid vanaf v0.4.60
Het patch-deel (laatste cijfer) gebruikt nu twee cijfers en loopt in tientallen:
`0.4.60`, `0.4.61`, … `0.4.69`, `0.4.70`. Blijft semver-compatibel (het deel
wordt als geheel getal vergeleken, dus `0.4.60` > `0.4.6`).
---
# v0.4.6 — Kaal versienummer op alle builds
## Wijziging in v0.4.6

View file

@ -1 +1 @@
0.4.6
0.4.60

View file

@ -18,7 +18,7 @@ from core.modules import Module, CORE, discover
app = Flask(__name__, static_folder="static", template_folder="templates")
VERSION = os.environ.get("SU_VERSION", "0.4.6")
VERSION = os.environ.get("SU_VERSION", "0.4.60")
MODULES: list[Module] = []
USER_MOD = APP / "modules"

View file

@ -771,7 +771,7 @@ tailwind.config = {
<script>
function app() {
return {
version: '0.4.6',
version: '0.4.60',
page: location.hash.slice(1) || 'dashboard',
isMobile: window.innerWidth < 768,
sidebarOpen: window.innerWidth >= 768 && localStorage.getItem('sidebar') !== 'closed',