@cjhyy/code-shell 0.6.0-rc.13 → 0.6.0-rc.14

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -6,6 +6,26 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and while the project is pre-1.0 we treat any 0.x → 0.(x+1) bump as potentially
7
7
  breaking.
8
8
 
9
+ ## [0.6.0-rc.14]
10
+
11
+ ### Fixed
12
+
13
+ - **Cross-session message misdelivery**: a message typed in one session could be
14
+ delivered to another if you sent it while switching sessions. Sends now pin the
15
+ source session's bucket at submit time; the queued-input steer path also
16
+ resolves the engine session from the active bucket instead of the last-started
17
+ run.
18
+ - **Historical `view_image` by number**: image-bearing tool results are now
19
+ persisted to the transcript and restored on resume, so retrieving a past image
20
+ by number returns the correct image instead of a missing/misnumbered one.
21
+ - **File tree auto-scroll**: the files panel no longer snaps back to the selected
22
+ file on every refresh — it scrolls into view only when a file becomes selected.
23
+ - Mobile approval card / composer layout hardening.
24
+
25
+ ### Added
26
+
27
+ - The update settings row now shows the current app version.
28
+
9
29
  ## [Unreleased]
10
30
 
11
31
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cjhyy/code-shell",
3
- "version": "0.6.0-rc.13",
3
+ "version": "0.6.0-rc.14",
4
4
  "description": "Code Shell — meta package. Installs @cjhyy/code-shell-core and @cjhyy/code-shell-tui.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",