agentgui 1.0.961 → 1.0.962

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.961",
3
+ "version": "1.0.962",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "electron/main.js",
@@ -496,6 +496,9 @@ const SHORTCUTS = [
496
496
  { keys: 'Enter / Shift+Enter', desc: 'send / new line (in the composer)' },
497
497
  { keys: '?', desc: 'show shortcuts' },
498
498
  { keys: 'Esc', desc: 'close overlays, cancel confirms, stop generation, or blur the field' },
499
+ { keys: 'Up / Down / Home / End', desc: 'move the focused file row (files grid)' },
500
+ { keys: 'Enter / Backspace', desc: 'open the focused file / go up a directory (files grid)' },
501
+ { keys: 'Left / Right', desc: 'previous / next file (file preview)' },
499
502
  ];
500
503
 
501
504
  function view() {
@@ -1115,6 +1118,9 @@ function filesMain() {
1115
1118
  const toolbar = FileToolbar({
1116
1119
  left: [crumb],
1117
1120
  right: [
1121
+ // Explicit up-a-directory affordance for mouse users (the grid also takes
1122
+ // Backspace); disabled at a root depth where fileUp would no-op.
1123
+ Btn({ key: 'up', disabled: (f.segments || []).length <= 1, 'aria-label': 'up a directory', onClick: () => fileUp(), children: 'up' }),
1118
1124
  f.path ? Btn({ key: 'newdir', onClick: () => openFileDialog('mkdir'), children: 'new folder' }) : null,
1119
1125
  f.path ? Btn({ key: 'upload', onClick: () => {
1120
1126
  const inp = document.createElement('input');