openrune 0.3.20 → 0.3.22

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.20",
3
+ "version": "0.3.22",
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": {
@@ -63,10 +63,10 @@ export function ChatPanel({ chat, showTerminal, onToggleTerminal }: ChatPanelPro
63
63
  onClearHistory={chat.clearHistory}
64
64
  onToggleTerminal={onToggleTerminal}
65
65
  />
66
- <div className="flex-1 relative">
66
+ <div className="flex-1 overflow-hidden relative">
67
67
  {/* Terminal */}
68
68
  {chat.runeInfo && (
69
- <div className={showTerminal ? 'absolute inset-0 z-10' : 'absolute inset-0 invisible'} style={{ top: 0, left: 0, right: 0, bottom: 0 }}>
69
+ <div className="absolute inset-0 z-10" style={{ display: showTerminal ? 'block' : 'none' }}>
70
70
  <TerminalPanel
71
71
  cwd={chat.runeInfo.folderPath}
72
72
  autoCommand={channelCommand}
@@ -75,7 +75,7 @@ export function ChatPanel({ chat, showTerminal, onToggleTerminal }: ChatPanelPro
75
75
  </div>
76
76
  )}
77
77
  {/* Chat view */}
78
- <div className={showTerminal ? 'absolute inset-0 invisible' : 'absolute inset-0 flex flex-col'}>
78
+ <div className="absolute inset-0 flex flex-col" style={{ display: showTerminal ? 'none' : 'flex' }}>
79
79
  <MessageList
80
80
  messages={chat.messages}
81
81
  isStreaming={chat.isStreaming}