Major structural reorganization and feature additions: ## Folder Reorganization - Move 17 luci-app-* packages to package/secubox/ (except luci-app-secubox core hub) - Update all tooling to support new structure: - secubox-tools/quick-deploy.sh: search both locations - secubox-tools/validate-modules.sh: validate both directories - secubox-tools/fix-permissions.sh: fix permissions in both locations - .github/workflows/test-validate.yml: build from both paths - Update README.md links to new package/secubox/ paths ## AppStore Migration (Complete) - Add catalog entries for all remaining luci-app packages: - network-tweaks.json: Network optimization tools - secubox-bonus.json: Documentation & demos hub - Total: 24 apps in AppStore catalog (22 existing + 2 new) - New category: 'documentation' for docs/demos/tutorials ## VHost Manager v2.0 Enhancements - Add profile activation system for Internal Services and Redirects - Implement createVHost() API wrapper for template-based deployment - Fix Virtual Hosts view rendering with proper LuCI patterns - Fix RPCD backend shell script errors (remove invalid local declarations) - Extend backend validation for nginx return directives (redirect support) - Add section_id parameter for named VHost profiles - Add Remove button to Redirects page for feature parity - Update README to v2.0 with comprehensive feature documentation ## Network Tweaks Dashboard - Close button added to component details modal Files changed: 340+ (336 renames with preserved git history) Packages affected: 19 luci-app, 2 secubox-app, 1 theme, 4 tools 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
91 lines
2.5 KiB
HTML
91 lines
2.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Development Status - SecuBox</title>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=JetBrains+Mono:wght@400;700&display=swap" rel="stylesheet">
|
|
<style>
|
|
:root {
|
|
--sb-bg: #0a0a12;
|
|
--sb-bg-secondary: #0f1019;
|
|
--sb-bg-card: #1a1a24;
|
|
--sb-border: #2a2a3a;
|
|
--sb-text: #f1f5f9;
|
|
--sb-text-muted: #94a3b8;
|
|
--sb-text-dim: #64748b;
|
|
--sb-green: #10b981;
|
|
--sb-cyan: #06b6d4;
|
|
--sb-blue: #3b82f6;
|
|
--sb-purple: #8b5cf6;
|
|
--sb-orange: #f97316;
|
|
--sb-red: #ef4444;
|
|
}
|
|
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background: var(--sb-bg);
|
|
color: var(--sb-text);
|
|
line-height: 1.6;
|
|
padding: 40px 20px;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1400px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.page-header {
|
|
text-align: center;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.page-title {
|
|
font-size: 48px;
|
|
font-weight: 800;
|
|
background: linear-gradient(135deg, #10b981, #06b6d4);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.page-subtitle {
|
|
color: var(--sb-text-muted);
|
|
font-size: 18px;
|
|
}
|
|
|
|
.back-link {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
color: var(--sb-cyan);
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
margin-bottom: 24px;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.back-link:hover {
|
|
transform: translateX(-4px);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<a href="campaign.html" class="back-link">← Retour à la campagne</a>
|
|
|
|
<div class="page-header">
|
|
<h1 class="page-title">Development Status</h1>
|
|
<p class="page-subtitle">Suivez la progression en temps réel du développement de SecuBox</p>
|
|
</div>
|
|
|
|
<!-- Widget Container -->
|
|
<div id="dev-status-widget"></div>
|
|
</div>
|
|
|
|
<!-- Load Widget Script -->
|
|
<script src="./dev-status-widget.js"></script>
|
|
</body>
|
|
</html>
|