arkaos 3.70.0 → 3.70.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/VERSION +1 -1
- package/dashboard/app/pages/terminal.vue +49 -41
- package/package.json +1 -1
- package/pyproject.toml +1 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.70.
|
|
1
|
+
3.70.1
|
|
@@ -147,48 +147,54 @@ const showHistory = ref(false)
|
|
|
147
147
|
</script>
|
|
148
148
|
|
|
149
149
|
<template>
|
|
150
|
-
<
|
|
151
|
-
<header
|
|
152
|
-
<
|
|
153
|
-
<
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
150
|
+
<UDashboardPanel id="terminal">
|
|
151
|
+
<template #header>
|
|
152
|
+
<UDashboardNavbar title="Terminal">
|
|
153
|
+
<template #leading>
|
|
154
|
+
<UDashboardSidebarCollapse />
|
|
155
|
+
</template>
|
|
156
|
+
<template #right>
|
|
157
|
+
<div class="flex items-center gap-2">
|
|
158
|
+
<UBadge color="warning" variant="soft" size="sm">
|
|
159
|
+
<UIcon name="i-lucide-shield" class="size-3 mr-1" />
|
|
160
|
+
localhost only
|
|
161
|
+
</UBadge>
|
|
162
|
+
<USelect
|
|
163
|
+
:model-value="themeName"
|
|
164
|
+
:items="themeOptions"
|
|
165
|
+
size="xs"
|
|
166
|
+
class="w-40"
|
|
167
|
+
@update:model-value="setTheme($event as string)"
|
|
168
|
+
/>
|
|
169
|
+
<UButton
|
|
170
|
+
size="xs"
|
|
171
|
+
variant="ghost"
|
|
172
|
+
icon="i-lucide-search"
|
|
173
|
+
title="Ctrl+R — search history"
|
|
174
|
+
@click="openSearch"
|
|
175
|
+
>
|
|
176
|
+
⌃R
|
|
177
|
+
</UButton>
|
|
178
|
+
<UButton
|
|
179
|
+
size="xs"
|
|
180
|
+
variant="ghost"
|
|
181
|
+
:icon="showHistory ? 'i-lucide-x' : 'i-lucide-history'"
|
|
182
|
+
@click="showHistory = !showHistory"
|
|
183
|
+
>
|
|
184
|
+
History ({{ history.length }})
|
|
185
|
+
</UButton>
|
|
186
|
+
</div>
|
|
187
|
+
</template>
|
|
188
|
+
</UDashboardNavbar>
|
|
189
|
+
</template>
|
|
190
|
+
|
|
191
|
+
<template #body>
|
|
192
|
+
<div class="flex flex-col gap-3 h-full p-4">
|
|
193
|
+
<p class="text-sm text-muted -mt-1">
|
|
194
|
+
Real PTY shell — run claude, codex, git, anything. ⌘T new · ⌘W close · ⌘1–8 switch · ⌃R search.
|
|
157
195
|
</p>
|
|
158
|
-
</div>
|
|
159
|
-
<div class="flex items-center gap-2">
|
|
160
|
-
<UBadge color="warning" variant="soft" size="sm">
|
|
161
|
-
<UIcon name="i-lucide-shield" class="size-3 mr-1" />
|
|
162
|
-
localhost only
|
|
163
|
-
</UBadge>
|
|
164
|
-
<USelect
|
|
165
|
-
:model-value="themeName"
|
|
166
|
-
:items="themeOptions"
|
|
167
|
-
size="xs"
|
|
168
|
-
class="w-44"
|
|
169
|
-
@update:model-value="setTheme($event as string)"
|
|
170
|
-
/>
|
|
171
|
-
<UButton
|
|
172
|
-
size="xs"
|
|
173
|
-
variant="ghost"
|
|
174
|
-
icon="i-lucide-search"
|
|
175
|
-
title="Ctrl+R — search history"
|
|
176
|
-
@click="openSearch"
|
|
177
|
-
>
|
|
178
|
-
⌃R
|
|
179
|
-
</UButton>
|
|
180
|
-
<UButton
|
|
181
|
-
size="xs"
|
|
182
|
-
variant="ghost"
|
|
183
|
-
:icon="showHistory ? 'i-lucide-x' : 'i-lucide-history'"
|
|
184
|
-
@click="showHistory = !showHistory"
|
|
185
|
-
>
|
|
186
|
-
History ({{ history.length }})
|
|
187
|
-
</UButton>
|
|
188
|
-
</div>
|
|
189
|
-
</header>
|
|
190
196
|
|
|
191
|
-
|
|
197
|
+
<div class="flex items-center gap-1 border-b border-default pb-2 overflow-x-auto">
|
|
192
198
|
<div
|
|
193
199
|
v-for="(tab, idx) in tabs"
|
|
194
200
|
:key="tab.id"
|
|
@@ -311,5 +317,7 @@ const showHistory = ref(false)
|
|
|
311
317
|
</div>
|
|
312
318
|
</template>
|
|
313
319
|
</UModal>
|
|
314
|
-
|
|
320
|
+
</div>
|
|
321
|
+
</template>
|
|
322
|
+
</UDashboardPanel>
|
|
315
323
|
</template>
|
package/package.json
CHANGED