@omg-dev/app 0.6.18 → 0.6.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-lib/{ChangelogPage-DWu3RBbp.js → ChangelogPage-C3zgye46.js} +33 -1
- package/dist-lib/{File-DQRr5F_e.js → File-6EjmZMI_.js} +3378 -1352
- package/dist-lib/{FileEditor-BrI3dfcp.js → FileEditor-Cd_j2Pn3.js} +1 -1
- package/dist-lib/{FileViewer-DRrfus7c.js → FileViewer-rlK_MPcS.js} +1 -1
- package/dist-lib/{SessionFilesPanel-D_D5aScn.js → SessionFilesPanel-Dx0R99Wp.js} +2 -2
- package/dist-lib/{TermView-BvO8EVcd.js → TermView-zGIq4i9Z.js} +2 -2
- package/dist-lib/{chat-engine-BDniuJ89.js → chat-engine-BTjGHI4K.js} +1 -1
- package/dist-lib/{coding-agents-page-C0ZsHBai.js → coding-agents-page-CRYhqoCo.js} +1 -1
- package/dist-lib/{computer-page-CShwbqqT.js → computer-page-DNqLMWx5.js} +2 -2
- package/dist-lib/{embedded-CcZHRxvN.js → embedded-BcFHPcTF.js} +2150 -2147
- package/dist-lib/index-bi2f1zSC.js +7142 -0
- package/dist-lib/index.js +1 -1
- package/dist-lib/{keyboard-bJd_vMhL.js → keyboard-z2Gl8x1u.js} +1 -1
- package/dist-lib/{resume-session-sheet-CloMAlQz.js → resume-session-sheet-DTaqs81w.js} +1 -1
- package/dist-lib/{session-token-usage-CiLIQPqQ.js → session-token-usage-B0mMlwYE.js} +1 -1
- package/dist-lib/{shipped-page-NFGDYsB2.js → shipped-page-BzqHK6lF.js} +1 -1
- package/dist-lib/{streamdown-response-D9KtlNpp.js → streamdown-response-BukTwfVa.js} +1 -1
- package/package.json +2 -2
- package/dist-lib/index-BBC0E3Qg.js +0 -4994
|
@@ -1,9 +1,41 @@
|
|
|
1
1
|
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
-
import { z as n } from "./embedded-
|
|
2
|
+
import { z as n } from "./embedded-BcFHPcTF.js";
|
|
3
3
|
const t = `# Changelog
|
|
4
4
|
|
|
5
5
|
Recent product updates and deployment notes.
|
|
6
6
|
|
|
7
|
+
## August 31, 2026 - An honest token usage inspector and a self-healing session page (v0.6.19)
|
|
8
|
+
|
|
9
|
+
- **Token usage no longer counts free space as used.** The inspector asked
|
|
10
|
+
Claude for a context breakdown and charted the answer as-is. That answer is a
|
|
11
|
+
layout of the whole context window, not a list of what fills it, so it also
|
|
12
|
+
carries a "Free space" remainder, a reserved autocompact buffer, and tool
|
|
13
|
+
schemas that are advertised but never loaded. All of it was drawn as
|
|
14
|
+
consumption. A session that reported 317k of 1.0M listed categories adding up
|
|
15
|
+
to 1.27M, with "Free space" as the largest single entry, and the bar divides
|
|
16
|
+
by that total, so every proportion was wrong as well. The real Messages row,
|
|
17
|
+
which was almost all of the context, showed as a quarter of the bar. The
|
|
18
|
+
breakdown now counts only what occupies the window. Every one of the 585
|
|
19
|
+
recorded snapshots on the development machine was affected.
|
|
20
|
+
- **The mobile transcript appears settled, not mid-move.** A session opened on
|
|
21
|
+
the native app revealed its messages one frame after they arrived, but the
|
|
22
|
+
list keeps correcting its position for up to three seconds, because rows
|
|
23
|
+
mount in batches and an image has no height until it loads. On a real device
|
|
24
|
+
that showed as a transcript parked mid-conversation, with one bubble drawn
|
|
25
|
+
over the tail of the reply above it and the "New activity" pill still up. The
|
|
26
|
+
app now waits for the list to go quiet before it reveals it. A session opened
|
|
27
|
+
while a reply is streaming never goes quiet, so it reveals after 1.2 seconds
|
|
28
|
+
instead of waiting. The opening spinner already covered this moment, so the
|
|
29
|
+
cost is a slightly longer spinner.
|
|
30
|
+
- **The session page recovers from a failed code-split chunk.** Safari could
|
|
31
|
+
show "Importing a module script failed." on a session, from the router error
|
|
32
|
+
boundary, and the page stayed broken. Three parts of the session page loaded
|
|
33
|
+
their code without the retry that the rest of the app uses: the chat engine,
|
|
34
|
+
the assistant message renderer and the diff viewer. A chunk that fails to
|
|
35
|
+
arrive now reloads once and recovers. The background warm-up of the chat
|
|
36
|
+
engine no longer reports its own failure as an error, because the page
|
|
37
|
+
re-requests that code when it renders.
|
|
38
|
+
|
|
7
39
|
## August 30, 2026 - A flat desktop workspace, agent account names, and remote access in Settings (v0.6.18)
|
|
8
40
|
|
|
9
41
|
- **The desktop workspace no longer draws cards around itself.** The session
|