feat: add panel update functionality via web GUI (#4117)

* feat: add panel update functionality via web GUI

* feat: enhance panel update notifications in web GUI

* feat: implement panel update modal and enhance translation strings

* fix design
This commit is contained in:
Farhad H. P. Shirvan
2026-04-28 18:46:55 +02:00
committed by GitHub
parent 22de983752
commit f21ed92296
7 changed files with 367 additions and 10 deletions
+12
View File
@@ -0,0 +1,12 @@
//go:build linux
package service
import (
"os/exec"
"syscall"
)
func setDetachedProcess(cmd *exec.Cmd) {
cmd.SysProcAttr = &syscall.SysProcAttr{Setsid: true}
}