@hienlh/ppm 0.13.10 → 0.13.11
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/CHANGELOG.md +8 -0
- package/assets/skills/ppm/SKILL.md +1 -1
- package/assets/skills/ppm/references/http-api.md +1 -1
- package/bun.lock +2135 -0
- package/bunfig.toml +2 -0
- package/dist/web/assets/{audio-preview-DISP-2AE.js → audio-preview-dOvnFQN8.js} +1 -1
- package/dist/web/assets/chat-tab-C6NVtLx3.js +12 -0
- package/dist/web/assets/{code-editor-BofKrbM8.js → code-editor-3e9UAnzv.js} +2 -2
- package/dist/web/assets/{conflict-editor-kaAZUFD5.js → conflict-editor-XMpuwtUv.js} +1 -1
- package/dist/web/assets/{database-viewer-P38Vxzkx.js → database-viewer-GNKYeCIc.js} +1 -1
- package/dist/web/assets/{diff-viewer-DlJfbgNJ.js → diff-viewer-DjFe6idy.js} +1 -1
- package/dist/web/assets/{extension-webview-5s2MUx38.js → extension-webview-hgbO93RZ.js} +1 -1
- package/dist/web/assets/{glide-data-grid-D5D1N3L7.js → glide-data-grid-uLRTmkwH.js} +1 -1
- package/dist/web/assets/{image-preview-C9osjEPa.js → image-preview-CzwOU5op.js} +1 -1
- package/dist/web/assets/{index-CpcqiQOx.js → index-BAPR3hYQ.js} +3 -3
- package/dist/web/assets/keybindings-store-D9GV2h8K.js +1 -0
- package/dist/web/assets/{markdown-renderer-k3EA9XmF.js → markdown-renderer-BD5P19YN.js} +1 -1
- package/dist/web/assets/{pdf-preview-DvgyxJX7.js → pdf-preview-DRbBRYIF.js} +1 -1
- package/dist/web/assets/{port-forwarding-tab-CUkU6wac.js → port-forwarding-tab-BSFhNv-A.js} +1 -1
- package/dist/web/assets/{postgres-viewer-C1w0tqQw.js → postgres-viewer-D51L9fxD.js} +1 -1
- package/dist/web/assets/{settings-tab-D0zKyVwg.js → settings-tab-DdbYEmAC.js} +1 -1
- package/dist/web/assets/{sql-query-editor-46hLU7MI.js → sql-query-editor-7pD60nKZ.js} +1 -1
- package/dist/web/assets/{sqlite-viewer-DrLi8P6y.js → sqlite-viewer-DLNJ_IGM.js} +1 -1
- package/dist/web/assets/{terminal-tab-DqA3fEoQ.js → terminal-tab-6T5e8Nar.js} +1 -1
- package/dist/web/assets/{video-preview-BU7tibc4.js → video-preview-BwDNFl7v.js} +1 -1
- package/dist/web/index.html +1 -1
- package/dist/web/sw.js +1 -1
- package/package.json +1 -1
- package/src/index.ts +0 -0
- package/src/web/components/chat/chat-tab.tsx +4 -1
- package/src/web/components/chat/message-input.tsx +28 -14
- package/src/web/hooks/use-chat.ts +27 -20
- package/src/web/hooks/use-global-keybindings.ts +12 -0
- package/dist/web/assets/chat-tab-lp_mVSG-.js +0 -12
- package/dist/web/assets/keybindings-store-COxqSoML.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.13.11] - 2026-04-24
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- **Chat input lag on text selection**: Shift+arrow, Ctrl+A, Ctrl+C keystrokes in textarea no longer run through 21+ global keybinding checks — early return guard skips all but save-prevent (Mod+S) when focus is inside text inputs
|
|
7
|
+
- **Chat input re-renders from file store**: MessageInput now uses imperative Zustand subscribe() instead of hook selectors, preventing re-renders on file index updates
|
|
8
|
+
- **Inline lambda breaking MessageInput memo**: Stabilized `onExternalPathsConsumed` callback with useCallback in ChatTab
|
|
9
|
+
- **Streaming re-renders blocking main thread**: Replaced requestAnimationFrame (~16ms/60fps) with setTimeout(100ms) throttle and wrapped setMessages in startTransition for low-priority rendering
|
|
10
|
+
|
|
3
11
|
## [0.13.9] - 2026-04-23
|
|
4
12
|
|
|
5
13
|
### Added
|
|
@@ -71,4 +71,4 @@ This skill covers the `ppm` CLI, its HTTP API, and its config DB. It does **not*
|
|
|
71
71
|
- Third-party extensions (inspect via `ppm ext list`).
|
|
72
72
|
- The Claude Agent SDK internals (separate skill).
|
|
73
73
|
|
|
74
|
-
<!-- Generated for PPM v0.13.
|
|
74
|
+
<!-- Generated for PPM v0.13.11 at build time. Re-run `ppm export skill --install` to refresh. -->
|
|
@@ -201,4 +201,4 @@ _Base URL: `http://localhost:8080` (default; override via `ppm config set port <
|
|
|
201
201
|
- `ws://<host>/ws/terminal` — PTY terminal multiplexer
|
|
202
202
|
- `ws://<host>/ws/extensions` — extension host channel
|
|
203
203
|
|
|
204
|
-
<!-- Generated from src/server/routes/ for PPM v0.13.
|
|
204
|
+
<!-- Generated from src/server/routes/ for PPM v0.13.11 -->
|