Commit Graph
1721 Commits
Author SHA1 Message Date
vorotamoroz a7bc337fd1 Test Security Seed refresh in Real Obsidian 2026-07-25 03:49:18 +00:00
vorotamoroz 0d68b6530f Test Garbage Collection V3 against CouchDB 2026-07-25 03:48:51 +00:00
vorotamoroz c24fc1dc82 Update Commonlib to 0.1.0-rc.12 2026-07-24 19:06:53 +00:00
vorotamoroz c8162fd0cd Make dialogue prose selectable 2026-07-24 17:53:55 +00:00
vorotamoroz 0a7a3b1635 Harden Garbage Collection V3 validation 2026-07-24 17:53:22 +00:00
vorotamoroz 20fb027055 Protect conflict chunks during garbage collection 2026-07-24 17:09:22 +00:00
vorotamoroz 07cba4ce83 Keep unreadable revisions for explicit repair 2026-07-24 16:15:46 +00:00
vorotamoroz 658ad6dfe4 Describe saved connections consistently 2026-07-24 16:15:02 +00:00
vorotamoroz 0e5475b7e3 Limit commands to applicable contexts 2026-07-24 16:13:49 +00:00
vorotamoroz 6afeb0b409 Record beta.2 history and remove release-note links 2026-07-24 09:54:44 +00:00
vorotamoroz d489452583 Improve troubleshooting and compatible setting handling 2026-07-24 08:51:30 +00:00
vorotamoroz 058da1f34c Polish setup guide wording 2026-07-24 05:55:37 +00:00
vorotamoroz 32b72e4b10 Normalise Chinese setup guide line endings 2026-07-24 05:39:40 +00:00
vorotamoroz bdc44920ac Refresh setup guides and capture fixtures 2026-07-24 05:37:13 +00:00
vorotamoroz 24a4ebb8dd Use obsidian-test-session 0.2.5 2026-07-24 03:04:39 +00:00
vorotamoroz 68d22ade76 Use established terms in setup guidance 2026-07-23 17:38:16 +00:00
vorotamoroz bf0fc0aea8 Retire orphaned WebApp tests and classify regression guards 2026-07-23 17:21:16 +00:00
vorotamoroz 24b941f594 Group Hidden File Sync initialisation progress 2026-07-23 16:47:30 +00:00
vorotamoroz c8050322e4 Clarify remote setup and verify manual CouchDB onboarding 2026-07-23 16:46:50 +00:00
vorotamoroz 1df034f12a Refine P2P and manual setup workflows 2026-07-23 15:23:47 +00:00
vorotamoroz cd35858e01 Record published beta.1 release history 2026-07-23 10:31:05 +00:00
vorotamoroz 371d6b161a Document support requests for older Obsidian versions 2026-07-23 09:41:56 +00:00
vorotamoroz 2977287438 Stabilise relay disconnect readiness check 2026-07-23 08:16:32 +00:00
vorotamoroz f8f11f358a Handle multiple conflict revisions deterministically 2026-07-23 06:38:16 +00:00
vorotamoroz d784799969 Improve postponed conflict resolution handling
Keep unresolved conflicts visible after Not now, reopen them only on explicit requests, and clear stale warning and dialogue state when a replicated resolution arrives. Add typed provisional English messages, revision-tree regressions, specifications, and a focused Real Obsidian E2E.
2026-07-23 02:00:24 +00:00
vorotamoroz 8d82a3a00c Record beta preview history for corrected successor 2026-07-22 17:43:11 +00:00
vorotamoroz eaaf5fcdd9 Keep Obsidian CLI override guidance general 2026-07-22 17:09:25 +00:00
vorotamoroz defef55a6e Use published Commonlib 0.1.0-rc.10 2026-07-22 16:57:46 +00:00
vorotamoroz dcbf26f874 Document explicit Obsidian CLI discovery 2026-07-22 16:18:20 +00:00
vorotamoroz f24c543dd3 Persist displayed branches through conflict operations 2026-07-22 16:01:57 +00:00
vorotamoroz 59aa8ad9a9 Verify vertical actions in setup guide captures 2026-07-22 10:49:08 +00:00
vorotamoroz a69c7b2b6c Prepare concise 1.0 beta notes and fix release rotation 2026-07-22 09:54:01 +00:00
vorotamoroz f7577db1d2 Wait for stable upgrade fixtures to initialise 2026-07-22 08:38:00 +00:00
vorotamoroz 6b634cd9f2 Use published Commonlib and test-session releases 2026-07-22 08:37:34 +00:00
vorotamoroz 4ed49c3c36 Document legacy upgrade and reflection behaviour 2026-07-22 06:23:39 +00:00
vorotamoroz 87152244d7 Reprocess stored documents after reflection filters change 2026-07-22 06:23:16 +00:00
vorotamoroz aad0e56f09 Preserve legacy settings across same-profile upgrades 2026-07-22 06:21:54 +00:00
Andrew Leech a3a09df3c8 fix(storage): floor write-option timestamps in Obsidian adapters
Obsidian's mobile storage layer forwards mtime/ctime to Capacitor's
Filesystem.setTimes, whose native binding casts the value to a Java Long.
A non-integer (float) timestamp makes that cast throw (ClassCastException:
Double cannot be cast to Long), which crashes the app on launch as soon as
such a document is replicated in.

Float timestamps can reach the database from any client that stores
fs.Stats.mtimeMs without flooring. Coerce mtime/ctime to integer ms at the
Obsidian vault and storage adapter write boundary, so a float already
present in the mesh can't crash the app regardless of where it came from.

The truly central choke point is dbToStorage in livesync-commonlib; a
matching guard there would cover the CLI and webapp too. This change
protects the platform that actually crashes.

Claude-Session: https://claude.ai/code/session_0123E9jVQrsgu3zb82Csuwhi
2026-07-22 14:08:21 +10:00
Andrew Leech 4393a49cba fix(cli): floor watch-mode stat timestamps to integer ms
CLIWatchAdapter._toNodeFile passed chokidar's raw stats.ctimeMs/mtimeMs
straight through. On Linux those carry sub-millisecond precision (e.g.
1778511180024.462), so watch-mode file changes wrote non-integer
timestamps into the database.

The earlier floor fix (3f7bb047) covered the scan/stat adapters but missed
this watch path, which is the one the daemon actually uses at runtime.
Mobile clients then crash on such a document because Capacitor's
Filesystem.setTimes casts the value to a Java Long (ClassCastException:
Double cannot be cast to Long).

Floor ctimeMs/mtimeMs here, with a null guard so a partial stat still
falls back to Date.now(). Adds a regression test that a fractional stat is
floored.

Claude-Session: https://claude.ai/code/session_0123E9jVQrsgu3zb82Csuwhi
2026-07-22 14:08:21 +10:00
vorotamoroz c669f64933 Use Commonlib 0.1.0-rc.8 2026-07-22 02:30:30 +00:00
vorotamoroz 00f49a13ab Document CLI storage trust boundary 2026-07-22 01:00:51 +00:00
vorotamoroz f27aa5be7b Record final Commonlib consumer hardening 2026-07-22 00:18:21 +00:00
vorotamoroz 2b8b3aa5fd Make repository lint checks deterministic 2026-07-22 00:18:01 +00:00
vorotamoroz 65547515a1 Resolve newly disclosed parser advisories 2026-07-22 00:17:40 +00:00
vorotamoroz fc74638642 Use rooted Commonlib storage in the CLI 2026-07-22 00:17:03 +00:00
vorotamoroz 1ef8c88139 Complete Commonlib rc.6 integration and setup workflows 2026-07-21 15:00:28 +00:00
vorotamoroz e005f9eb13 Prepare the 1.0 beta release lifecycle 2026-07-21 07:15:55 +00:00
vorotamoroz 8bf1ae81d7 Resolve fixable dependency advisories 2026-07-21 05:40:37 +00:00
vorotamoroz 04b5734089 Centralise setup tool Commonlib selection 2026-07-21 04:31:09 +00:00
vorotamoroz b44a7fa50f Make focused Obsidian checks build current source 2026-07-21 04:15:57 +00:00