diff --git a/ROADMAP.md b/ROADMAP.md index 3032375..773148b 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -266,3 +266,5 @@ Roughly in priority order: `v0.16.70` fixes the Access Logs table (Administration > Logs, "Access requests"), the last page still on its own pre-unification CSS: `.log-table` pinned the Status and Duration columns with `position:sticky` and drew a divider `box-shadow` on each -- a horizontal-scroll affordance none of the other log-type pages use -- and left the Request column at a fixed width instead of stretching to fill the panel, so wide viewports showed an empty gap past Duration. Both are removed: the two trailing columns are back in normal table flow, and Request now takes `width:auto` to absorb the remaining space, matching how Gateway Events, Backup history, and the Audit log already size their last column. Purely a CSS change -- no markup, data, or behavior changes. `v0.16.71` fixes a Gateway Events / Audit log message that slipped past v0.16.66: the Hosted Site file-upload route ("Replace files") still wrote the old, un-prefixed `Files replaced for "".` line instead of the `Hosted site "" ...` convention every other Hosted Site action uses (created, enabled/disabled, deleted, and the field-level update summaries). It lived in its own route separate from the four `PATCH` handlers v0.16.66 touched, so it was missed at the time and only noticed once a user pointed out the log entry gave no way to tell which route type it belonged to. Now reads `Hosted site "" files replaced.`, matching the rest. + +`v0.16.72` fixes the favicon not appearing in some Chromium-family browsers (reported: DuckDuckGo's browser showed the default globe icon while Safari showed the real one correctly). The app previously declared a single `` pointing straight at the 1018x1001, 396 KB source PNG with no `sizes` attribute and no `/favicon.ico` fallback -- Safari is forgiving about oversized, unsized favicons, but some Chromium-based browsers silently skip one that large rather than downscale it, and several also probe `/favicon.ico` directly regardless of what the `` tag says. Added properly sized `favicon.ico` (16/32px, multi-size), standalone `favicon-16.png`/`favicon-32.png` with `sizes` attributes, and a 180x180 `apple-touch-icon.png`, all generated from the existing approved icon artwork and served automatically by the existing static file handler -- no server route or icon design changes. diff --git a/package.json b/package.json index e7ca920..a57aa82 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "site-gateway", - "version": "0.16.71", + "version": "0.16.72", "private": true, "description": "Site Gateway: simple self-hosted website publishing, reverse proxying, and automatic HTTPS.", "type": "module", diff --git a/src/public/apple-touch-icon.png b/src/public/apple-touch-icon.png new file mode 100644 index 0000000..8f8cc0a Binary files /dev/null and b/src/public/apple-touch-icon.png differ diff --git a/src/public/favicon-16.png b/src/public/favicon-16.png new file mode 100644 index 0000000..9364570 Binary files /dev/null and b/src/public/favicon-16.png differ diff --git a/src/public/favicon-32.png b/src/public/favicon-32.png new file mode 100644 index 0000000..7b42fa0 Binary files /dev/null and b/src/public/favicon-32.png differ diff --git a/src/public/favicon.ico b/src/public/favicon.ico new file mode 100644 index 0000000..c5a1982 Binary files /dev/null and b/src/public/favicon.ico differ diff --git a/src/public/index.html b/src/public/index.html index b67e8e8..228341c 100644 --- a/src/public/index.html +++ b/src/public/index.html @@ -7,8 +7,11 @@ Site Gateway - - + + + + + - +