@joule-sh/code-darwin-arm64 0.22.0 → 0.23.1

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,20 +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 leaves mouse reporting off, so selecting text with the mouse
145
- works the way it does everywhere else: drag to select, copy with whatever your
146
- terminal binds. PageUp/PageDown scroll the transcript.
147
-
148
- Turning mouse reporting on hands the wheel to the transcript instead, and that
149
- is the whole of what it buys - clicks and drags go to joule, which uses none of
150
- them, so the cost is the selection. `/mouse on` switches it for the running
151
- session and writes `"mouse": "on"` into `~/.config/joule-code/config.json`;
152
- `/mouse off` puts it back, and `JOULE_CODE_MOUSE` overrides the file for a
153
- single run. While it is on, hold Shift while dragging to select natively; this
154
- bypasses mouse reporting in GNOME Terminal and Windows Terminal. iTerm2 uses
155
- Option instead of Shift for this. Terminal.app has no modifier-key bypass at
156
- all - turn off View > Allow Mouse Reporting (Cmd-R), select and copy, then turn
157
- 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.
158
169
 
159
170
  Copying from a collapsed tool-output group only copies what is visible; the
160
171
  rows hidden by the collapse are not part of the selection.
package/bin/joule CHANGED
Binary file
package/bin/joule-daemon CHANGED
Binary file
package/bin/relay CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@joule-sh/code-darwin-arm64",
3
- "version": "0.22.0",
3
+ "version": "0.23.1",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",