Skip to content

Commit f70cf07

Browse files
committed
feat(ui): add DE/EN language switch
1 parent fba70a0 commit f70cf07

6 files changed

Lines changed: 894 additions & 367 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ All notable changes to this project will be documented in this file.
66

77
- Pending
88

9+
## [2.1.9] - 2026-02-10
10+
11+
### Added
12+
13+
- UI language switch (DE/EN) in the top header.
14+
- English UI translations (including the Info modal).
15+
916
## [2.1.8] - 2026-02-10
1017

1118
### Changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ More installation details (including Proxmox LXC setup and sudo-safe install flo
5353
## What It Does
5454

5555
- Manage multiple runners (name, command, schedule, cases, notifications)
56+
- UI language switch (DE/EN) (persisted locally in the browser)
5657
- Clone a saved runner (creates a stored copy directly below the source)
5758
- Run commands manually or on interval after each run finishes
5859
- Show runner active duration while active (running/scheduled) (`hh:mm:ss`, unlimited hours)

app/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1725,7 +1725,7 @@ def compile_runner_cfg(state: AppState, runner_id: str, broker: EventBroker) ->
17251725
notifier = NotificationWorker(broker, store)
17261726
rm = RunnerManager(broker, notifier)
17271727

1728-
app = FastAPI(title="command-runner", version="2.1.8")
1728+
app = FastAPI(title="command-runner", version="2.1.9")
17291729
templates = Jinja2Templates(directory=str(BASE_DIR / "templates"))
17301730
app.mount("/static", StaticFiles(directory=str(BASE_DIR / "static")), name="static")
17311731

0 commit comments

Comments
 (0)