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
The status bar parsed its template character by character once per cell
and once more to decide whether a countdown was needed, for each of the
five tiers the adaptive ladder tries. That is two dozen passes over the
same string per rebuild, and a rebuild happens every second while a
template references {reset}. Parsing now happens once per build.
The log buffer re-encoded its whole 500-entry array and wrote it
atomically for every line, which with detailed logging is several per HTTP
request. Writes are coalesced to one every five seconds, with a flush on
shutdown and on clear; every line still reaches os_log as it happens, so
that is all a crash could lose.
LinkifiedText compiled a Regex per banner per body evaluation, the window
selection list recomputed the default selection twice per row, and the
hover cards cancelled and allocated a Task for every mouse-move point over
a card that was already showing.
Claude-Session: https://claude.ai/code/session_01CGckDFXvufWVmRH4uyE4z8
0 commit comments