fix: update version display in UI to v0.1.0

Updated hardcoded version strings in UI:
- Settings page: 0.0.1-beta → 0.1.0
- Dashboard fallback: 0.0.1-beta → 0.1.0

The version is now consistent across all interfaces.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
CyberMind-FR 2025-12-26 10:50:05 +01:00
parent c8353ff2a0
commit 2f8bb7eba0
2 changed files with 2 additions and 2 deletions

View File

@ -81,7 +81,7 @@ return view.extend({
]),
E('div', { 'class': 'secubox-header-info' }, [
E('span', { 'class': 'secubox-badge secubox-badge-version' },
'v' + (status.version || '0.0.1-beta')),
'v' + (status.version || '0.1.0')),
E('span', { 'class': 'secubox-badge' },
'⏱️ ' + API.formatUptime(status.uptime)),
E('span', { 'class': 'secubox-badge', 'id': 'secubox-hostname' },

View File

@ -33,7 +33,7 @@ return view.extend({
o = s.option(form.Value, 'version', '📦 Version',
'Current SecuBox version (read-only)');
o.readonly = true;
o.default = '0.0.1-beta';
o.default = '0.1.0';
// Dashboard Settings Section
s = m.section(form.TypedSection, 'secubox', '📊 Dashboard Settings');