Updated three core modules with significant UI/UX improvements: SecuBox Central Hub (luci-app-secubox): - Changed header icon from 🛡️ to 🚀 ("SecuBox Control Center") - Added module filter tabs (All/Security/Network/System/Monitoring) - Implemented alert dismiss and clear functionality - Enhanced backend RPCD methods for alert management - Updated ACL permissions for new alert methods System Hub (luci-app-system-hub): - Changed header icon from 🖥️ to ⚙️ ("System Control Center") - Added 4-column System Info Grid with interactive cards - Implemented Quick Status Indicators (Internet/DNS/NTP/Firewall) - Added hostname edit and kernel version copy features - Enhanced CSS with monospace fonts and responsive design Network Modes (luci-app-network-modes): - Changed header icon from ⚙️ to 🌐 ("Network Configuration") - Added Current Mode Display Card with config summary - Implemented Mode Comparison Table (5 modes, 6 features) - Active mode highlighting with gradient effects - Added "Change Mode" button with gradient styling All modules validated with comprehensive checks (RPCD, ACL, permissions). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
30 lines
742 B
Makefile
30 lines
742 B
Makefile
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# Copyright (C) 2024 CyberMind.fr - Gandalf
|
|
#
|
|
# LuCI Network Modes Dashboard - Multi-Mode Network Configuration
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=luci-app-network-modes
|
|
PKG_VERSION:=0.3.1
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_LICENSE:=Apache-2.0
|
|
PKG_MAINTAINER:=CyberMind <contact@cybermind.fr>
|
|
|
|
LUCI_TITLE:=LuCI Network Modes Dashboard
|
|
LUCI_DESCRIPTION:=Configure OpenWrt for different network modes: Sniffer, Access Point, Relay, Router
|
|
LUCI_DEPENDS:=+luci-base +luci-app-secubox +luci-lib-jsonc +rpcd +rpcd-mod-luci +luci-lib-nixio
|
|
|
|
LUCI_PKGARCH:=all
|
|
|
|
include $(TOPDIR)/feeds/luci/luci.mk
|
|
|
|
define Package/$(PKG_NAME)/conffiles
|
|
/etc/config/network-modes
|
|
endef
|
|
|
|
# call BuildPackage - OpenWrt buildroot signature
|