Rebrand to DockPull; daily scheduled scan time; fix settings icon#12
Merged
Merged
Conversation
- Rebrand: "Diun Updater" -> "DockPull" everywhere (UI, PWA manifest, title, README, logs), plus identifiers (cookie diun_session -> dockpull_session, storage keys diun.* -> dockpull.*, theme key, GitHub UA, default container_name + SELF_CONTAINER_NAME -> dockpull, compose service + data volume, package names). The GHCR image name is derived from the repo and is left unchanged. A couple of "you don't need Diun" notes remain by design. - Scheduler: replace the every-N-hours interval with a daily scan at a configured local time (default 09:00), mirroring a cron ping — set it to when you want your morning Discord message. setSettings re-arms it. Setting renamed backgroundCheckIntervalHours -> scheduledCheckTime (HH:MM), env CHECK_INTERVAL_HOURS -> SCHEDULED_CHECK_TIME. - Fix the malformed Settings gear icon in the mobile bottom nav. Server tests 76/76; client builds clean.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Three requests from testing.
1. Rebrand "Diun Updater" → DockPull
The app no longer has anything to do with Diun, so the name goes. Renamed everywhere: UI title, PWA manifest,
<title>, README, server log, About — plus identifiers: cookiediun_session→dockpull_session, storage keysdiun.*→dockpull.*, theme key, GitHub API User-Agent, defaultcontainer_name+SELF_CONTAINER_NAME→dockpull, compose service + data volume →dockpull/dockpull-data, package names.Left unchanged on purpose: the GHCR image name (
ghcr.io/strandedturtle/diupdater) is derived from the repo name, so your currentimage:line keeps working. To finish the rebrand you can rename the GitHub repo todockpull(the workflow will then publish…/dockpull). A couple of "you don't need Diun" notes remain by design.diun-updater. After deploying, either rename it todockpullor setSELF_CONTAINER_NAME=diun-updater, so the app still excludes itself. (There's a hostname fallback that covers this, but the explicit name is cleanest.)2. Daily scheduled scan at a set time (not an interval)
Replaced the every-N-hours interval with a daily scan at a configured local time (default 09:00) — exactly like a cron ping. Set it to when you want your morning Discord message. Setting renamed
backgroundCheckIntervalHours→scheduledCheckTime(HH:MM); envCHECK_INTERVAL_HOURS→SCHEDULED_CHECK_TIME. The Settings UI now has a time picker.⏰ Uses the server's local time — set
TZ=Europe/London(or yours) on the container so 09:00 means your 9am.3. Fixed the malformed Settings gear icon
The mobile bottom-nav gear had a broken path; replaced with a clean gear.
Test plan
cd server && node --test→ 76/76 (added schedulermsUntilNexttests; updated settings tests)cd client && npm run build→ cleanGenerated by Claude Code