helixevo 0.2.31 → 0.2.33
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/CHANGELOG.md +15 -0
- package/dashboard/app/layout.tsx +17 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to HelixEvo are documented here.
|
|
4
4
|
|
|
5
|
+
## [0.2.32] - 2026-03-23
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Changelog page in dashboard sidebar with document icon link
|
|
9
|
+
- Sidebar footer redesigned: version + "Changelog" link on separate rows
|
|
10
|
+
- CHANGELOG.md included in npm package for dashboard to read
|
|
11
|
+
|
|
12
|
+
## [0.2.31] - 2026-03-23
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- Dashboard `/changelog` page showing full version history
|
|
16
|
+
- Parsed CHANGELOG.md rendered as styled cards with color-coded sections
|
|
17
|
+
- "latest" badge on current version
|
|
18
|
+
- Changelog accessible from sidebar footer
|
|
19
|
+
|
|
5
20
|
## [0.2.30] - 2026-03-23
|
|
6
21
|
|
|
7
22
|
### Fixed
|
package/dashboard/app/layout.tsx
CHANGED
|
@@ -62,13 +62,24 @@ export default function RootLayout({ children }: { children: React.ReactNode })
|
|
|
62
62
|
</div>
|
|
63
63
|
|
|
64
64
|
{/* Footer */}
|
|
65
|
-
<div className="sidebar-footer">
|
|
66
|
-
<div style={{ display: 'flex', alignItems: 'center',
|
|
67
|
-
<div style={{
|
|
68
|
-
|
|
65
|
+
<div className="sidebar-footer" style={{ flexDirection: 'column', gap: 8 }}>
|
|
66
|
+
<div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center', width: '100%' }}>
|
|
67
|
+
<div style={{ display: 'flex', alignItems: 'center', gap: 6 }}>
|
|
68
|
+
<div style={{ width: 6, height: 6, borderRadius: '50%', background: 'var(--green)' }} />
|
|
69
|
+
<span>System Active</span>
|
|
70
|
+
</div>
|
|
71
|
+
<code style={{ fontSize: 10, background: 'var(--bg-section)', padding: '2px 7px', borderRadius: 4, color: 'var(--text-dim)' }}>v{VERSION}</code>
|
|
69
72
|
</div>
|
|
70
|
-
<Link href="/changelog" style={{
|
|
71
|
-
|
|
73
|
+
<Link href="/changelog" style={{
|
|
74
|
+
textDecoration: 'none', display: 'flex', alignItems: 'center', gap: 5,
|
|
75
|
+
fontSize: 10, color: 'var(--text-muted)', width: '100%',
|
|
76
|
+
padding: '4px 0', transition: 'color 0.15s',
|
|
77
|
+
}}>
|
|
78
|
+
<svg width="11" height="11" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">
|
|
79
|
+
<path d="M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z" />
|
|
80
|
+
<path d="M14 2v6h6M16 13H8M16 17H8M10 9H8" />
|
|
81
|
+
</svg>
|
|
82
|
+
Changelog
|
|
72
83
|
</Link>
|
|
73
84
|
</div>
|
|
74
85
|
</nav>
|
package/package.json
CHANGED