@joule-sh/code-win32-x64 0.21.0 → 0.23.0

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/README.md CHANGED
@@ -141,12 +141,31 @@ directory. Model, mode and workspace are not part of what gets saved - they
141
141
  are re-resolved fresh from the normal config chain on every launch. There is
142
142
  no picker for older sessions yet, only the most recent one.
143
143
 
144
- The terminal enables mouse reporting so the wheel can scroll the transcript.
145
- That hands mouse events to joule, which is why click-drag no longer selects
146
- text on its own - the terminal emulator is no longer the one handling the
147
- click. Hold Shift while dragging to select natively; this bypasses mouse
148
- reporting in GNOME Terminal and Windows Terminal. iTerm2 uses Option instead
149
- of Shift for this. Terminal.app has no modifier-key bypass at all - turn off
150
- View > Allow Mouse Reporting (Cmd-R), select and copy, then turn it back on.
144
+ The terminal does its own mouse selection, so the wheel and drag-to-select
145
+ both work at once rather than trading against each other. The wheel scrolls
146
+ the transcript, PageUp/PageDown scroll it too, and dragging over the
147
+ transcript selects the rows the drag covers - drawn in reverse video, with the
148
+ status line saying how many lines are held. The wheel keeps scrolling while a
149
+ drag is in progress: the selection stays on the text it was drawn over rather
150
+ than on the screen rows.
151
+
152
+ Releasing copies, over OSC 52 (`ESC ] 52 ; c ; <base64> BEL`), which is the
153
+ mechanism that survives ssh. Not every terminal accepts it, and one that
154
+ refuses sends no reply, so there is nothing to detect and nothing to retry.
155
+ Joule says what it wrote and names the way out rather than reporting a copy it
156
+ cannot confirm: `copied 3 lines - Esc clears - /mouse off if nothing pasted`.
157
+ Escape clears the selection, typing puts the status line back, and the next
158
+ click starts a new one.
159
+
160
+ A click that does not move copies nothing, the way it behaves in an editor.
161
+ Sign-in codes are never selectable: the row map covers transcript rows only,
162
+ and no selection can start, extend or copy while the input line is capturing.
163
+
164
+ `/mouse off` hands selection back to your terminal's own, for anyone who
165
+ prefers it or whose terminal blocks OSC 52; the button events are then ignored
166
+ outright. It writes `"mouse": "off"` into `~/.config/joule-code/config.json`,
167
+ `/mouse on` puts it back, and `JOULE_CODE_MOUSE` overrides the file for a
168
+ single run.
169
+
151
170
  Copying from a collapsed tool-output group only copies what is visible; the
152
171
  rows hidden by the collapse are not part of the selection.
Binary file
package/bin/joule.exe CHANGED
Binary file
package/bin/relay.exe CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@joule-sh/code-win32-x64",
3
- "version": "0.21.0",
3
+ "version": "0.23.0",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",