v1.0.3
One theme across most of it: openCount, lastOpened, createdAt, updatedAt and tags were written on every path, fed the built-in features, and reached almost none of the ones the user drives. Plus settings for Config → Bookmarks, which had none.
Unlike v1.0.1 and v1.0.2 this is not flagged hideFromModal, and both of those had the flag removed in this release — every version is visible in the What's new modal again. DASHBOARD_RELEASE and NEXTDASH_WHATS_NEW_DATA_VERSION are bumped, so the modal reopens once for everyone.
Config
- new — the remembered config location applies on every exit and every way back in, expiring after 15 minutes (
CONFIG_LAST_TTL_MS, stamped on the way out). It was saved only when leaving viaShift+HorShift+Iand cleared on every other exit, andresolveConfigOpenTargetadditionally requiredactiveViewto be health or inbox — so the common route, Escape out andShift+Sback in, always landed on Overview.clearLastConfigLocationhas no callers left and is removed. The expiry is duplicated indashboard-config-loader.js, which reads the same entry on a cold load before the module exists; an entry with nosavedAtpredates the expiry and is treated as stale.
Config → Bookmarks settings
- new — ten settings, all previously constants: stored sort (
configBookmarksSort), rows per load step, and the availability, pin and category a quick-added bookmark starts with; the interval a bookmark gets when switched to Monitor, including in bulk; thresholds for confirming a delete and a bulk icon refresh; the "not opened in N days" figure, which also drives the cleanup score; and the archive service template. - new —
clampBookmarkSettingsenforces every range server-side rather than leaving it to the controls, since the API is reachable without the browser. The archive template must contain{url}and start withhttp, so it can never become ajavascript:URL handed towindow.open. - fix — opening a bookmark from Config now respects
openInNewTab. The setting existed and the grid honoured it; this path forced a new tab regardless.
Reaching the data
- new —
opened:andadded:in the search parser, matched bymatchesAgeFilteragainsttoday/week/month/year, plusneverforopened:. An unrecognised word filters nothing rather than everything, which is the safer way round for a typo. - new — custom collection rules gain
pinned,untagged,notOpenedDaysandchangedDays.valuelessRuleFieldskeepspinnedanduntaggedwithout a value, so the server no longer drops them as half-filled.changedDaysis the first readerupdatedAthas ever had on the dashboard. - new — a Recently added smart collection on
createdAt, off by default, with its own limit and page scope. The other four all key onlastOpenedoropenCount, so "what did I just add" was unanswerable. - new —
previewDescjoins the search haystack, scored below the note: the site's words rather than the user's. - new — drift reaches the dashboard header badge in the warning tier. A drifted link still returns 200, which is exactly why it needed a human.
Grid
- new — tag chips on rows, off by default, capped at a configurable two with the rest collapsing into
+N. Rendered inside.bookmark-linkrather than as a column: it is a subgrid whose columns align across every category, so an extra column would shift every row. Verified by measuring the shortcut column before and after — identical to the pixel, and pinned as a test. - new —
createSortControlsrebuilt as one active button plus a⋯menu. Four buttons per header, repeated per category, took more width than the bookmark names; the strip goes from ~90px to 19px, or 58px once something is sorted. - new — two sort modes,
addedandopens. - fix — the grid's
recentmode sorted bylastOpenedwhile Config used the same words forcreatedAt. Renamed toopened;normalizeSortModestill accepts the old value so stored categories keep working.
Keyboard and pointer
- new —
Shift+Ppin,Shift+Sshare,Shift+Rreveal in Health,tfilter to the row's tag. Each delegates to the existing implementation —_persistBookmarkField,shareBookmark,revealInHealth,toggleTagFilter— rather than adding a second path that could drift. - new — pin gains a right-click entry. It had
Shift+Pand:pinbut no pointer route at all from the grid, while every other one-bit row action had one. - fix —
Ctrl/Cmd+Enteropens in a new tab for that press alone.selectCurrentElementfired a bare.click(), which constructs noMouseEventand carries no modifier, so the keyboard had only the standingopenInNewTabpreference.
Inbox
- fix — triage swallowed every key but Escape. Its guard asked
dash.isModalOpen(), which counts the triage overlay itself, so the overlay blocked its own keyboard. Now asksisLayeredModalOpen()— whether something sits over triage.advance()was correct all along; nothing called it. Reported earlier and not reproducible then; the repro is a seeded queue of three and two presses ofj. - new — a seven-step one-time tour (
inbox-tutorial.js,inboxTutorialV1), fetched on demand rather than with the module: the inbox loads during bootstrap for the unread badge, so riding along would cost every session that never opens the view. Guards and structure mirrorhealth-tutorial.js. - fix —
resetOnboardingnow callsclearSeenTips(). It only clearedonboardingCompletedwhile its own dialog promised to replay "the welcome tour and tips" — those ids live indiscoverabilityState.seenTips, which it never touched, so no tour or tip had ever come back.tipsNotBeforeis cleared with them;seenSettingPromosis deliberately left alone.
Config → Help
- new — a fifth panel under Help → Inbox describing the one-time tour, and a matching entry in the help search index.
Docs
README.mdandMANUAL.md(§4.5, the config chapter and the shortcut table) corrected for the config location memory: three of the four places describing it stated the old rule.- Four tests in
config-dashboard-view.spec.jsasserted the restored section without resettingconfig.sectionfirst, whichcloseConfigViewleaves in memory — so they could not have failed. They reset it now. MANUAL.md§4.4 and §7.9 cover the tour; the Health tour's replay line was corrected — it claimed a button that did not do what it said, which is what turned up theresetOnboardingdefect.README.md,CHANGELOG.md, the What's new modal and Config → Overview updated for this release.- 45 locale keys per language for the tour, 2 for the help panel, in
en,nl,deandfr; the German and French reset hints were corrected against the real control labels. resetDashboardData()added to the e2e helpers, and used by four spec files that depend on what they find./api/resetre-seeds the defaults in ~39ms, so this is far cheaper than the per-spec fixtures estimated earlier. The suite as a whole is still not hermetic: ~166 files share one data directory.- Known and not addressed:
monitor-visibility-revealshows two flaky tests in group runs that pass on retry.
v1.0.2 — 14 August 2026
A repair release for the config view, from a full audit of it. Flagged hideFromModal in index.json like v1.0.1, so it does not reopen the What's new modal.
The recurring fault: a read that failed degraded to an empty list, and the next write posted that emptiness back as the complete state. Failure and emptiness were the same value, so a server blip during an edit destroyed real data behind a "Saved" badge.
Data integrity
- fix —
ensureCategoryOnPage(dashboard-config.js) turned a failed GET into a one-item POST that replaced every category on the page. Proven end to end: five categories in, one out, no error shown.SaveCategoriesByPage's guard cannot catch it, since it only rejects a zero-length list. Now throws rather than degrading. - fix —
loadFindersandloadCategoriesEditorset a_xLoadFailedflag instead of[];saveFindersandsaveCategoriesrefuse to write while it is set. - fix —
saveCategoriesreturns whether it saved and takes the page id as an argument, captured by each caller at edit time. It swallowed the error and returnedundefinedeither way, so the delete flow acted on a 409 as if it had worked — trash entry, undo toast and all. The page picker reassigns_catPageIdsynchronously, so a save in flight could also land on the wrong page. - fix —
SaveSettings(handlers.go) reports dropped collections in the response instead of discarding them behind{"status":"success"}. Surfaced when leaving the Collections tab, not per save: a half-filled row is the normal state while typing. - fix —
publishConfigSyncadded todashboard-config-sync.js. The listener, the pending-marker drain and four specs all existed; nothing ever published, so a second tab stayed stale until reloaded by hand. The specs write the markers themselves, so they passed either way.
Config
- fix —
refreshAllFaviconsposted a body-less request to/api/bookmarks/prefetch-icons, which is per-page and decodes the body first, so it answered 400 every time. Routed throughConfigFaviconPrefetch, assearch-commands.jsanddashboard-quickstart.jsalready did. - fix — the prefetch overlay drops
pointer-eventson completion. It covers the viewport atz-index: 12000and stayed up through the 900ms completion pause and the reloads after it, so the page read "Icons updated" while every click landed on the overlay. Found via a spec that timed out clicking Save;elementFromPointover the button returned the overlay. - fix —
guardUniqueNamerejects empty and over-long names. It only ever checked duplicates and delegated emptiness to callers that never picked it up, so a cleared name saved as""and two emptied names stopped colliding, since""is never taken. Server clamps to the same 60 characters viaclampEntityName(rune-wise, throughtruncateRunes), because the API is reachable without the browser. - new —
checkedAt,nextBackupAtandtotalKeptare rendered. All three were shipped by the server and read by nothing;totalKeptwas silently excluded from the inbox conversion sum while the panel above showed it as its own tile. - fix — four
config.*keys were missing from every locale (addBookmarkBtn,bookmarkNotFound,clearBookmarkFilters,saved).
Accessibility
- fix —
labelSettingsControls()names every schema-rendered control after the panel is drawn. Labels render as<span class="config-field-label">, not<label for>, so selects and number inputs across Behavior and much of Appearance had no accessible name. Done in one pass rather than at ~30 render sites that would drift. Ranges also getaria-valuetext, since0.85is not what the UI shows. - fix —
captureControlPanelFocus()restores focus and caret acrossrepaintActiveControlPanels. Controls bind onchange, which fires while the control still has focus, and the repaint replaces the whole body — so the next Tab started from the top of the page.repaintTagsBodyalready did this, with a comment explaining the hazard. - fix —
bindSubTabStripre-focuses on the next frame rather than testingtarget.isConnectedimmediately. Appearance activates throughrender(), which had not run yet, so the branch was skipped and focus landed on<body>— one ArrowRight killed every press after it. - fix — both hand-rolled confirm dialogs handle Tab through
FocusTrapUtils.trapTabKey. They declaredaria-modal="true"and only handled Escape, so focus wandered into the page behind, including on Reset all data.
Import and export
- new — theme import (
importThemeFromFile,normalizeImportedTheme), reusing Duplicate's id and naming logic so it lands as a new theme and cannot overwrite the palette on screen. A JSON file with no colour values is refused. - new — CSV import (
importBookmarksCSV,parseBookmarksCSV). Hand-written parser rather thansplit(','): the export quotes every field so a note can hold a comma, a doubled quote or a newline. Columns are matched by header, so reordering them in a spreadsheet still imports. Rows go through/api/bookmarks/import-browser, keeping URL de-duplication server-side. - new — trash search across name, URL, tag, category and origin page, plus tick boxes and a bulk restore that runs per item so one failure cannot take the batch with it. Select-all covers what the search shows.
- new —
SavedSearchadded toSettings, normalized bynormalizeSavedSearches(trimmed, incomplete entries dropped, capped at ten). Saved searches lived only inlocalStorage, so they were in no ZIP backup; anything left there is migrated on first read.
Removed
- Page archiving.
Settings.ArchivedPageIdshad defaults and a migration, and MANUAL and README described it as working and said where to find it, but no line of JS ever read it.
Docs
- Release dates now name the day in both the changelog and the modal, per the new convention; v1.0.0 and v1.0.1 backfilled.
- Twelve spec files fixed. None were product regressions: seeded inbox items read before the view had loaded them;
showRecentButtonasserted on the Display tab after it moved to Toolbar (eight failures from one line);appearanceTabset beforeopenConfigView, which resets it;.first()matching a bookmark's smart-collection copy, whose row carries no page-local index;role="feed"asserted on#dashboard-layoutfor health, which renders it on.health-view-feed; cheat-sheet rows asserted visible inside collapsed<details>;last-opened-format.jsstill counted as lazy after8115b0e7made it eager; a hardcoded help-tab list now read fromHELP_TABS; analytics regexes demanding the retiredvYYYY.scheme; andconfig-info-resetdemanding anℹfor five fields whose own comment inFIELD_METAexplains they carry none. - Known and not addressed: the suite is not hermetic. All 170 spec files share one data directory with no reset between tests, so parallel and sequential runs drop different handfuls. Every file that failed the last full run passes on its own.
v1.0.1 — 13 August 2026
A patch release on top of v1.0.0. Recorded here and versioned normally, but flagged hideFromModal in index.json so it does not reopen the What's new modal in front of users who have just read the 1.0 entry — see v2026.09.09.1 for the same treatment.
Health
- new — the collection trend chart moved out of
.health-view-toolbar-actions, where it was aflex: 1 1 6remtrack competing with the button row for space, into a new.health-view-note-rowshared with the filter note. Reserving a column beside the buttons viapadding-rightwas tried first and reverted: it stranded whichever button ran out of room on a line of its own. - new — the chart gained a midpoint gridline, an endpoint dot, and a
100%axis label rendered outside the SVG. The label sits outside becausepreserveAspectRatio="none"stretches the viewBox to the layout box and would distort any type inside it. Only the ceiling is labelled; a 50% label was added and removed as one number too many. - new — per-day hover readout. Hit zones are absolutely positioned
<button>elements sized in CSS percentages rather than SVG geometry, for the samepreserveAspectRatioreason: coordinates inside the viewBox drift away from where the pointer actually is.trendPointLabel()readsHealthTrendPoint.t(Unix ms), not ad/dayfield — an earlier draft assumed the latter and produced empty labels. A null reading renders "no reading" rather than 0%. - new —
showTrendExplainer()behind anℹbeside the chart, kept separate fromshowHealthExplainer()so the fixed-axis and gap rationale is not buried in the view-wide text.
Update check
- fix —
fetchGitHubLatestReleaseread GitHub's/releases/latest, which resolves "latest" bypublished_atrather than by version. A patch published on the calendar line after v1.0.0 would be named there and then correctly rejected bycompareReleaseTags, so a genuinely newer release was never announced in the modal or in Config → Overview. Now reads the release listing and orders it withcompareReleaseTags, falling back to/releases/latestwhen the listing cannot be read. - fix — the listing URL is derived from
githubLatestReleaseURLviareleaseListURL()rather than declared as a second package var. As two independent vars,TestFetchGitHubLatestReleasestubbed one and reached the real api.github.com with the other, passing against live data.
Docs
- Three inbox shortcuts shipped in v1.0.0 without reaching
KeyboardViewLegends:Shift+↑/↓(extend selection),Ctrl/Cmd+A(select all) andR(refresh). Added toINBOX_VIEW, which feeds both the inline legend and the cheat sheet. Printable sheet: 55 → 58 rows;nextDash-cheatsheet.htmland both PDFs regenerated. TestWhatsNewStubReleaseConstantsasserted a literal2026.07prefix onDASHBOARD_RELEASE; the regex now accepts both the calendar and semver suffix shapes.TestBuildUpdateStatusDetectsNewerReleaseusedv9999.99.99.9as its newer upstream. That first segment is abovecalendarVersionFloor(1000), so it is read as a calendar tag and correctly loses to semver — the fixture was wrong, not the comparison. Nowv99.0.0.- New
tests/health-trend-placement.spec.js(6 specs). Locale keys for the trend title, axis, hover and explainer added to en/nl/de/fr. go generate ./...regeneratedasset_hashes_gen.gofor the changed JS and CSS.
v1.0.0 — 13 August 2026
The first release under semantic versioning, and deliberate milestone: after a long run of bug fixing and consolidation has left the app feeling finished and stable rather than in flux. From here 1.x.0 carries features and 1.0.x carries fixes; see v2026.09.09.3 for the scheme change itself, which shipped the comparison logic ahead of this tag.
The bulk of this release is correctness work. A recurring class of bug ran through it: an operation that reported success for something it had not done — a move that could lose the bookmark, a category save that silently no-opped, an add that discarded the item it had just accepted. Several were found by tracing a pattern already solved correctly elsewhere in the same file.
Data integrity
- fix —
_moveBookmarkToPage(dashboard-inline-edit.js) did a double whole-list read-modify-write: GET both pages, splice/push in memory, POST both back. A concurrent write to either page was clobbered, and a source save landing while the target save failed lost the bookmark from both. Now uses the single-itemPOST /api/bookmarks/add+DELETE /api/bookmarksendpoints, each atomic under the store lock. - fix —
bulkMoveTagFilterToPage(dashboard-tag-filter.js) had the same shape for a whole batch. Converted to per-item add+delete viaPromise.allSettled, with a partial-failure toast. - fix —
deleteRemoteBookmarkInlineread the whole source page, spliced, and POSTed it back, racing any concurrent write. Now uses the single-item DELETE endpoint.saveRemoteBookmarkEditdeliberately left as-is: no single-item update endpoint exists, and emulating one as delete+add would move the bookmark to the end of its page. - fix —
SaveCategoriesByPagereturnednilfor an empty-list save while bookmarks still referenced a category, changing nothing. Now returnsErrCategoriesStillReferenced, mapped to 409 byrespondCategoriesSaveError. - fix — category rename without
originalIdfell back to matching by array position, so dropping a middle category reassigned later categories' bookmarks. Positional fallback removed. - fix —
AddInboxLinktrimmed at capacity after appending, discarding an item with an olderAddedAtwhile returning success. Now usestrimInboxItemsKeepingplus a survival check, mirroringRestoreInboxLink. - fix —
DeleteBookmarkFromPageskipped read-cache invalidation. - fix — concurrent page/category creation could clobber each other.
- fix —
fetchBookmarkPreviewcached error pages as valid previews.
API and validation
- fix —
PUT /api/inboxskipped every validationPOSTperforms: novalidateBookmarkURL, nosanitizeBookmarkIcon. It was the one route that would store ajavascript:URL or a private address underallowLocalBookmarks:false, and the only path where a client could writeIcon. - fix — an empty inbox URL returned 500 for a client error.
validateBookmarkURLintentionally permits empty strings (bookmarks may have none), so the check belongs in the handler. - fix —
GetCategories/SaveCategoriesaccepted a nonexistent page, materialisingbookmarks-N.jsonas a side effect. Both now 404 viapageExists. - fix —
GetBookmarkssilently returned200 []for a missingpage/allparam. - fix — bookmark
Name/Category/Notewere never trimmed server-side, unlikeTags/Icon. - new —
POST /api/categories?dryRun=1reports what a category save would do — which bookmarks move, which are orphaned, which submitted categories carry nooriginalId— and writes nothing. SharesbuildCategoryRemapwith the real save so the preview cannot drift from it. - new — inbox text fields are bounded (
clampInboxLinkFields), applied on add, patch and restore.inbox.jsonis rewritten whole on every mutation, so an unbounded field is paid for by every later request. - fix —
PATCH /api/inboxstoredreadAtverbatim, including negative and far-future values, whilesnoozedUntildirectly above it was carefully clamped. - new —
PATCH /api/inboxacceptstags(a pointer, so clearing is expressible).
Inbox
- new — tags are rendered as filter chips, editable from the row menu, matched by search, and included in both exports.
InboxLink.Tagshad existed and been normalised since the field was added, with no UI at all. - new — a Stats panel reads
/api/inbox-stats, previously consumed only by the config view. Promote rate is measured against triaged (promoted + deleted) rather than added. - new — bulk promote, bulk open, bulk copy links, Shift+click and Shift+arrow range selection,
Ctrl/Cmd+Aselect-all. - new — the right-click menu carries the inbox's own actions rather than the bookmark menu's.
- new —
Rre-fetches the feed, wiring uploadAndRender({refresh}), which had no caller. - fix — a failed load rendered the empty state; now a distinct panel with a Retry button, matching the health view.
- fix — the keyboard cursor is no longer dropped after a delete.
- fix —
Escapeand view-level keys ran below the empty-list guard, so clearing ticks was impossible exactly when a filter hid them. - fix — a consumed
?ib_id=deep link kept clearingsearchQuery/domainFilteron every later render. - fix — triage's delete ignored
deleteItemWithUndo's return value;bulkSnoozediscarded its results entirely;bulkDeletereported partial success as success and snapshotted survivors for undo. - fix — capacity eviction is reported to the client, and evicted items' icons are cleaned up (previously only the explicit DELETE path called
removeUnusedIconFile). - new — a polite live region announces the row count after each render.
Health
- new — an
orphaned-categoryissue type: bookmarks whoseCategoryid matches no category on their page. Detect-only, following theshortcut-conflictprecedent. Category save and browser import now invalidate the health report cache, which they did not need to before. - fix — header badge polling moved from a fixed 60s interval to the server's cache TTL with exponential backoff, and no longer double-fetches on tab return (
dashboard.jsalready refreshed there). - new — header restructured to two rows matching
.inbox-header; the trend chart moved into the toolbar.
Dashboard
- fix —
_smartCollectionFilterNeedsCrossPageDatahad been collapsed into!_isSmartCollectionPageAllowedin an earlier commit; the two answer different questions and diverge on the default empty scope, silently disabling cross-page loading. Both restored, sharing only the id normalisation. - fix — the staleness fingerprint omitted
pinned,checkStatus,iconandnote. - fix —
saveSettingsswallowed its error without logging. - fix — the translation-fallback pattern never fell back on a missing key.
- fix — multi-select Clear referenced a nonexistent
keyboardNavproperty. - fix — smart collection headers could be renamed via long-press/double-click.
- fix —
copySelectedLinkshad noexecCommandfallback for plain-HTTP installs. - fix — the inline-edit save hint always showed Ctrl, never Cmd on macOS.
- fix — multi-select Move/Tags buttons lacked
aria-haspopup/aria-expanded; the recent-bookmarks skeleton lackedaria-busy. - fix — the double
/api/data-revisionround-trip on tab refocus is debounced. - new — bulk tag-filter delete offers an undo toast.
- new —
_applyLoadedPageData's full-container view identity moved into oneFULL_CONTAINER_VIEWStable instead of three hand-copied checks. - new —
NoticeCard(static/js/notice-card.js) is the shared bottom-left card; the analytics and side-rail notices were rewritten onto it. The push/outage notice was removed entirely. - perf —
noteDataMutation(pageID)scopes read-cache invalidation to the page a write touched.
Docs
static/data/whats-new/v1.0.0.jsonadded;index.jsongains the entry first.static/js/whats-new-stub.js— both tokens bumped to2026.08-dashboard-release-v1.0.0/whats-new-v240.tests/whats-new-hidden-release.spec.js— constants test renamed and both literals updated.CHANGELOG.md,README.md,MANUAL.mdupdated;Config → Helpgains a v1.0.0 note.go generate ./...regeneratedasset_hashes_gen.go.