You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Summary
- add timezone selection to web UI with persistence
- update time formatting helper
- refresh tables when timezone changes
- document timezone option
## Testing
- `go vet ./...` *(fails: unknown field Command in ComposeJob)*
- `go test ./...` *(fails: unknown field Command in ComposeJob)*
------
https://chatgpt.com/codex/tasks/task_b_68696ff6856483339a2ab5340832ebf1
Copy file name to clipboardExpand all lines: README.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,7 @@ Label your Docker containers and let this Go-powered daemon handle the schedule.
36
36
the binary.
37
37
-**Removed job history** keeps deregistered jobs in memory and shows them in the web UI.
38
38
-**Enhanced web UI** allows editing and deleting jobs, shows job origin and type, displays each job's configuration and renders the scheduler configuration in a table with empty job sections hidden. Action buttons now use clear icons.
39
+
-**Timezone selector** in the web UI lets you view timestamps in local, server or UTC time and remembers your choice.
39
40
40
41
This fork is based off of [mcuadros/ofelia](https://github.com/mcuadros/ofelia).
41
42
@@ -93,7 +94,9 @@ the UI allows starting jobs manually, disabling or enabling them and creating,
93
94
updating or deleting jobs of all types. A second table lists jobs removed from
94
95
the configuration via `/api/jobs/removed`. The endpoint `/api/jobs/{name}/history`
95
96
exposes past runs including stdout, stderr and any error messages while
96
-
`/api/config` returns the active configuration as JSON.
97
+
`/api/config` returns the active configuration as JSON. The UI includes a
98
+
timezone selector so you can view times in your local zone, the server zone or
99
+
UTC and have that preference saved locally.
97
100
Creating `run` or `exec` jobs requires Ofelia to run with Docker access; the
98
101
server rejects such requests if no Docker client is available.
0 commit comments