v0.4.60 - tweecijferig patch-nummer
This commit is contained in:
parent
fd9b6ff53d
commit
82f68278f6
4 changed files with 13 additions and 3 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
|
@ -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
|
# v0.4.6 — Kaal versienummer op alle builds
|
||||||
|
|
||||||
## Wijziging in v0.4.6
|
## Wijziging in v0.4.6
|
||||||
|
|
|
||||||
2
VERSION
2
VERSION
|
|
@ -1 +1 @@
|
||||||
0.4.6
|
0.4.60
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ from core.modules import Module, CORE, discover
|
||||||
|
|
||||||
app = Flask(__name__, static_folder="static", template_folder="templates")
|
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] = []
|
MODULES: list[Module] = []
|
||||||
USER_MOD = APP / "modules"
|
USER_MOD = APP / "modules"
|
||||||
|
|
|
||||||
|
|
@ -771,7 +771,7 @@ tailwind.config = {
|
||||||
<script>
|
<script>
|
||||||
function app() {
|
function app() {
|
||||||
return {
|
return {
|
||||||
version: '0.4.6',
|
version: '0.4.60',
|
||||||
page: location.hash.slice(1) || 'dashboard',
|
page: location.hash.slice(1) || 'dashboard',
|
||||||
isMobile: window.innerWidth < 768,
|
isMobile: window.innerWidth < 768,
|
||||||
sidebarOpen: window.innerWidth >= 768 && localStorage.getItem('sidebar') !== 'closed',
|
sidebarOpen: window.innerWidth >= 768 && localStorage.getItem('sidebar') !== 'closed',
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue