diff --git a/luci-app-auth-guardian/Makefile b/luci-app-auth-guardian/Makefile index 63438be6..ae55034c 100644 --- a/luci-app-auth-guardian/Makefile +++ b/luci-app-auth-guardian/Makefile @@ -1,7 +1,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=luci-app-auth-guardian -PKG_VERSION:=1.0.0 +PKG_VERSION:=0.0.9 PKG_RELEASE:=1 PKG_LICENSE:=MIT PKG_MAINTAINER:=CyberMind diff --git a/luci-app-auth-guardian/htdocs/luci-static/resources/auth-guardian/api.js b/luci-app-auth-guardian/htdocs/luci-static/resources/auth-guardian/api.js index 245b6fd1..3e5229fe 100644 --- a/luci-app-auth-guardian/htdocs/luci-static/resources/auth-guardian/api.js +++ b/luci-app-auth-guardian/htdocs/luci-static/resources/auth-guardian/api.js @@ -1,4 +1,5 @@ 'use strict'; +'require baseclass'; 'require rpc'; // Status and overview @@ -79,7 +80,7 @@ var callGetLogs = rpc.declare({ expect: { logs: [] } }); -return { +return baseclass.extend({ getStatus: callStatus, listProviders: callListProviders, setProvider: callSetProvider, @@ -91,4 +92,4 @@ return { listSessions: callListSessions, revokeSession: callRevokeSession, getLogs: callGetLogs -}; +}); diff --git a/luci-app-bandwidth-manager/Makefile b/luci-app-bandwidth-manager/Makefile index 40511664..bf866c90 100644 --- a/luci-app-bandwidth-manager/Makefile +++ b/luci-app-bandwidth-manager/Makefile @@ -1,10 +1,10 @@ include $(TOPDIR)/rules.mk PKG_NAME:=luci-app-bandwidth-manager -PKG_VERSION:=1.0.0 +PKG_VERSION:=0.0.9 PKG_RELEASE:=1 PKG_LICENSE:=Apache-2.0 -PKG_MAINTAINER:=SecuBox Project +PKG_MAINTAINER:=CyberMind LUCI_TITLE:=Bandwidth Manager - QoS & Traffic Control LUCI_DESCRIPTION:=Advanced bandwidth management with QoS rules, client quotas, and SQM integration diff --git a/luci-app-bandwidth-manager/htdocs/luci-static/resources/bandwidth-manager/api.js b/luci-app-bandwidth-manager/htdocs/luci-static/resources/bandwidth-manager/api.js index 6db5c120..2e1b5ff5 100644 --- a/luci-app-bandwidth-manager/htdocs/luci-static/resources/bandwidth-manager/api.js +++ b/luci-app-bandwidth-manager/htdocs/luci-static/resources/bandwidth-manager/api.js @@ -1,4 +1,5 @@ 'use strict'; +'require baseclass'; 'require rpc'; var callStatus = rpc.declare({ @@ -79,7 +80,7 @@ var callGetClasses = rpc.declare({ expect: { classes: [] } }); -return { +return baseclass.extend({ getStatus: callStatus, listRules: callListRules, addRule: callAddRule, @@ -92,4 +93,4 @@ return { getUsageHistory: callGetUsageHistory, getMedia: callGetMedia, getClasses: callGetClasses -}; +}); diff --git a/luci-app-cdn-cache/Makefile b/luci-app-cdn-cache/Makefile index 2b93cc90..6659ce40 100644 --- a/luci-app-cdn-cache/Makefile +++ b/luci-app-cdn-cache/Makefile @@ -1,7 +1,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=luci-app-cdn-cache -PKG_VERSION:=1.0.0 +PKG_VERSION:=0.0.9 PKG_RELEASE:=1 PKG_LICENSE:=Apache-2.0 PKG_MAINTAINER:=CyberMind diff --git a/luci-app-client-guardian/Makefile b/luci-app-client-guardian/Makefile index f63847b4..d7500db9 100644 --- a/luci-app-client-guardian/Makefile +++ b/luci-app-client-guardian/Makefile @@ -8,11 +8,11 @@ include $(TOPDIR)/rules.mk PKG_NAME:=luci-app-client-guardian -PKG_VERSION:=1.0.0 +PKG_VERSION:=0.0.9 PKG_RELEASE:=1 PKG_LICENSE:=Apache-2.0 -PKG_MAINTAINER:=Gandalf +PKG_MAINTAINER:=CyberMind LUCI_TITLE:=LuCI Client Guardian Dashboard LUCI_DESCRIPTION:=Network Access Control with client monitoring, zone management, captive portal, parental controls, and SMS/email alerts diff --git a/luci-app-crowdsec-dashboard/Makefile b/luci-app-crowdsec-dashboard/Makefile index 05eda75e..f1434512 100644 --- a/luci-app-crowdsec-dashboard/Makefile +++ b/luci-app-crowdsec-dashboard/Makefile @@ -8,11 +8,11 @@ include $(TOPDIR)/rules.mk PKG_NAME:=luci-app-crowdsec-dashboard -PKG_VERSION:=1.0.0 +PKG_VERSION:=0.0.9 PKG_RELEASE:=1 PKG_LICENSE:=Apache-2.0 -PKG_MAINTAINER:=Gandalf +PKG_MAINTAINER:=CyberMind LUCI_TITLE:=LuCI CrowdSec Dashboard LUCI_DESCRIPTION:=Real-time security monitoring dashboard for CrowdSec on OpenWrt diff --git a/luci-app-ksm-manager/Makefile b/luci-app-ksm-manager/Makefile index 6bf69395..73e82f7f 100644 --- a/luci-app-ksm-manager/Makefile +++ b/luci-app-ksm-manager/Makefile @@ -4,7 +4,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=luci-app-ksm-manager -PKG_VERSION:=1.0.0 +PKG_VERSION:=0.0.9 PKG_RELEASE:=1 LUCI_TITLE:=LuCI support for Key Storage Manager @@ -13,7 +13,7 @@ LUCI_DESCRIPTION:=Centralized cryptographic key management with hardware securit Provides secure key storage, certificate management, SSH key handling, and secret storage with audit logging. LUCI_PKGARCH:=all -PKG_MAINTAINER:=SecuBox Project +PKG_MAINTAINER:=CyberMind PKG_LICENSE:=Apache-2.0 include $(TOPDIR)/feeds/luci/luci.mk diff --git a/luci-app-ksm-manager/htdocs/luci-static/resources/ksm-manager/api.js b/luci-app-ksm-manager/htdocs/luci-static/resources/ksm-manager/api.js index 086008ab..19d9bb03 100644 --- a/luci-app-ksm-manager/htdocs/luci-static/resources/ksm-manager/api.js +++ b/luci-app-ksm-manager/htdocs/luci-static/resources/ksm-manager/api.js @@ -1,4 +1,5 @@ 'use strict'; +'require baseclass'; 'require rpc'; 'require uci'; @@ -155,7 +156,7 @@ var callGetAuditLogs = rpc.declare({ expect: { logs: [] } }); -return { +return baseclass.extend({ /** * Get KSM service status * @returns {Promise} Status object with running, keystore_unlocked, keys_count, hsm_connected @@ -442,4 +443,4 @@ return { return timestamp; } } -}; +}); diff --git a/luci-app-media-flow/Makefile b/luci-app-media-flow/Makefile index 16b6e8b9..2245a540 100644 --- a/luci-app-media-flow/Makefile +++ b/luci-app-media-flow/Makefile @@ -4,7 +4,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=luci-app-media-flow -PKG_VERSION:=1.0.0 +PKG_VERSION:=0.0.9 PKG_RELEASE:=1 PKG_LICENSE:=Apache-2.0 PKG_MAINTAINER:=CyberMind diff --git a/luci-app-media-flow/htdocs/luci-static/resources/media-flow/api.js b/luci-app-media-flow/htdocs/luci-static/resources/media-flow/api.js index e7a7d231..6081e1d7 100644 --- a/luci-app-media-flow/htdocs/luci-static/resources/media-flow/api.js +++ b/luci-app-media-flow/htdocs/luci-static/resources/media-flow/api.js @@ -1,4 +1,5 @@ 'use strict'; +'require baseclass'; 'require rpc'; var callStatus = rpc.declare({ @@ -52,7 +53,7 @@ var callListAlerts = rpc.declare({ expect: { alerts: [] } }); -return { +return baseclass.extend({ getStatus: callStatus, getActiveStreams: callGetActiveStreams, getStreamHistory: callGetStreamHistory, @@ -61,4 +62,4 @@ return { getServiceDetails: callGetServiceDetails, setAlert: callSetAlert, listAlerts: callListAlerts -}; +}); diff --git a/luci-app-netdata-dashboard/Makefile b/luci-app-netdata-dashboard/Makefile index af8bebc8..238de400 100644 --- a/luci-app-netdata-dashboard/Makefile +++ b/luci-app-netdata-dashboard/Makefile @@ -8,11 +8,11 @@ include $(TOPDIR)/rules.mk PKG_NAME:=luci-app-netdata-dashboard -PKG_VERSION:=1.0.0 +PKG_VERSION:=0.0.9 PKG_RELEASE:=1 PKG_LICENSE:=Apache-2.0 -PKG_MAINTAINER:=Gandalf +PKG_MAINTAINER:=CyberMind LUCI_TITLE:=LuCI Netdata Dashboard LUCI_DESCRIPTION:=Real-time system monitoring dashboard with Netdata integration for OpenWrt diff --git a/luci-app-netifyd-dashboard/Makefile b/luci-app-netifyd-dashboard/Makefile index feb55f0a..8410a2b8 100644 --- a/luci-app-netifyd-dashboard/Makefile +++ b/luci-app-netifyd-dashboard/Makefile @@ -8,11 +8,11 @@ include $(TOPDIR)/rules.mk PKG_NAME:=luci-app-netifyd-dashboard -PKG_VERSION:=1.0.0 +PKG_VERSION:=0.0.9 PKG_RELEASE:=1 PKG_LICENSE:=Apache-2.0 -PKG_MAINTAINER:=Gandalf +PKG_MAINTAINER:=CyberMind LUCI_TITLE:=LuCI Netifyd Dashboard LUCI_DESCRIPTION:=Network Intelligence dashboard with Deep Packet Inspection for OpenWrt diff --git a/luci-app-network-modes/Makefile b/luci-app-network-modes/Makefile index 44cc65f1..bc33042d 100644 --- a/luci-app-network-modes/Makefile +++ b/luci-app-network-modes/Makefile @@ -8,11 +8,11 @@ include $(TOPDIR)/rules.mk PKG_NAME:=luci-app-network-modes -PKG_VERSION:=1.0.0 +PKG_VERSION:=0.0.9 PKG_RELEASE:=1 PKG_LICENSE:=Apache-2.0 -PKG_MAINTAINER:=Gandalf +PKG_MAINTAINER:=CyberMind LUCI_TITLE:=LuCI Network Modes Dashboard LUCI_DESCRIPTION:=Configure OpenWrt for different network modes: Sniffer, Access Point, Relay, Router diff --git a/luci-app-traffic-shaper/Makefile b/luci-app-traffic-shaper/Makefile index 40c961e2..14676bb1 100644 --- a/luci-app-traffic-shaper/Makefile +++ b/luci-app-traffic-shaper/Makefile @@ -1,7 +1,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=luci-app-traffic-shaper -PKG_VERSION:=1.0.0 +PKG_VERSION:=0.0.9 PKG_RELEASE:=1 PKG_LICENSE:=Apache-2.0 PKG_MAINTAINER:=CyberMind diff --git a/luci-app-traffic-shaper/htdocs/luci-static/resources/traffic-shaper/api.js b/luci-app-traffic-shaper/htdocs/luci-static/resources/traffic-shaper/api.js index 7fe40f5f..bd8013bc 100644 --- a/luci-app-traffic-shaper/htdocs/luci-static/resources/traffic-shaper/api.js +++ b/luci-app-traffic-shaper/htdocs/luci-static/resources/traffic-shaper/api.js @@ -1,4 +1,5 @@ 'use strict'; +'require baseclass'; 'require rpc'; /** @@ -78,7 +79,7 @@ var callListPresets = rpc.declare({ expect: { presets: [] } }); -return L.Class.extend({ +return baseclass.extend({ getStatus: function() { return L.resolveDefault(callStatus(), {}); }, diff --git a/luci-app-vhost-manager/Makefile b/luci-app-vhost-manager/Makefile index 40bedb72..058ee00d 100644 --- a/luci-app-vhost-manager/Makefile +++ b/luci-app-vhost-manager/Makefile @@ -4,7 +4,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=luci-app-vhost-manager -PKG_VERSION:=1.0.0 +PKG_VERSION:=0.0.9 PKG_RELEASE:=1 PKG_LICENSE:=Apache-2.0 PKG_MAINTAINER:=CyberMind diff --git a/luci-app-vhost-manager/htdocs/luci-static/resources/vhost-manager/api.js b/luci-app-vhost-manager/htdocs/luci-static/resources/vhost-manager/api.js index 0fb20cd3..ed998b62 100644 --- a/luci-app-vhost-manager/htdocs/luci-static/resources/vhost-manager/api.js +++ b/luci-app-vhost-manager/htdocs/luci-static/resources/vhost-manager/api.js @@ -1,4 +1,5 @@ 'use strict'; +'require baseclass'; 'require rpc'; var callStatus = rpc.declare({ @@ -74,7 +75,7 @@ var callGetAccessLogs = rpc.declare({ expect: { logs: [] } }); -return { +return baseclass.extend({ getStatus: callStatus, listVHosts: callListVHosts, getVHost: callGetVHost, @@ -86,4 +87,4 @@ return { listCerts: callListCerts, reloadNginx: callReloadNginx, getAccessLogs: callGetAccessLogs -}; +}); diff --git a/luci-app-wireguard-dashboard/Makefile b/luci-app-wireguard-dashboard/Makefile index 1b5ba338..4545a23b 100644 --- a/luci-app-wireguard-dashboard/Makefile +++ b/luci-app-wireguard-dashboard/Makefile @@ -8,11 +8,11 @@ include $(TOPDIR)/rules.mk PKG_NAME:=luci-app-wireguard-dashboard -PKG_VERSION:=1.0.0 +PKG_VERSION:=0.0.9 PKG_RELEASE:=1 PKG_LICENSE:=Apache-2.0 -PKG_MAINTAINER:=Gandalf +PKG_MAINTAINER:=CyberMind LUCI_TITLE:=LuCI WireGuard Dashboard LUCI_DESCRIPTION:=Modern dashboard for WireGuard VPN monitoring on OpenWrt