arkaos 2.89.0 → 2.90.0

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 CHANGED
@@ -1 +1 @@
1
- 2.89.0
1
+ 2.90.0
@@ -84,9 +84,21 @@ const links = [[{
84
84
  class="bg-elevated/25"
85
85
  >
86
86
  <template #header="{ collapsed }">
87
- <div class="flex items-center gap-2" :class="collapsed ? 'justify-center' : ''">
88
- <span class="text-xl font-bold text-primary">A</span>
89
- <span v-if="!collapsed" class="font-semibold">ArkaOS</span>
87
+ <!-- PR72 v2.90.0 global light/dark switch in the sidebar
88
+ header. Nuxt UI's canonical UColorModeButton (per
89
+ /websites/ui_nuxt docs) flips between sun/moon icons and
90
+ handles SSR via ClientOnly internally. Visible on every
91
+ page; the Settings → Theme section keeps the explicit
92
+ 3-way picker (system / light / dark). -->
93
+ <div
94
+ class="flex items-center w-full"
95
+ :class="collapsed ? 'justify-center' : 'justify-between gap-2'"
96
+ >
97
+ <div class="flex items-center gap-2">
98
+ <span class="text-xl font-bold text-primary">A</span>
99
+ <span v-if="!collapsed" class="font-semibold">ArkaOS</span>
100
+ </div>
101
+ <UColorModeButton v-if="!collapsed" size="xs" />
90
102
  </div>
91
103
  </template>
92
104
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arkaos",
3
- "version": "2.89.0",
3
+ "version": "2.90.0",
4
4
  "description": "The Operating System for AI Agent Teams",
5
5
  "type": "module",
6
6
  "bin": {
package/pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "arkaos-core"
3
- version = "2.89.0"
3
+ version = "2.90.0"
4
4
  description = "Core engine for ArkaOS — The Operating System for AI Agent Teams"
5
5
  readme = "README.md"
6
6
  license = {text = "MIT"}