openrune 0.3.16 → 0.3.17

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": "openrune",
3
- "version": "0.3.16",
3
+ "version": "0.3.17",
4
4
  "description": "Rune — File-based AI Agent Harness for Claude Code",
5
5
  "keywords": ["ai", "agent", "claude", "desktop", "electron", "mcp", "claude-code", "harness", "automation"],
6
6
  "repository": {
@@ -66,7 +66,7 @@ export function ChatPanel({ chat, showTerminal, onToggleTerminal }: ChatPanelPro
66
66
  <div className="flex-1 overflow-hidden relative">
67
67
  {/* Terminal */}
68
68
  {chat.runeInfo && (
69
- <div className={showTerminal ? 'absolute inset-0' : 'absolute inset-0 invisible'}>
69
+ <div className={showTerminal ? 'absolute inset-0 z-10' : 'absolute inset-0 invisible'} style={{ top: 0, left: 0, right: 0, bottom: 0 }}>
70
70
  <TerminalPanel
71
71
  cwd={chat.runeInfo.folderPath}
72
72
  autoCommand={channelCommand}