Major Features: • SecuBox v0.1.2: Real-time module auto-detection via opkg • System Hub: Dynamic component detection leveraging SecuBox • Responsive card grid layout for modules and components • Category filtering tabs (All/Security/Monitoring/Network/System) • Auto-refresh every 30 seconds with real-time status SecuBox Changes: • Added detect_real_modules() function to scan opkg for installed packages • Enhanced get_modules() with dual-source detection (UCI + auto-detected) • Enhanced get_modules_by_category() with same dual-source logic • Auto-categorization based on package name patterns • Real version detection from opkg for installed packages • Added in_uci flag to distinguish module sources • Responsive modules.js with card-based layout • New modules.css with theme support and animations System Hub Changes: • Added get_components() and get_components_by_category() to RPCD • Components leverage SecuBox module detection via ubus • Completely rewritten components.js with responsive cards • New components.css matching SecuBox design language • Extended API with getComponents() methods • Unified component management with quick actions Deployment: • Added deploy-secubox-v0.1.2.sh for SecuBox deployment • Added deploy-system-hub-dynamic.sh for System Hub deployment • Added deploy-dynamic-modules.sh for combined deployment 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
17 lines
503 B
Makefile
17 lines
503 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=luci-app-secubox
|
|
PKG_VERSION:=0.1.2
|
|
PKG_RELEASE:=1
|
|
PKG_LICENSE:=Apache-2.0
|
|
PKG_MAINTAINER:=CyberMind <contact@cybermind.fr>
|
|
|
|
LUCI_TITLE:=LuCI - SecuBox Hub (Central Dashboard)
|
|
LUCI_DESCRIPTION:=Central control hub for all SecuBox modules. Provides unified dashboard, module status, system health monitoring, and quick actions.
|
|
LUCI_DEPENDS:=+luci-base +rpcd +curl +jq
|
|
LUCI_PKGARCH:=all
|
|
|
|
include $(TOPDIR)/feeds/luci/luci.mk
|
|
|
|
# call BuildPackage - OpenWrt buildroot
|