mirror of
https://github.com/henrygd/beszel.git
synced 2026-04-03 19:41:49 +02:00
Compare commits
3 Commits
v0.12.5
...
50d2406423
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
50d2406423 | ||
|
|
059d2d0a5b | ||
|
|
621bef30b5 |
@@ -30,6 +30,14 @@ func Update(_ *cobra.Command, _ []string) {
|
||||
return
|
||||
}
|
||||
|
||||
// make sure the file is executable
|
||||
exePath, err := os.Executable()
|
||||
if err == nil {
|
||||
if err := os.Chmod(exePath, 0755); err != nil {
|
||||
fmt.Printf("Warning: failed to set executable permissions: %v\n", err)
|
||||
}
|
||||
}
|
||||
|
||||
// Try to restart the service if it's running
|
||||
restartService()
|
||||
}
|
||||
|
||||
@@ -292,7 +292,7 @@ const SystemTableRow = memo(
|
||||
return (
|
||||
<TableRow
|
||||
// data-state={row.getIsSelected() && "selected"}
|
||||
className={cn("cursor-pointer transition-opacity relative", {
|
||||
className={cn("cursor-pointer transition-opacity relative safari:transform-3d", {
|
||||
"opacity-50": system.status === SystemStatus.Paused,
|
||||
})}
|
||||
>
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
@import "tw-animate-css";
|
||||
|
||||
@custom-variant dark (&:is(.dark *));
|
||||
@custom-variant safari (@supports (hanging-punctuation: first) and (-webkit-appearance: none));
|
||||
|
||||
:root {
|
||||
--background: hsl(30 8% 98%);
|
||||
|
||||
@@ -1,3 +1,11 @@
|
||||
## 0.12.5
|
||||
|
||||
- Downgrade `gopsutil` to `v4.25.6` to fix panic on FreeBSD (#1083)
|
||||
|
||||
- Exclude FreeBSD from battery charge monitoring to fix deadlock. (#1081)
|
||||
|
||||
- Minor hub UI improvements.
|
||||
|
||||
## 0.12.4
|
||||
|
||||
- Add battery charge monitoring.
|
||||
|
||||
Reference in New Issue
Block a user