docs: Add version freeze step to update instructions

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
MarekWo
2026-01-18 11:56:26 +01:00
parent 7ca3f4d2dd
commit cd165415e9

View File

@@ -141,9 +141,12 @@ To update mc-webui to the latest version:
```bash
cd ~/mc-webui
git pull
python3 -m app.version freeze
docker compose up -d --build
```
The `python3 -m app.version freeze` command captures the current Git version (date + commit hash) for display in the app menu.
**Testing experimental features:**
The `dev` branch contains new features that are still being tested:
@@ -151,6 +154,7 @@ The `dev` branch contains new features that are still being tested:
```bash
git checkout dev
git pull
python3 -m app.version freeze
docker compose up -d --build
```
@@ -159,6 +163,7 @@ To return to the stable version:
```bash
git checkout main
git pull
python3 -m app.version freeze
docker compose up -d --build
```