fix(metablogizer): Remove incorrect expect clauses from API declarations
The RPCD returns data directly without wrapping in a 'result' object,
but api.js was using expect: { result: {} } which caused empty data
in the UI (0 sites shown instead of 6).
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
163364843e
commit
6e247800a4
@ -9,129 +9,110 @@
|
|||||||
|
|
||||||
var callStatus = rpc.declare({
|
var callStatus = rpc.declare({
|
||||||
object: 'luci.metablogizer',
|
object: 'luci.metablogizer',
|
||||||
method: 'status',
|
method: 'status'
|
||||||
expect: { result: {} }
|
|
||||||
});
|
});
|
||||||
|
|
||||||
var callListSites = rpc.declare({
|
var callListSites = rpc.declare({
|
||||||
object: 'luci.metablogizer',
|
object: 'luci.metablogizer',
|
||||||
method: 'list_sites',
|
method: 'list_sites'
|
||||||
expect: { sites: [] }
|
|
||||||
});
|
});
|
||||||
|
|
||||||
var callCreateSite = rpc.declare({
|
var callCreateSite = rpc.declare({
|
||||||
object: 'luci.metablogizer',
|
object: 'luci.metablogizer',
|
||||||
method: 'create_site',
|
method: 'create_site',
|
||||||
params: ['name', 'domain', 'gitea_repo', 'ssl', 'description'],
|
params: ['name', 'domain', 'gitea_repo', 'ssl', 'description']
|
||||||
expect: { result: {} }
|
|
||||||
});
|
});
|
||||||
|
|
||||||
var callUpdateSite = rpc.declare({
|
var callUpdateSite = rpc.declare({
|
||||||
object: 'luci.metablogizer',
|
object: 'luci.metablogizer',
|
||||||
method: 'update_site',
|
method: 'update_site',
|
||||||
params: ['id', 'name', 'domain', 'gitea_repo', 'ssl', 'enabled', 'description'],
|
params: ['id', 'name', 'domain', 'gitea_repo', 'ssl', 'enabled', 'description']
|
||||||
expect: { result: {} }
|
|
||||||
});
|
});
|
||||||
|
|
||||||
var callDeleteSite = rpc.declare({
|
var callDeleteSite = rpc.declare({
|
||||||
object: 'luci.metablogizer',
|
object: 'luci.metablogizer',
|
||||||
method: 'delete_site',
|
method: 'delete_site',
|
||||||
params: ['id'],
|
params: ['id']
|
||||||
expect: { result: {} }
|
|
||||||
});
|
});
|
||||||
|
|
||||||
var callSyncSite = rpc.declare({
|
var callSyncSite = rpc.declare({
|
||||||
object: 'luci.metablogizer',
|
object: 'luci.metablogizer',
|
||||||
method: 'sync_site',
|
method: 'sync_site',
|
||||||
params: ['id'],
|
params: ['id']
|
||||||
expect: { result: {} }
|
|
||||||
});
|
});
|
||||||
|
|
||||||
var callGetHostingStatus = rpc.declare({
|
var callGetHostingStatus = rpc.declare({
|
||||||
object: 'luci.metablogizer',
|
object: 'luci.metablogizer',
|
||||||
method: 'get_hosting_status',
|
method: 'get_hosting_status'
|
||||||
expect: { result: {} }
|
|
||||||
});
|
});
|
||||||
|
|
||||||
var callCheckSiteHealth = rpc.declare({
|
var callCheckSiteHealth = rpc.declare({
|
||||||
object: 'luci.metablogizer',
|
object: 'luci.metablogizer',
|
||||||
method: 'check_site_health',
|
method: 'check_site_health',
|
||||||
params: ['id'],
|
params: ['id']
|
||||||
expect: { result: {} }
|
|
||||||
});
|
});
|
||||||
|
|
||||||
var callGetPublishInfo = rpc.declare({
|
var callGetPublishInfo = rpc.declare({
|
||||||
object: 'luci.metablogizer',
|
object: 'luci.metablogizer',
|
||||||
method: 'get_publish_info',
|
method: 'get_publish_info',
|
||||||
params: ['id'],
|
params: ['id']
|
||||||
expect: { result: {} }
|
|
||||||
});
|
});
|
||||||
|
|
||||||
var callUploadFile = rpc.declare({
|
var callUploadFile = rpc.declare({
|
||||||
object: 'luci.metablogizer',
|
object: 'luci.metablogizer',
|
||||||
method: 'upload_file',
|
method: 'upload_file',
|
||||||
params: ['site_id', 'filename', 'content'],
|
params: ['site_id', 'filename', 'content']
|
||||||
expect: { result: {} }
|
|
||||||
});
|
});
|
||||||
|
|
||||||
var callListFiles = rpc.declare({
|
var callListFiles = rpc.declare({
|
||||||
object: 'luci.metablogizer',
|
object: 'luci.metablogizer',
|
||||||
method: 'list_files',
|
method: 'list_files',
|
||||||
params: ['site_id'],
|
params: ['site_id']
|
||||||
expect: { result: {} }
|
|
||||||
});
|
});
|
||||||
|
|
||||||
var callGetSettings = rpc.declare({
|
var callGetSettings = rpc.declare({
|
||||||
object: 'luci.metablogizer',
|
object: 'luci.metablogizer',
|
||||||
method: 'get_settings',
|
method: 'get_settings'
|
||||||
expect: { result: {} }
|
|
||||||
});
|
});
|
||||||
|
|
||||||
var callEnableTor = rpc.declare({
|
var callEnableTor = rpc.declare({
|
||||||
object: 'luci.metablogizer',
|
object: 'luci.metablogizer',
|
||||||
method: 'enable_tor',
|
method: 'enable_tor',
|
||||||
params: ['id'],
|
params: ['id']
|
||||||
expect: { result: {} }
|
|
||||||
});
|
});
|
||||||
|
|
||||||
var callDisableTor = rpc.declare({
|
var callDisableTor = rpc.declare({
|
||||||
object: 'luci.metablogizer',
|
object: 'luci.metablogizer',
|
||||||
method: 'disable_tor',
|
method: 'disable_tor',
|
||||||
params: ['id'],
|
params: ['id']
|
||||||
expect: { result: {} }
|
|
||||||
});
|
});
|
||||||
|
|
||||||
var callGetTorStatus = rpc.declare({
|
var callGetTorStatus = rpc.declare({
|
||||||
object: 'luci.metablogizer',
|
object: 'luci.metablogizer',
|
||||||
method: 'get_tor_status',
|
method: 'get_tor_status',
|
||||||
params: ['id'],
|
params: ['id']
|
||||||
expect: { result: {} }
|
|
||||||
});
|
});
|
||||||
|
|
||||||
var callRepairSite = rpc.declare({
|
var callRepairSite = rpc.declare({
|
||||||
object: 'luci.metablogizer',
|
object: 'luci.metablogizer',
|
||||||
method: 'repair_site',
|
method: 'repair_site',
|
||||||
params: ['id'],
|
params: ['id']
|
||||||
expect: { result: {} }
|
|
||||||
});
|
});
|
||||||
|
|
||||||
var callDiscoverVhosts = rpc.declare({
|
var callDiscoverVhosts = rpc.declare({
|
||||||
object: 'luci.metablogizer',
|
object: 'luci.metablogizer',
|
||||||
method: 'discover_vhosts',
|
method: 'discover_vhosts'
|
||||||
expect: { result: {} }
|
|
||||||
});
|
});
|
||||||
|
|
||||||
var callImportVhost = rpc.declare({
|
var callImportVhost = rpc.declare({
|
||||||
object: 'luci.metablogizer',
|
object: 'luci.metablogizer',
|
||||||
method: 'import_vhost',
|
method: 'import_vhost',
|
||||||
params: ['instance', 'name', 'domain'],
|
params: ['instance', 'name', 'domain']
|
||||||
expect: { result: {} }
|
|
||||||
});
|
});
|
||||||
|
|
||||||
var callSyncConfig = rpc.declare({
|
var callSyncConfig = rpc.declare({
|
||||||
object: 'luci.metablogizer',
|
object: 'luci.metablogizer',
|
||||||
method: 'sync_config',
|
method: 'sync_config'
|
||||||
expect: { result: {} }
|
|
||||||
});
|
});
|
||||||
|
|
||||||
return baseclass.extend({
|
return baseclass.extend({
|
||||||
|
|||||||
@ -8,7 +8,7 @@ Architecture: all
|
|||||||
Installed-Size: 71680
|
Installed-Size: 71680
|
||||||
Description: Comprehensive authentication and session management with captive portal, OAuth2/OIDC integration, voucher system, and time-based access control
|
Description: Comprehensive authentication and session management with captive portal, OAuth2/OIDC integration, voucher system, and time-based access control
|
||||||
Filename: luci-app-auth-guardian_0.4.0-r3_all.ipk
|
Filename: luci-app-auth-guardian_0.4.0-r3_all.ipk
|
||||||
Size: 12078
|
Size: 12080
|
||||||
|
|
||||||
Package: luci-app-bandwidth-manager
|
Package: luci-app-bandwidth-manager
|
||||||
Version: 0.5.0-r2
|
Version: 0.5.0-r2
|
||||||
@ -20,7 +20,7 @@ Architecture: all
|
|||||||
Installed-Size: 378880
|
Installed-Size: 378880
|
||||||
Description: Advanced bandwidth management with QoS rules, client quotas, and SQM integration
|
Description: Advanced bandwidth management with QoS rules, client quotas, and SQM integration
|
||||||
Filename: luci-app-bandwidth-manager_0.5.0-r2_all.ipk
|
Filename: luci-app-bandwidth-manager_0.5.0-r2_all.ipk
|
||||||
Size: 66969
|
Size: 66970
|
||||||
|
|
||||||
Package: luci-app-cdn-cache
|
Package: luci-app-cdn-cache
|
||||||
Version: 0.5.0-r3
|
Version: 0.5.0-r3
|
||||||
@ -32,7 +32,7 @@ Architecture: all
|
|||||||
Installed-Size: 122880
|
Installed-Size: 122880
|
||||||
Description: Dashboard for managing local CDN caching proxy on OpenWrt
|
Description: Dashboard for managing local CDN caching proxy on OpenWrt
|
||||||
Filename: luci-app-cdn-cache_0.5.0-r3_all.ipk
|
Filename: luci-app-cdn-cache_0.5.0-r3_all.ipk
|
||||||
Size: 23192
|
Size: 23190
|
||||||
|
|
||||||
Package: luci-app-client-guardian
|
Package: luci-app-client-guardian
|
||||||
Version: 0.4.0-r7
|
Version: 0.4.0-r7
|
||||||
@ -44,7 +44,7 @@ Architecture: all
|
|||||||
Installed-Size: 307200
|
Installed-Size: 307200
|
||||||
Description: Network Access Control with client monitoring, zone management, captive portal, parental controls, and SMS/email alerts
|
Description: Network Access Control with client monitoring, zone management, captive portal, parental controls, and SMS/email alerts
|
||||||
Filename: luci-app-client-guardian_0.4.0-r7_all.ipk
|
Filename: luci-app-client-guardian_0.4.0-r7_all.ipk
|
||||||
Size: 57042
|
Size: 57044
|
||||||
|
|
||||||
Package: luci-app-crowdsec-dashboard
|
Package: luci-app-crowdsec-dashboard
|
||||||
Version: 0.7.0-r29
|
Version: 0.7.0-r29
|
||||||
@ -104,7 +104,7 @@ Architecture: all
|
|||||||
Installed-Size: 40960
|
Installed-Size: 40960
|
||||||
Description: Modern dashboard for Glances system monitoring with SecuBox theme
|
Description: Modern dashboard for Glances system monitoring with SecuBox theme
|
||||||
Filename: luci-app-glances_1.0.0-r2_all.ipk
|
Filename: luci-app-glances_1.0.0-r2_all.ipk
|
||||||
Size: 6966
|
Size: 6965
|
||||||
|
|
||||||
Package: luci-app-haproxy
|
Package: luci-app-haproxy
|
||||||
Version: 1.0.0-r8
|
Version: 1.0.0-r8
|
||||||
@ -128,7 +128,7 @@ Architecture: all
|
|||||||
Installed-Size: 215040
|
Installed-Size: 215040
|
||||||
Description: Modern dashboard for Hexo static site generator on OpenWrt
|
Description: Modern dashboard for Hexo static site generator on OpenWrt
|
||||||
Filename: luci-app-hexojs_1.0.0-r3_all.ipk
|
Filename: luci-app-hexojs_1.0.0-r3_all.ipk
|
||||||
Size: 32975
|
Size: 32976
|
||||||
|
|
||||||
Package: luci-app-jitsi
|
Package: luci-app-jitsi
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -140,7 +140,7 @@ Architecture: all
|
|||||||
Installed-Size: 30720
|
Installed-Size: 30720
|
||||||
Description: LuCI Jitsi Meet Configuration
|
Description: LuCI Jitsi Meet Configuration
|
||||||
Filename: luci-app-jitsi_1.0.0-r1_all.ipk
|
Filename: luci-app-jitsi_1.0.0-r1_all.ipk
|
||||||
Size: 5138
|
Size: 5133
|
||||||
|
|
||||||
Package: luci-app-ksm-manager
|
Package: luci-app-ksm-manager
|
||||||
Version: 0.4.0-r2
|
Version: 0.4.0-r2
|
||||||
@ -152,7 +152,7 @@ Architecture: all
|
|||||||
Installed-Size: 112640
|
Installed-Size: 112640
|
||||||
Description: Centralized cryptographic key management with hardware security module (HSM) support for Nitrokey and YubiKey devices. Provides secure key storage, certificate management, SSH key handling, and secret storage with audit logging.
|
Description: Centralized cryptographic key management with hardware security module (HSM) support for Nitrokey and YubiKey devices. Provides secure key storage, certificate management, SSH key handling, and secret storage with audit logging.
|
||||||
Filename: luci-app-ksm-manager_0.4.0-r2_all.ipk
|
Filename: luci-app-ksm-manager_0.4.0-r2_all.ipk
|
||||||
Size: 18723
|
Size: 18719
|
||||||
|
|
||||||
Package: luci-app-localai
|
Package: luci-app-localai
|
||||||
Version: 0.1.0-r15
|
Version: 0.1.0-r15
|
||||||
@ -164,7 +164,7 @@ Architecture: all
|
|||||||
Installed-Size: 81920
|
Installed-Size: 81920
|
||||||
Description: Modern dashboard for LocalAI LLM management on OpenWrt
|
Description: Modern dashboard for LocalAI LLM management on OpenWrt
|
||||||
Filename: luci-app-localai_0.1.0-r15_all.ipk
|
Filename: luci-app-localai_0.1.0-r15_all.ipk
|
||||||
Size: 14362
|
Size: 14365
|
||||||
|
|
||||||
Package: luci-app-lyrion
|
Package: luci-app-lyrion
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -176,7 +176,7 @@ Architecture: all
|
|||||||
Installed-Size: 40960
|
Installed-Size: 40960
|
||||||
Description: LuCI support for Lyrion Music Server
|
Description: LuCI support for Lyrion Music Server
|
||||||
Filename: luci-app-lyrion_1.0.0-r1_all.ipk
|
Filename: luci-app-lyrion_1.0.0-r1_all.ipk
|
||||||
Size: 6725
|
Size: 6728
|
||||||
|
|
||||||
Package: luci-app-magicmirror2
|
Package: luci-app-magicmirror2
|
||||||
Version: 0.4.0-r6
|
Version: 0.4.0-r6
|
||||||
@ -188,7 +188,7 @@ Architecture: all
|
|||||||
Installed-Size: 71680
|
Installed-Size: 71680
|
||||||
Description: Modern dashboard for MagicMirror2 smart display platform with module manager and SecuBox theme
|
Description: Modern dashboard for MagicMirror2 smart display platform with module manager and SecuBox theme
|
||||||
Filename: luci-app-magicmirror2_0.4.0-r6_all.ipk
|
Filename: luci-app-magicmirror2_0.4.0-r6_all.ipk
|
||||||
Size: 12277
|
Size: 12280
|
||||||
|
|
||||||
Package: luci-app-mailinabox
|
Package: luci-app-mailinabox
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -200,7 +200,7 @@ Architecture: all
|
|||||||
Installed-Size: 30720
|
Installed-Size: 30720
|
||||||
Description: LuCI support for Mail-in-a-Box
|
Description: LuCI support for Mail-in-a-Box
|
||||||
Filename: luci-app-mailinabox_1.0.0-r1_all.ipk
|
Filename: luci-app-mailinabox_1.0.0-r1_all.ipk
|
||||||
Size: 5481
|
Size: 5486
|
||||||
|
|
||||||
Package: luci-app-media-flow
|
Package: luci-app-media-flow
|
||||||
Version: 0.6.4-r1
|
Version: 0.6.4-r1
|
||||||
@ -212,19 +212,19 @@ Architecture: all
|
|||||||
Installed-Size: 102400
|
Installed-Size: 102400
|
||||||
Description: Real-time detection and monitoring of streaming services (Netflix, YouTube, Spotify, etc.) with quality estimation, history tracking, and alerts. Supports nDPId local DPI and netifyd.
|
Description: Real-time detection and monitoring of streaming services (Netflix, YouTube, Spotify, etc.) with quality estimation, history tracking, and alerts. Supports nDPId local DPI and netifyd.
|
||||||
Filename: luci-app-media-flow_0.6.4-r1_all.ipk
|
Filename: luci-app-media-flow_0.6.4-r1_all.ipk
|
||||||
Size: 19125
|
Size: 19124
|
||||||
|
|
||||||
Package: luci-app-metablogizer
|
Package: luci-app-metablogizer
|
||||||
Version: 1.0.0-r3
|
Version: 1.0.0-r5
|
||||||
Depends: luci-base, git
|
Depends: luci-base, git
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
Section: luci
|
Section: luci
|
||||||
Maintainer: OpenWrt LuCI community
|
Maintainer: OpenWrt LuCI community
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Installed-Size: 112640
|
Installed-Size: 122880
|
||||||
Description: LuCI support for MetaBlogizer Static Site Publisher
|
Description: LuCI support for MetaBlogizer Static Site Publisher
|
||||||
Filename: luci-app-metablogizer_1.0.0-r3_all.ipk
|
Filename: luci-app-metablogizer_1.0.0-r5_all.ipk
|
||||||
Size: 23505
|
Size: 23223
|
||||||
|
|
||||||
Package: luci-app-metabolizer
|
Package: luci-app-metabolizer
|
||||||
Version: 1.0.0-r2
|
Version: 1.0.0-r2
|
||||||
@ -236,7 +236,7 @@ Architecture: all
|
|||||||
Installed-Size: 30720
|
Installed-Size: 30720
|
||||||
Description: LuCI support for Metabolizer CMS
|
Description: LuCI support for Metabolizer CMS
|
||||||
Filename: luci-app-metabolizer_1.0.0-r2_all.ipk
|
Filename: luci-app-metabolizer_1.0.0-r2_all.ipk
|
||||||
Size: 4756
|
Size: 4759
|
||||||
|
|
||||||
Package: luci-app-mitmproxy
|
Package: luci-app-mitmproxy
|
||||||
Version: 0.5.0-r1
|
Version: 0.5.0-r1
|
||||||
@ -248,7 +248,7 @@ Architecture: all
|
|||||||
Installed-Size: 51200
|
Installed-Size: 51200
|
||||||
Description: Modern dashboard for mitmproxy HTTPS traffic inspection with SecuBox theme
|
Description: Modern dashboard for mitmproxy HTTPS traffic inspection with SecuBox theme
|
||||||
Filename: luci-app-mitmproxy_0.5.0-r1_all.ipk
|
Filename: luci-app-mitmproxy_0.5.0-r1_all.ipk
|
||||||
Size: 8554
|
Size: 8561
|
||||||
|
|
||||||
Package: luci-app-mmpm
|
Package: luci-app-mmpm
|
||||||
Version: 0.2.0-r3
|
Version: 0.2.0-r3
|
||||||
@ -260,7 +260,7 @@ Architecture: all
|
|||||||
Installed-Size: 51200
|
Installed-Size: 51200
|
||||||
Description: Web interface for MMPM - MagicMirror Package Manager
|
Description: Web interface for MMPM - MagicMirror Package Manager
|
||||||
Filename: luci-app-mmpm_0.2.0-r3_all.ipk
|
Filename: luci-app-mmpm_0.2.0-r3_all.ipk
|
||||||
Size: 7900
|
Size: 7903
|
||||||
|
|
||||||
Package: luci-app-mqtt-bridge
|
Package: luci-app-mqtt-bridge
|
||||||
Version: 0.4.0-r4
|
Version: 0.4.0-r4
|
||||||
@ -272,7 +272,7 @@ Architecture: all
|
|||||||
Installed-Size: 122880
|
Installed-Size: 122880
|
||||||
Description: USB-to-MQTT IoT hub with SecuBox theme
|
Description: USB-to-MQTT IoT hub with SecuBox theme
|
||||||
Filename: luci-app-mqtt-bridge_0.4.0-r4_all.ipk
|
Filename: luci-app-mqtt-bridge_0.4.0-r4_all.ipk
|
||||||
Size: 22774
|
Size: 22780
|
||||||
|
|
||||||
Package: luci-app-ndpid
|
Package: luci-app-ndpid
|
||||||
Version: 1.1.2-r2
|
Version: 1.1.2-r2
|
||||||
@ -284,7 +284,7 @@ Architecture: all
|
|||||||
Installed-Size: 122880
|
Installed-Size: 122880
|
||||||
Description: Modern dashboard for nDPId deep packet inspection on OpenWrt
|
Description: Modern dashboard for nDPId deep packet inspection on OpenWrt
|
||||||
Filename: luci-app-ndpid_1.1.2-r2_all.ipk
|
Filename: luci-app-ndpid_1.1.2-r2_all.ipk
|
||||||
Size: 22456
|
Size: 22457
|
||||||
|
|
||||||
Package: luci-app-netdata-dashboard
|
Package: luci-app-netdata-dashboard
|
||||||
Version: 0.5.0-r2
|
Version: 0.5.0-r2
|
||||||
@ -296,7 +296,7 @@ Architecture: all
|
|||||||
Installed-Size: 133120
|
Installed-Size: 133120
|
||||||
Description: Real-time system monitoring dashboard with Netdata integration for OpenWrt
|
Description: Real-time system monitoring dashboard with Netdata integration for OpenWrt
|
||||||
Filename: luci-app-netdata-dashboard_0.5.0-r2_all.ipk
|
Filename: luci-app-netdata-dashboard_0.5.0-r2_all.ipk
|
||||||
Size: 22401
|
Size: 22400
|
||||||
|
|
||||||
Package: luci-app-network-modes
|
Package: luci-app-network-modes
|
||||||
Version: 0.5.0-r3
|
Version: 0.5.0-r3
|
||||||
@ -308,7 +308,7 @@ Architecture: all
|
|||||||
Installed-Size: 307200
|
Installed-Size: 307200
|
||||||
Description: Configure OpenWrt for different network modes: Sniffer, Access Point, Relay, Router
|
Description: Configure OpenWrt for different network modes: Sniffer, Access Point, Relay, Router
|
||||||
Filename: luci-app-network-modes_0.5.0-r3_all.ipk
|
Filename: luci-app-network-modes_0.5.0-r3_all.ipk
|
||||||
Size: 55613
|
Size: 55612
|
||||||
|
|
||||||
Package: luci-app-network-tweaks
|
Package: luci-app-network-tweaks
|
||||||
Version: 1.0.0-r7
|
Version: 1.0.0-r7
|
||||||
@ -320,7 +320,7 @@ Architecture: all
|
|||||||
Installed-Size: 81920
|
Installed-Size: 81920
|
||||||
Description: Unified network services dashboard with DNS/hosts sync, CDN cache control, and WPAD auto-proxy configuration
|
Description: Unified network services dashboard with DNS/hosts sync, CDN cache control, and WPAD auto-proxy configuration
|
||||||
Filename: luci-app-network-tweaks_1.0.0-r7_all.ipk
|
Filename: luci-app-network-tweaks_1.0.0-r7_all.ipk
|
||||||
Size: 15461
|
Size: 15464
|
||||||
|
|
||||||
Package: luci-app-nextcloud
|
Package: luci-app-nextcloud
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -332,7 +332,7 @@ Architecture: all
|
|||||||
Installed-Size: 30720
|
Installed-Size: 30720
|
||||||
Description: LuCI support for Nextcloud
|
Description: LuCI support for Nextcloud
|
||||||
Filename: luci-app-nextcloud_1.0.0-r1_all.ipk
|
Filename: luci-app-nextcloud_1.0.0-r1_all.ipk
|
||||||
Size: 6484
|
Size: 6494
|
||||||
|
|
||||||
Package: luci-app-ollama
|
Package: luci-app-ollama
|
||||||
Version: 0.1.0-r1
|
Version: 0.1.0-r1
|
||||||
@ -344,7 +344,7 @@ Architecture: all
|
|||||||
Installed-Size: 71680
|
Installed-Size: 71680
|
||||||
Description: Modern dashboard for Ollama LLM management on OpenWrt
|
Description: Modern dashboard for Ollama LLM management on OpenWrt
|
||||||
Filename: luci-app-ollama_0.1.0-r1_all.ipk
|
Filename: luci-app-ollama_0.1.0-r1_all.ipk
|
||||||
Size: 11997
|
Size: 11993
|
||||||
|
|
||||||
Package: luci-app-picobrew
|
Package: luci-app-picobrew
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -356,7 +356,7 @@ Architecture: all
|
|||||||
Installed-Size: 51200
|
Installed-Size: 51200
|
||||||
Description: Modern dashboard for PicoBrew Server management on OpenWrt
|
Description: Modern dashboard for PicoBrew Server management on OpenWrt
|
||||||
Filename: luci-app-picobrew_1.0.0-r1_all.ipk
|
Filename: luci-app-picobrew_1.0.0-r1_all.ipk
|
||||||
Size: 9975
|
Size: 9979
|
||||||
|
|
||||||
Package: luci-app-secubox
|
Package: luci-app-secubox
|
||||||
Version: 0.7.1-r4
|
Version: 0.7.1-r4
|
||||||
@ -368,7 +368,7 @@ Architecture: all
|
|||||||
Installed-Size: 266240
|
Installed-Size: 266240
|
||||||
Description: Central control hub for all SecuBox modules. Provides unified dashboard, module status, system health monitoring, and quick actions.
|
Description: Central control hub for all SecuBox modules. Provides unified dashboard, module status, system health monitoring, and quick actions.
|
||||||
Filename: luci-app-secubox_0.7.1-r4_all.ipk
|
Filename: luci-app-secubox_0.7.1-r4_all.ipk
|
||||||
Size: 49901
|
Size: 49903
|
||||||
|
|
||||||
Package: luci-app-secubox-admin
|
Package: luci-app-secubox-admin
|
||||||
Version: 1.0.0-r19
|
Version: 1.0.0-r19
|
||||||
@ -379,7 +379,7 @@ Architecture: all
|
|||||||
Installed-Size: 337920
|
Installed-Size: 337920
|
||||||
Description: Unified admin control center for SecuBox appstore plugins with system monitoring
|
Description: Unified admin control center for SecuBox appstore plugins with system monitoring
|
||||||
Filename: luci-app-secubox-admin_1.0.0-r19_all.ipk
|
Filename: luci-app-secubox-admin_1.0.0-r19_all.ipk
|
||||||
Size: 57098
|
Size: 57100
|
||||||
|
|
||||||
Package: luci-app-secubox-crowdsec
|
Package: luci-app-secubox-crowdsec
|
||||||
Version: 1.0.0-r3
|
Version: 1.0.0-r3
|
||||||
@ -391,7 +391,7 @@ Architecture: all
|
|||||||
Installed-Size: 81920
|
Installed-Size: 81920
|
||||||
Description: LuCI SecuBox CrowdSec Dashboard
|
Description: LuCI SecuBox CrowdSec Dashboard
|
||||||
Filename: luci-app-secubox-crowdsec_1.0.0-r3_all.ipk
|
Filename: luci-app-secubox-crowdsec_1.0.0-r3_all.ipk
|
||||||
Size: 13919
|
Size: 13922
|
||||||
|
|
||||||
Package: luci-app-secubox-netdiag
|
Package: luci-app-secubox-netdiag
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -403,7 +403,7 @@ Architecture: all
|
|||||||
Installed-Size: 61440
|
Installed-Size: 61440
|
||||||
Description: Real-time DSA switch port statistics, error monitoring, and network health diagnostics
|
Description: Real-time DSA switch port statistics, error monitoring, and network health diagnostics
|
||||||
Filename: luci-app-secubox-netdiag_1.0.0-r1_all.ipk
|
Filename: luci-app-secubox-netdiag_1.0.0-r1_all.ipk
|
||||||
Size: 11992
|
Size: 12000
|
||||||
|
|
||||||
Package: luci-app-secubox-netifyd
|
Package: luci-app-secubox-netifyd
|
||||||
Version: 1.2.1-r1
|
Version: 1.2.1-r1
|
||||||
@ -415,7 +415,7 @@ Architecture: all
|
|||||||
Installed-Size: 215040
|
Installed-Size: 215040
|
||||||
Description: Complete LuCI interface for netifyd DPI engine with real-time flow monitoring, application detection, network analytics, and flow action plugins
|
Description: Complete LuCI interface for netifyd DPI engine with real-time flow monitoring, application detection, network analytics, and flow action plugins
|
||||||
Filename: luci-app-secubox-netifyd_1.2.1-r1_all.ipk
|
Filename: luci-app-secubox-netifyd_1.2.1-r1_all.ipk
|
||||||
Size: 39500
|
Size: 39498
|
||||||
|
|
||||||
Package: luci-app-secubox-p2p
|
Package: luci-app-secubox-p2p
|
||||||
Version: 0.1.0-r1
|
Version: 0.1.0-r1
|
||||||
@ -451,7 +451,7 @@ Architecture: all
|
|||||||
Installed-Size: 71680
|
Installed-Size: 71680
|
||||||
Description: Unified dashboard integrating netifyd DPI threats with CrowdSec intelligence for real-time threat monitoring and automated blocking
|
Description: Unified dashboard integrating netifyd DPI threats with CrowdSec intelligence for real-time threat monitoring and automated blocking
|
||||||
Filename: luci-app-secubox-security-threats_1.0.0-r4_all.ipk
|
Filename: luci-app-secubox-security-threats_1.0.0-r4_all.ipk
|
||||||
Size: 13903
|
Size: 13904
|
||||||
|
|
||||||
Package: luci-app-service-registry
|
Package: luci-app-service-registry
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -463,7 +463,7 @@ Architecture: all
|
|||||||
Installed-Size: 194560
|
Installed-Size: 194560
|
||||||
Description: Unified service aggregation with HAProxy vhosts, Tor hidden services, and QR-coded landing page
|
Description: Unified service aggregation with HAProxy vhosts, Tor hidden services, and QR-coded landing page
|
||||||
Filename: luci-app-service-registry_1.0.0-r1_all.ipk
|
Filename: luci-app-service-registry_1.0.0-r1_all.ipk
|
||||||
Size: 39826
|
Size: 39825
|
||||||
|
|
||||||
Package: luci-app-streamlit
|
Package: luci-app-streamlit
|
||||||
Version: 1.0.0-r11
|
Version: 1.0.0-r11
|
||||||
@ -499,7 +499,7 @@ Architecture: all
|
|||||||
Installed-Size: 133120
|
Installed-Size: 133120
|
||||||
Description: Modern dashboard for Tor anonymization on OpenWrt
|
Description: Modern dashboard for Tor anonymization on OpenWrt
|
||||||
Filename: luci-app-tor-shield_1.0.0-r10_all.ipk
|
Filename: luci-app-tor-shield_1.0.0-r10_all.ipk
|
||||||
Size: 24537
|
Size: 24536
|
||||||
|
|
||||||
Package: luci-app-traffic-shaper
|
Package: luci-app-traffic-shaper
|
||||||
Version: 0.4.0-r2
|
Version: 0.4.0-r2
|
||||||
@ -547,7 +547,7 @@ Architecture: all
|
|||||||
Installed-Size: 40960
|
Installed-Size: 40960
|
||||||
Description: Graphical interface for managing the Zigbee2MQTT docker application.
|
Description: Graphical interface for managing the Zigbee2MQTT docker application.
|
||||||
Filename: luci-app-zigbee2mqtt_1.0.0-r2_all.ipk
|
Filename: luci-app-zigbee2mqtt_1.0.0-r2_all.ipk
|
||||||
Size: 7087
|
Size: 7091
|
||||||
|
|
||||||
Package: luci-theme-secubox
|
Package: luci-theme-secubox
|
||||||
Version: 0.4.7-r1
|
Version: 0.4.7-r1
|
||||||
@ -559,7 +559,7 @@ Architecture: all
|
|||||||
Installed-Size: 460800
|
Installed-Size: 460800
|
||||||
Description: Global CyberMood design system (CSS/JS/i18n) shared by all SecuBox dashboards.
|
Description: Global CyberMood design system (CSS/JS/i18n) shared by all SecuBox dashboards.
|
||||||
Filename: luci-theme-secubox_0.4.7-r1_all.ipk
|
Filename: luci-theme-secubox_0.4.7-r1_all.ipk
|
||||||
Size: 111796
|
Size: 111797
|
||||||
|
|
||||||
Package: secubox-app
|
Package: secubox-app
|
||||||
Version: 1.0.0-r2
|
Version: 1.0.0-r2
|
||||||
@ -570,7 +570,7 @@ Installed-Size: 92160
|
|||||||
Description: Command line helper for SecuBox App Store manifests. Installs /usr/sbin/secubox-app
|
Description: Command line helper for SecuBox App Store manifests. Installs /usr/sbin/secubox-app
|
||||||
and ships the default manifests under /usr/share/secubox/plugins/.
|
and ships the default manifests under /usr/share/secubox/plugins/.
|
||||||
Filename: secubox-app_1.0.0-r2_all.ipk
|
Filename: secubox-app_1.0.0-r2_all.ipk
|
||||||
Size: 11184
|
Size: 11185
|
||||||
|
|
||||||
Package: secubox-app-adguardhome
|
Package: secubox-app-adguardhome
|
||||||
Version: 1.0.0-r2
|
Version: 1.0.0-r2
|
||||||
@ -602,7 +602,7 @@ Description: Logs authentication failures from LuCI/rpcd and Dropbear SSH
|
|||||||
- JavaScript hook to intercept login failures
|
- JavaScript hook to intercept login failures
|
||||||
- CrowdSec parser and bruteforce scenario
|
- CrowdSec parser and bruteforce scenario
|
||||||
Filename: secubox-app-auth-logger_1.2.2-r1_all.ipk
|
Filename: secubox-app-auth-logger_1.2.2-r1_all.ipk
|
||||||
Size: 9376
|
Size: 9379
|
||||||
|
|
||||||
Package: secubox-app-crowdsec-custom
|
Package: secubox-app-crowdsec-custom
|
||||||
Version: 1.1.0-r1
|
Version: 1.1.0-r1
|
||||||
@ -652,7 +652,7 @@ Description: SecuBox CrowdSec Firewall Bouncer for OpenWrt.
|
|||||||
- Automatic restart on firewall reload
|
- Automatic restart on firewall reload
|
||||||
- procd service management
|
- procd service management
|
||||||
Filename: secubox-app-cs-firewall-bouncer_0.0.31-r4_aarch64_cortex-a72.ipk
|
Filename: secubox-app-cs-firewall-bouncer_0.0.31-r4_aarch64_cortex-a72.ipk
|
||||||
Size: 5049325
|
Size: 5049324
|
||||||
|
|
||||||
Package: secubox-app-cyberfeed
|
Package: secubox-app-cyberfeed
|
||||||
Version: 0.2.1-r1
|
Version: 0.2.1-r1
|
||||||
@ -694,7 +694,7 @@ Description: Unified service exposure manager for SecuBox.
|
|||||||
- Dynamic Tor hidden service management
|
- Dynamic Tor hidden service management
|
||||||
- HAProxy SSL reverse proxy configuration
|
- HAProxy SSL reverse proxy configuration
|
||||||
Filename: secubox-app-exposure_1.0.0-r1_all.ipk
|
Filename: secubox-app-exposure_1.0.0-r1_all.ipk
|
||||||
Size: 6829
|
Size: 6831
|
||||||
|
|
||||||
Package: secubox-app-gitea
|
Package: secubox-app-gitea
|
||||||
Version: 1.0.0-r5
|
Version: 1.0.0-r5
|
||||||
@ -717,7 +717,7 @@ Description: Gitea Git Platform - Self-hosted lightweight Git service
|
|||||||
Runs in LXC container with Alpine Linux.
|
Runs in LXC container with Alpine Linux.
|
||||||
Configure in /etc/config/gitea.
|
Configure in /etc/config/gitea.
|
||||||
Filename: secubox-app-gitea_1.0.0-r5_all.ipk
|
Filename: secubox-app-gitea_1.0.0-r5_all.ipk
|
||||||
Size: 9405
|
Size: 9406
|
||||||
|
|
||||||
Package: secubox-app-glances
|
Package: secubox-app-glances
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -740,7 +740,7 @@ Description: Glances - Cross-platform system monitoring tool for SecuBox.
|
|||||||
Runs in LXC container for isolation and security.
|
Runs in LXC container for isolation and security.
|
||||||
Configure in /etc/config/glances.
|
Configure in /etc/config/glances.
|
||||||
Filename: secubox-app-glances_1.0.0-r1_all.ipk
|
Filename: secubox-app-glances_1.0.0-r1_all.ipk
|
||||||
Size: 5534
|
Size: 5535
|
||||||
|
|
||||||
Package: secubox-app-haproxy
|
Package: secubox-app-haproxy
|
||||||
Version: 1.0.0-r23
|
Version: 1.0.0-r23
|
||||||
@ -760,7 +760,7 @@ Description: HAProxy load balancer and reverse proxy running in an LXC containe
|
|||||||
- Stats dashboard
|
- Stats dashboard
|
||||||
- Rate limiting and ACLs
|
- Rate limiting and ACLs
|
||||||
Filename: secubox-app-haproxy_1.0.0-r23_all.ipk
|
Filename: secubox-app-haproxy_1.0.0-r23_all.ipk
|
||||||
Size: 15681
|
Size: 15682
|
||||||
|
|
||||||
Package: secubox-app-hexojs
|
Package: secubox-app-hexojs
|
||||||
Version: 1.0.0-r8
|
Version: 1.0.0-r8
|
||||||
@ -784,7 +784,7 @@ Description: Hexo CMS - Self-hosted static blog generator for OpenWrt
|
|||||||
Runs in LXC container with Alpine Linux.
|
Runs in LXC container with Alpine Linux.
|
||||||
Configure in /etc/config/hexojs.
|
Configure in /etc/config/hexojs.
|
||||||
Filename: secubox-app-hexojs_1.0.0-r8_all.ipk
|
Filename: secubox-app-hexojs_1.0.0-r8_all.ipk
|
||||||
Size: 94931
|
Size: 94937
|
||||||
|
|
||||||
Package: secubox-app-jitsi
|
Package: secubox-app-jitsi
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -831,7 +831,7 @@ Description: LocalAI native binary package for OpenWrt.
|
|||||||
|
|
||||||
API: http://<router-ip>:8081/v1
|
API: http://<router-ip>:8081/v1
|
||||||
Filename: secubox-app-localai_2.25.0-r1_all.ipk
|
Filename: secubox-app-localai_2.25.0-r1_all.ipk
|
||||||
Size: 5727
|
Size: 5714
|
||||||
|
|
||||||
Package: secubox-app-localai-wb
|
Package: secubox-app-localai-wb
|
||||||
Version: 2.25.0-r1
|
Version: 2.25.0-r1
|
||||||
@ -855,7 +855,7 @@ Description: LocalAI native binary package for OpenWrt.
|
|||||||
|
|
||||||
API: http://<router-ip>:8080/v1
|
API: http://<router-ip>:8080/v1
|
||||||
Filename: secubox-app-localai-wb_2.25.0-r1_all.ipk
|
Filename: secubox-app-localai-wb_2.25.0-r1_all.ipk
|
||||||
Size: 7949
|
Size: 7946
|
||||||
|
|
||||||
Package: secubox-app-lyrion
|
Package: secubox-app-lyrion
|
||||||
Version: 2.0.2-r1
|
Version: 2.0.2-r1
|
||||||
@ -875,7 +875,7 @@ Description: Lyrion Media Server (formerly Logitech Media Server / Squeezebox S
|
|||||||
Auto-detects available runtime, preferring LXC for lower resource usage.
|
Auto-detects available runtime, preferring LXC for lower resource usage.
|
||||||
Configure runtime in /etc/config/lyrion.
|
Configure runtime in /etc/config/lyrion.
|
||||||
Filename: secubox-app-lyrion_2.0.2-r1_all.ipk
|
Filename: secubox-app-lyrion_2.0.2-r1_all.ipk
|
||||||
Size: 7278
|
Size: 7282
|
||||||
|
|
||||||
Package: secubox-app-magicmirror2
|
Package: secubox-app-magicmirror2
|
||||||
Version: 0.4.0-r8
|
Version: 0.4.0-r8
|
||||||
@ -897,7 +897,7 @@ Description: MagicMirror² - Open source modular smart mirror platform for Secu
|
|||||||
Runs in LXC container for isolation and security.
|
Runs in LXC container for isolation and security.
|
||||||
Configure in /etc/config/magicmirror2.
|
Configure in /etc/config/magicmirror2.
|
||||||
Filename: secubox-app-magicmirror2_0.4.0-r8_all.ipk
|
Filename: secubox-app-magicmirror2_0.4.0-r8_all.ipk
|
||||||
Size: 9254
|
Size: 9251
|
||||||
|
|
||||||
Package: secubox-app-mailinabox
|
Package: secubox-app-mailinabox
|
||||||
Version: 2.0.0-r1
|
Version: 2.0.0-r1
|
||||||
@ -922,7 +922,7 @@ Description: Complete email server solution using docker-mailserver for SecuBox
|
|||||||
|
|
||||||
Commands: mailinaboxctl --help
|
Commands: mailinaboxctl --help
|
||||||
Filename: secubox-app-mailinabox_2.0.0-r1_all.ipk
|
Filename: secubox-app-mailinabox_2.0.0-r1_all.ipk
|
||||||
Size: 7571
|
Size: 7572
|
||||||
|
|
||||||
Package: secubox-app-metabolizer
|
Package: secubox-app-metabolizer
|
||||||
Version: 1.0.0-r3
|
Version: 1.0.0-r3
|
||||||
@ -943,7 +943,7 @@ Description: Metabolizer Blog Pipeline - Integrated CMS with Git-based workflow
|
|||||||
|
|
||||||
Pipeline: Edit in Streamlit -> Push to Gitea -> Build with Hexo -> Publish
|
Pipeline: Edit in Streamlit -> Push to Gitea -> Build with Hexo -> Publish
|
||||||
Filename: secubox-app-metabolizer_1.0.0-r3_all.ipk
|
Filename: secubox-app-metabolizer_1.0.0-r3_all.ipk
|
||||||
Size: 13978
|
Size: 13981
|
||||||
|
|
||||||
Package: secubox-app-mitmproxy
|
Package: secubox-app-mitmproxy
|
||||||
Version: 0.5.0-r19
|
Version: 0.5.0-r19
|
||||||
@ -970,7 +970,7 @@ Description: mitmproxy - Interactive HTTPS proxy for SecuBox-powered OpenWrt sy
|
|||||||
Runs in LXC container for isolation and security.
|
Runs in LXC container for isolation and security.
|
||||||
Configure in /etc/config/mitmproxy.
|
Configure in /etc/config/mitmproxy.
|
||||||
Filename: secubox-app-mitmproxy_0.5.0-r19_all.ipk
|
Filename: secubox-app-mitmproxy_0.5.0-r19_all.ipk
|
||||||
Size: 22114
|
Size: 22112
|
||||||
|
|
||||||
Package: secubox-app-mmpm
|
Package: secubox-app-mmpm
|
||||||
Version: 0.2.0-r5
|
Version: 0.2.0-r5
|
||||||
@ -991,7 +991,7 @@ Description: MMPM (MagicMirror Package Manager) for SecuBox.
|
|||||||
|
|
||||||
Runs inside the MagicMirror2 LXC container.
|
Runs inside the MagicMirror2 LXC container.
|
||||||
Filename: secubox-app-mmpm_0.2.0-r5_all.ipk
|
Filename: secubox-app-mmpm_0.2.0-r5_all.ipk
|
||||||
Size: 3980
|
Size: 3977
|
||||||
|
|
||||||
Package: secubox-app-nextcloud
|
Package: secubox-app-nextcloud
|
||||||
Version: 1.0.0-r2
|
Version: 1.0.0-r2
|
||||||
@ -1005,7 +1005,7 @@ Description: Installer, configuration, and service manager for running Nextclou
|
|||||||
inside Docker on SecuBox-powered OpenWrt systems. Self-hosted file
|
inside Docker on SecuBox-powered OpenWrt systems. Self-hosted file
|
||||||
sync and share with calendar, contacts, and collaboration.
|
sync and share with calendar, contacts, and collaboration.
|
||||||
Filename: secubox-app-nextcloud_1.0.0-r2_all.ipk
|
Filename: secubox-app-nextcloud_1.0.0-r2_all.ipk
|
||||||
Size: 2961
|
Size: 2957
|
||||||
|
|
||||||
Package: secubox-app-ollama
|
Package: secubox-app-ollama
|
||||||
Version: 0.1.0-r1
|
Version: 0.1.0-r1
|
||||||
@ -1027,7 +1027,7 @@ Description: Ollama - Simple local LLM runtime for SecuBox-powered OpenWrt syst
|
|||||||
Runs in Docker/Podman container.
|
Runs in Docker/Podman container.
|
||||||
Configure in /etc/config/ollama.
|
Configure in /etc/config/ollama.
|
||||||
Filename: secubox-app-ollama_0.1.0-r1_all.ipk
|
Filename: secubox-app-ollama_0.1.0-r1_all.ipk
|
||||||
Size: 5735
|
Size: 5734
|
||||||
|
|
||||||
Package: secubox-app-picobrew
|
Package: secubox-app-picobrew
|
||||||
Version: 1.0.0-r7
|
Version: 1.0.0-r7
|
||||||
@ -1049,7 +1049,7 @@ Description: PicoBrew Server - Self-hosted brewing controller for PicoBrew devi
|
|||||||
Runs in LXC container with Python/Flask backend.
|
Runs in LXC container with Python/Flask backend.
|
||||||
Configure in /etc/config/picobrew.
|
Configure in /etc/config/picobrew.
|
||||||
Filename: secubox-app-picobrew_1.0.0-r7_all.ipk
|
Filename: secubox-app-picobrew_1.0.0-r7_all.ipk
|
||||||
Size: 5539
|
Size: 5538
|
||||||
|
|
||||||
Package: secubox-app-streamlit
|
Package: secubox-app-streamlit
|
||||||
Version: 1.0.0-r5
|
Version: 1.0.0-r5
|
||||||
@ -1076,7 +1076,7 @@ Description: Streamlit App Platform - Self-hosted Python data app platform
|
|||||||
|
|
||||||
Configure in /etc/config/streamlit.
|
Configure in /etc/config/streamlit.
|
||||||
Filename: secubox-app-streamlit_1.0.0-r5_all.ipk
|
Filename: secubox-app-streamlit_1.0.0-r5_all.ipk
|
||||||
Size: 11720
|
Size: 11722
|
||||||
|
|
||||||
Package: secubox-app-tor
|
Package: secubox-app-tor
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -1099,7 +1099,7 @@ Description: SecuBox Tor Shield - One-click Tor anonymization for OpenWrt
|
|||||||
|
|
||||||
Configure in /etc/config/tor-shield.
|
Configure in /etc/config/tor-shield.
|
||||||
Filename: secubox-app-tor_1.0.0-r1_all.ipk
|
Filename: secubox-app-tor_1.0.0-r1_all.ipk
|
||||||
Size: 7382
|
Size: 7377
|
||||||
|
|
||||||
Package: secubox-app-webapp
|
Package: secubox-app-webapp
|
||||||
Version: 1.5.0-r7
|
Version: 1.5.0-r7
|
||||||
@ -1117,7 +1117,7 @@ Description: SecuBox Control Center Dashboard - A web-based dashboard for monit
|
|||||||
- Service management
|
- Service management
|
||||||
- Network interface control
|
- Network interface control
|
||||||
Filename: secubox-app-webapp_1.5.0-r7_all.ipk
|
Filename: secubox-app-webapp_1.5.0-r7_all.ipk
|
||||||
Size: 39169
|
Size: 39168
|
||||||
|
|
||||||
Package: secubox-app-zigbee2mqtt
|
Package: secubox-app-zigbee2mqtt
|
||||||
Version: 1.0.0-r3
|
Version: 1.0.0-r3
|
||||||
@ -1130,7 +1130,7 @@ Installed-Size: 20480
|
|||||||
Description: Installer, configuration, and service manager for running Zigbee2MQTT
|
Description: Installer, configuration, and service manager for running Zigbee2MQTT
|
||||||
inside Docker on SecuBox-powered OpenWrt systems.
|
inside Docker on SecuBox-powered OpenWrt systems.
|
||||||
Filename: secubox-app-zigbee2mqtt_1.0.0-r3_all.ipk
|
Filename: secubox-app-zigbee2mqtt_1.0.0-r3_all.ipk
|
||||||
Size: 3545
|
Size: 3551
|
||||||
|
|
||||||
Package: secubox-core
|
Package: secubox-core
|
||||||
Version: 0.10.0-r11
|
Version: 0.10.0-r11
|
||||||
@ -1169,5 +1169,5 @@ Description: SecuBox P2P Hub backend providing peer discovery, mesh networking
|
|||||||
and MirrorBox NetMesh Catalog for cross-chain distributed service
|
and MirrorBox NetMesh Catalog for cross-chain distributed service
|
||||||
registry with HAProxy vhost discovery and multi-endpoint access URLs.
|
registry with HAProxy vhost discovery and multi-endpoint access URLs.
|
||||||
Filename: secubox-p2p_0.6.0-r3_all.ipk
|
Filename: secubox-p2p_0.6.0-r3_all.ipk
|
||||||
Size: 42014
|
Size: 42015
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"feed_url": "/secubox-feed",
|
"feed_url": "/secubox-feed",
|
||||||
"generated": "2026-02-01T07:26:25+01:00",
|
"generated": "2026-02-01T08:10:15+01:00",
|
||||||
"packages": [
|
"packages": [
|
||||||
{
|
{
|
||||||
"name": "luci-app-auth-guardian",
|
"name": "luci-app-auth-guardian",
|
||||||
"version": "0.4.0-r3",
|
"version": "0.4.0-r3",
|
||||||
"filename": "luci-app-auth-guardian_0.4.0-r3_all.ipk",
|
"filename": "luci-app-auth-guardian_0.4.0-r3_all.ipk",
|
||||||
"size": 12078,
|
"size": 12080,
|
||||||
"category": "security",
|
"category": "security",
|
||||||
"icon": "key",
|
"icon": "key",
|
||||||
"description": "Authentication management",
|
"description": "Authentication management",
|
||||||
@ -18,7 +18,7 @@
|
|||||||
"name": "luci-app-bandwidth-manager",
|
"name": "luci-app-bandwidth-manager",
|
||||||
"version": "0.5.0-r2",
|
"version": "0.5.0-r2",
|
||||||
"filename": "luci-app-bandwidth-manager_0.5.0-r2_all.ipk",
|
"filename": "luci-app-bandwidth-manager_0.5.0-r2_all.ipk",
|
||||||
"size": 66969,
|
"size": 66970,
|
||||||
"category": "network",
|
"category": "network",
|
||||||
"icon": "activity",
|
"icon": "activity",
|
||||||
"description": "Bandwidth monitoring and control",
|
"description": "Bandwidth monitoring and control",
|
||||||
@ -30,7 +30,7 @@
|
|||||||
"name": "luci-app-cdn-cache",
|
"name": "luci-app-cdn-cache",
|
||||||
"version": "0.5.0-r3",
|
"version": "0.5.0-r3",
|
||||||
"filename": "luci-app-cdn-cache_0.5.0-r3_all.ipk",
|
"filename": "luci-app-cdn-cache_0.5.0-r3_all.ipk",
|
||||||
"size": 23192,
|
"size": 23190,
|
||||||
"category": "network",
|
"category": "network",
|
||||||
"icon": "globe",
|
"icon": "globe",
|
||||||
"description": "CDN caching",
|
"description": "CDN caching",
|
||||||
@ -42,7 +42,7 @@
|
|||||||
"name": "luci-app-client-guardian",
|
"name": "luci-app-client-guardian",
|
||||||
"version": "0.4.0-r7",
|
"version": "0.4.0-r7",
|
||||||
"filename": "luci-app-client-guardian_0.4.0-r7_all.ipk",
|
"filename": "luci-app-client-guardian_0.4.0-r7_all.ipk",
|
||||||
"size": 57042,
|
"size": 57044,
|
||||||
"category": "network",
|
"category": "network",
|
||||||
"icon": "users",
|
"icon": "users",
|
||||||
"description": "Client management and monitoring",
|
"description": "Client management and monitoring",
|
||||||
@ -102,7 +102,7 @@
|
|||||||
"name": "luci-app-glances",
|
"name": "luci-app-glances",
|
||||||
"version": "1.0.0-r2",
|
"version": "1.0.0-r2",
|
||||||
"filename": "luci-app-glances_1.0.0-r2_all.ipk",
|
"filename": "luci-app-glances_1.0.0-r2_all.ipk",
|
||||||
"size": 6966,
|
"size": 6965,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -126,7 +126,7 @@
|
|||||||
"name": "luci-app-hexojs",
|
"name": "luci-app-hexojs",
|
||||||
"version": "1.0.0-r3",
|
"version": "1.0.0-r3",
|
||||||
"filename": "luci-app-hexojs_1.0.0-r3_all.ipk",
|
"filename": "luci-app-hexojs_1.0.0-r3_all.ipk",
|
||||||
"size": 32975,
|
"size": 32976,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -138,7 +138,7 @@
|
|||||||
"name": "luci-app-jitsi",
|
"name": "luci-app-jitsi",
|
||||||
"version": "1.0.0-r1",
|
"version": "1.0.0-r1",
|
||||||
"filename": "luci-app-jitsi_1.0.0-r1_all.ipk",
|
"filename": "luci-app-jitsi_1.0.0-r1_all.ipk",
|
||||||
"size": 5138,
|
"size": 5133,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -150,7 +150,7 @@
|
|||||||
"name": "luci-app-ksm-manager",
|
"name": "luci-app-ksm-manager",
|
||||||
"version": "0.4.0-r2",
|
"version": "0.4.0-r2",
|
||||||
"filename": "luci-app-ksm-manager_0.4.0-r2_all.ipk",
|
"filename": "luci-app-ksm-manager_0.4.0-r2_all.ipk",
|
||||||
"size": 18723,
|
"size": 18719,
|
||||||
"category": "system",
|
"category": "system",
|
||||||
"icon": "cpu",
|
"icon": "cpu",
|
||||||
"description": "Kernel memory management",
|
"description": "Kernel memory management",
|
||||||
@ -162,7 +162,7 @@
|
|||||||
"name": "luci-app-localai",
|
"name": "luci-app-localai",
|
||||||
"version": "0.1.0-r15",
|
"version": "0.1.0-r15",
|
||||||
"filename": "luci-app-localai_0.1.0-r15_all.ipk",
|
"filename": "luci-app-localai_0.1.0-r15_all.ipk",
|
||||||
"size": 14362,
|
"size": 14365,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -174,7 +174,7 @@
|
|||||||
"name": "luci-app-lyrion",
|
"name": "luci-app-lyrion",
|
||||||
"version": "1.0.0-r1",
|
"version": "1.0.0-r1",
|
||||||
"filename": "luci-app-lyrion_1.0.0-r1_all.ipk",
|
"filename": "luci-app-lyrion_1.0.0-r1_all.ipk",
|
||||||
"size": 6725,
|
"size": 6728,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -186,7 +186,7 @@
|
|||||||
"name": "luci-app-magicmirror2",
|
"name": "luci-app-magicmirror2",
|
||||||
"version": "0.4.0-r6",
|
"version": "0.4.0-r6",
|
||||||
"filename": "luci-app-magicmirror2_0.4.0-r6_all.ipk",
|
"filename": "luci-app-magicmirror2_0.4.0-r6_all.ipk",
|
||||||
"size": 12277,
|
"size": 12280,
|
||||||
"category": "iot",
|
"category": "iot",
|
||||||
"icon": "monitor",
|
"icon": "monitor",
|
||||||
"description": "Smart mirror display",
|
"description": "Smart mirror display",
|
||||||
@ -198,7 +198,7 @@
|
|||||||
"name": "luci-app-mailinabox",
|
"name": "luci-app-mailinabox",
|
||||||
"version": "1.0.0-r1",
|
"version": "1.0.0-r1",
|
||||||
"filename": "luci-app-mailinabox_1.0.0-r1_all.ipk",
|
"filename": "luci-app-mailinabox_1.0.0-r1_all.ipk",
|
||||||
"size": 5481,
|
"size": 5486,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -210,7 +210,7 @@
|
|||||||
"name": "luci-app-media-flow",
|
"name": "luci-app-media-flow",
|
||||||
"version": "0.6.4-r1",
|
"version": "0.6.4-r1",
|
||||||
"filename": "luci-app-media-flow_0.6.4-r1_all.ipk",
|
"filename": "luci-app-media-flow_0.6.4-r1_all.ipk",
|
||||||
"size": 19125,
|
"size": 19124,
|
||||||
"category": "media",
|
"category": "media",
|
||||||
"icon": "film",
|
"icon": "film",
|
||||||
"description": "Media streaming",
|
"description": "Media streaming",
|
||||||
@ -220,9 +220,9 @@
|
|||||||
,
|
,
|
||||||
{
|
{
|
||||||
"name": "luci-app-metablogizer",
|
"name": "luci-app-metablogizer",
|
||||||
"version": "1.0.0-r3",
|
"version": "1.0.0-r5",
|
||||||
"filename": "luci-app-metablogizer_1.0.0-r3_all.ipk",
|
"filename": "luci-app-metablogizer_1.0.0-r5_all.ipk",
|
||||||
"size": 23505,
|
"size": 23223,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -234,7 +234,7 @@
|
|||||||
"name": "luci-app-metabolizer",
|
"name": "luci-app-metabolizer",
|
||||||
"version": "1.0.0-r2",
|
"version": "1.0.0-r2",
|
||||||
"filename": "luci-app-metabolizer_1.0.0-r2_all.ipk",
|
"filename": "luci-app-metabolizer_1.0.0-r2_all.ipk",
|
||||||
"size": 4756,
|
"size": 4759,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -246,7 +246,7 @@
|
|||||||
"name": "luci-app-mitmproxy",
|
"name": "luci-app-mitmproxy",
|
||||||
"version": "0.5.0-r1",
|
"version": "0.5.0-r1",
|
||||||
"filename": "luci-app-mitmproxy_0.5.0-r1_all.ipk",
|
"filename": "luci-app-mitmproxy_0.5.0-r1_all.ipk",
|
||||||
"size": 8554,
|
"size": 8561,
|
||||||
"category": "security",
|
"category": "security",
|
||||||
"icon": "lock",
|
"icon": "lock",
|
||||||
"description": "HTTPS proxy and traffic inspection",
|
"description": "HTTPS proxy and traffic inspection",
|
||||||
@ -258,7 +258,7 @@
|
|||||||
"name": "luci-app-mmpm",
|
"name": "luci-app-mmpm",
|
||||||
"version": "0.2.0-r3",
|
"version": "0.2.0-r3",
|
||||||
"filename": "luci-app-mmpm_0.2.0-r3_all.ipk",
|
"filename": "luci-app-mmpm_0.2.0-r3_all.ipk",
|
||||||
"size": 7900,
|
"size": 7903,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -270,7 +270,7 @@
|
|||||||
"name": "luci-app-mqtt-bridge",
|
"name": "luci-app-mqtt-bridge",
|
||||||
"version": "0.4.0-r4",
|
"version": "0.4.0-r4",
|
||||||
"filename": "luci-app-mqtt-bridge_0.4.0-r4_all.ipk",
|
"filename": "luci-app-mqtt-bridge_0.4.0-r4_all.ipk",
|
||||||
"size": 22774,
|
"size": 22780,
|
||||||
"category": "iot",
|
"category": "iot",
|
||||||
"icon": "message-square",
|
"icon": "message-square",
|
||||||
"description": "MQTT bridge",
|
"description": "MQTT bridge",
|
||||||
@ -282,7 +282,7 @@
|
|||||||
"name": "luci-app-ndpid",
|
"name": "luci-app-ndpid",
|
||||||
"version": "1.1.2-r2",
|
"version": "1.1.2-r2",
|
||||||
"filename": "luci-app-ndpid_1.1.2-r2_all.ipk",
|
"filename": "luci-app-ndpid_1.1.2-r2_all.ipk",
|
||||||
"size": 22456,
|
"size": 22457,
|
||||||
"category": "security",
|
"category": "security",
|
||||||
"icon": "eye",
|
"icon": "eye",
|
||||||
"description": "Deep packet inspection",
|
"description": "Deep packet inspection",
|
||||||
@ -294,7 +294,7 @@
|
|||||||
"name": "luci-app-netdata-dashboard",
|
"name": "luci-app-netdata-dashboard",
|
||||||
"version": "0.5.0-r2",
|
"version": "0.5.0-r2",
|
||||||
"filename": "luci-app-netdata-dashboard_0.5.0-r2_all.ipk",
|
"filename": "luci-app-netdata-dashboard_0.5.0-r2_all.ipk",
|
||||||
"size": 22401,
|
"size": 22400,
|
||||||
"category": "monitoring",
|
"category": "monitoring",
|
||||||
"icon": "bar-chart-2",
|
"icon": "bar-chart-2",
|
||||||
"description": "System monitoring dashboard",
|
"description": "System monitoring dashboard",
|
||||||
@ -306,7 +306,7 @@
|
|||||||
"name": "luci-app-network-modes",
|
"name": "luci-app-network-modes",
|
||||||
"version": "0.5.0-r3",
|
"version": "0.5.0-r3",
|
||||||
"filename": "luci-app-network-modes_0.5.0-r3_all.ipk",
|
"filename": "luci-app-network-modes_0.5.0-r3_all.ipk",
|
||||||
"size": 55613,
|
"size": 55612,
|
||||||
"category": "network",
|
"category": "network",
|
||||||
"icon": "wifi",
|
"icon": "wifi",
|
||||||
"description": "Network configuration",
|
"description": "Network configuration",
|
||||||
@ -318,7 +318,7 @@
|
|||||||
"name": "luci-app-network-tweaks",
|
"name": "luci-app-network-tweaks",
|
||||||
"version": "1.0.0-r7",
|
"version": "1.0.0-r7",
|
||||||
"filename": "luci-app-network-tweaks_1.0.0-r7_all.ipk",
|
"filename": "luci-app-network-tweaks_1.0.0-r7_all.ipk",
|
||||||
"size": 15461,
|
"size": 15464,
|
||||||
"category": "network",
|
"category": "network",
|
||||||
"icon": "wifi",
|
"icon": "wifi",
|
||||||
"description": "Network configuration",
|
"description": "Network configuration",
|
||||||
@ -330,7 +330,7 @@
|
|||||||
"name": "luci-app-nextcloud",
|
"name": "luci-app-nextcloud",
|
||||||
"version": "1.0.0-r1",
|
"version": "1.0.0-r1",
|
||||||
"filename": "luci-app-nextcloud_1.0.0-r1_all.ipk",
|
"filename": "luci-app-nextcloud_1.0.0-r1_all.ipk",
|
||||||
"size": 6484,
|
"size": 6494,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -342,7 +342,7 @@
|
|||||||
"name": "luci-app-ollama",
|
"name": "luci-app-ollama",
|
||||||
"version": "0.1.0-r1",
|
"version": "0.1.0-r1",
|
||||||
"filename": "luci-app-ollama_0.1.0-r1_all.ipk",
|
"filename": "luci-app-ollama_0.1.0-r1_all.ipk",
|
||||||
"size": 11997,
|
"size": 11993,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -354,7 +354,7 @@
|
|||||||
"name": "luci-app-picobrew",
|
"name": "luci-app-picobrew",
|
||||||
"version": "1.0.0-r1",
|
"version": "1.0.0-r1",
|
||||||
"filename": "luci-app-picobrew_1.0.0-r1_all.ipk",
|
"filename": "luci-app-picobrew_1.0.0-r1_all.ipk",
|
||||||
"size": 9975,
|
"size": 9979,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -366,7 +366,7 @@
|
|||||||
"name": "luci-app-secubox",
|
"name": "luci-app-secubox",
|
||||||
"version": "0.7.1-r4",
|
"version": "0.7.1-r4",
|
||||||
"filename": "luci-app-secubox_0.7.1-r4_all.ipk",
|
"filename": "luci-app-secubox_0.7.1-r4_all.ipk",
|
||||||
"size": 49901,
|
"size": 49903,
|
||||||
"category": "system",
|
"category": "system",
|
||||||
"icon": "box",
|
"icon": "box",
|
||||||
"description": "SecuBox system component",
|
"description": "SecuBox system component",
|
||||||
@ -378,7 +378,7 @@
|
|||||||
"name": "luci-app-secubox-admin",
|
"name": "luci-app-secubox-admin",
|
||||||
"version": "1.0.0-r19",
|
"version": "1.0.0-r19",
|
||||||
"filename": "luci-app-secubox-admin_1.0.0-r19_all.ipk",
|
"filename": "luci-app-secubox-admin_1.0.0-r19_all.ipk",
|
||||||
"size": 57098,
|
"size": 57100,
|
||||||
"category": "system",
|
"category": "system",
|
||||||
"icon": "box",
|
"icon": "box",
|
||||||
"description": "SecuBox system component",
|
"description": "SecuBox system component",
|
||||||
@ -390,7 +390,7 @@
|
|||||||
"name": "luci-app-secubox-crowdsec",
|
"name": "luci-app-secubox-crowdsec",
|
||||||
"version": "1.0.0-r3",
|
"version": "1.0.0-r3",
|
||||||
"filename": "luci-app-secubox-crowdsec_1.0.0-r3_all.ipk",
|
"filename": "luci-app-secubox-crowdsec_1.0.0-r3_all.ipk",
|
||||||
"size": 13919,
|
"size": 13922,
|
||||||
"category": "system",
|
"category": "system",
|
||||||
"icon": "box",
|
"icon": "box",
|
||||||
"description": "SecuBox system component",
|
"description": "SecuBox system component",
|
||||||
@ -402,7 +402,7 @@
|
|||||||
"name": "luci-app-secubox-netdiag",
|
"name": "luci-app-secubox-netdiag",
|
||||||
"version": "1.0.0-r1",
|
"version": "1.0.0-r1",
|
||||||
"filename": "luci-app-secubox-netdiag_1.0.0-r1_all.ipk",
|
"filename": "luci-app-secubox-netdiag_1.0.0-r1_all.ipk",
|
||||||
"size": 11992,
|
"size": 12000,
|
||||||
"category": "system",
|
"category": "system",
|
||||||
"icon": "box",
|
"icon": "box",
|
||||||
"description": "SecuBox system component",
|
"description": "SecuBox system component",
|
||||||
@ -414,7 +414,7 @@
|
|||||||
"name": "luci-app-secubox-netifyd",
|
"name": "luci-app-secubox-netifyd",
|
||||||
"version": "1.2.1-r1",
|
"version": "1.2.1-r1",
|
||||||
"filename": "luci-app-secubox-netifyd_1.2.1-r1_all.ipk",
|
"filename": "luci-app-secubox-netifyd_1.2.1-r1_all.ipk",
|
||||||
"size": 39500,
|
"size": 39498,
|
||||||
"category": "system",
|
"category": "system",
|
||||||
"icon": "box",
|
"icon": "box",
|
||||||
"description": "SecuBox system component",
|
"description": "SecuBox system component",
|
||||||
@ -450,7 +450,7 @@
|
|||||||
"name": "luci-app-secubox-security-threats",
|
"name": "luci-app-secubox-security-threats",
|
||||||
"version": "1.0.0-r4",
|
"version": "1.0.0-r4",
|
||||||
"filename": "luci-app-secubox-security-threats_1.0.0-r4_all.ipk",
|
"filename": "luci-app-secubox-security-threats_1.0.0-r4_all.ipk",
|
||||||
"size": 13903,
|
"size": 13904,
|
||||||
"category": "system",
|
"category": "system",
|
||||||
"icon": "box",
|
"icon": "box",
|
||||||
"description": "SecuBox system component",
|
"description": "SecuBox system component",
|
||||||
@ -462,7 +462,7 @@
|
|||||||
"name": "luci-app-service-registry",
|
"name": "luci-app-service-registry",
|
||||||
"version": "1.0.0-r1",
|
"version": "1.0.0-r1",
|
||||||
"filename": "luci-app-service-registry_1.0.0-r1_all.ipk",
|
"filename": "luci-app-service-registry_1.0.0-r1_all.ipk",
|
||||||
"size": 39826,
|
"size": 39825,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -498,7 +498,7 @@
|
|||||||
"name": "luci-app-tor-shield",
|
"name": "luci-app-tor-shield",
|
||||||
"version": "1.0.0-r10",
|
"version": "1.0.0-r10",
|
||||||
"filename": "luci-app-tor-shield_1.0.0-r10_all.ipk",
|
"filename": "luci-app-tor-shield_1.0.0-r10_all.ipk",
|
||||||
"size": 24537,
|
"size": 24536,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -546,7 +546,7 @@
|
|||||||
"name": "luci-app-zigbee2mqtt",
|
"name": "luci-app-zigbee2mqtt",
|
||||||
"version": "1.0.0-r2",
|
"version": "1.0.0-r2",
|
||||||
"filename": "luci-app-zigbee2mqtt_1.0.0-r2_all.ipk",
|
"filename": "luci-app-zigbee2mqtt_1.0.0-r2_all.ipk",
|
||||||
"size": 7087,
|
"size": 7091,
|
||||||
"category": "iot",
|
"category": "iot",
|
||||||
"icon": "radio",
|
"icon": "radio",
|
||||||
"description": "Zigbee device management",
|
"description": "Zigbee device management",
|
||||||
@ -558,7 +558,7 @@
|
|||||||
"name": "luci-theme-secubox",
|
"name": "luci-theme-secubox",
|
||||||
"version": "0.4.7-r1",
|
"version": "0.4.7-r1",
|
||||||
"filename": "luci-theme-secubox_0.4.7-r1_all.ipk",
|
"filename": "luci-theme-secubox_0.4.7-r1_all.ipk",
|
||||||
"size": 111796,
|
"size": 111797,
|
||||||
"category": "theme",
|
"category": "theme",
|
||||||
"icon": "palette",
|
"icon": "palette",
|
||||||
"description": "LuCI theme",
|
"description": "LuCI theme",
|
||||||
@ -570,7 +570,7 @@
|
|||||||
"name": "secubox-app",
|
"name": "secubox-app",
|
||||||
"version": "1.0.0-r2",
|
"version": "1.0.0-r2",
|
||||||
"filename": "secubox-app_1.0.0-r2_all.ipk",
|
"filename": "secubox-app_1.0.0-r2_all.ipk",
|
||||||
"size": 11184,
|
"size": 11185,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -594,7 +594,7 @@
|
|||||||
"name": "secubox-app-auth-logger",
|
"name": "secubox-app-auth-logger",
|
||||||
"version": "1.2.2-r1",
|
"version": "1.2.2-r1",
|
||||||
"filename": "secubox-app-auth-logger_1.2.2-r1_all.ipk",
|
"filename": "secubox-app-auth-logger_1.2.2-r1_all.ipk",
|
||||||
"size": 9376,
|
"size": 9379,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -618,7 +618,7 @@
|
|||||||
"name": "secubox-app-cs-firewall-bouncer",
|
"name": "secubox-app-cs-firewall-bouncer",
|
||||||
"version": "0.0.31-r4_aarch64",
|
"version": "0.0.31-r4_aarch64",
|
||||||
"filename": "secubox-app-cs-firewall-bouncer_0.0.31-r4_aarch64_cortex-a72.ipk",
|
"filename": "secubox-app-cs-firewall-bouncer_0.0.31-r4_aarch64_cortex-a72.ipk",
|
||||||
"size": 5049325,
|
"size": 5049324,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -654,7 +654,7 @@
|
|||||||
"name": "secubox-app-exposure",
|
"name": "secubox-app-exposure",
|
||||||
"version": "1.0.0-r1",
|
"version": "1.0.0-r1",
|
||||||
"filename": "secubox-app-exposure_1.0.0-r1_all.ipk",
|
"filename": "secubox-app-exposure_1.0.0-r1_all.ipk",
|
||||||
"size": 6829,
|
"size": 6831,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -666,7 +666,7 @@
|
|||||||
"name": "secubox-app-gitea",
|
"name": "secubox-app-gitea",
|
||||||
"version": "1.0.0-r5",
|
"version": "1.0.0-r5",
|
||||||
"filename": "secubox-app-gitea_1.0.0-r5_all.ipk",
|
"filename": "secubox-app-gitea_1.0.0-r5_all.ipk",
|
||||||
"size": 9405,
|
"size": 9406,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -678,7 +678,7 @@
|
|||||||
"name": "secubox-app-glances",
|
"name": "secubox-app-glances",
|
||||||
"version": "1.0.0-r1",
|
"version": "1.0.0-r1",
|
||||||
"filename": "secubox-app-glances_1.0.0-r1_all.ipk",
|
"filename": "secubox-app-glances_1.0.0-r1_all.ipk",
|
||||||
"size": 5534,
|
"size": 5535,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -690,7 +690,7 @@
|
|||||||
"name": "secubox-app-haproxy",
|
"name": "secubox-app-haproxy",
|
||||||
"version": "1.0.0-r23",
|
"version": "1.0.0-r23",
|
||||||
"filename": "secubox-app-haproxy_1.0.0-r23_all.ipk",
|
"filename": "secubox-app-haproxy_1.0.0-r23_all.ipk",
|
||||||
"size": 15681,
|
"size": 15682,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -702,7 +702,7 @@
|
|||||||
"name": "secubox-app-hexojs",
|
"name": "secubox-app-hexojs",
|
||||||
"version": "1.0.0-r8",
|
"version": "1.0.0-r8",
|
||||||
"filename": "secubox-app-hexojs_1.0.0-r8_all.ipk",
|
"filename": "secubox-app-hexojs_1.0.0-r8_all.ipk",
|
||||||
"size": 94931,
|
"size": 94937,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -726,7 +726,7 @@
|
|||||||
"name": "secubox-app-localai",
|
"name": "secubox-app-localai",
|
||||||
"version": "2.25.0-r1",
|
"version": "2.25.0-r1",
|
||||||
"filename": "secubox-app-localai_2.25.0-r1_all.ipk",
|
"filename": "secubox-app-localai_2.25.0-r1_all.ipk",
|
||||||
"size": 5727,
|
"size": 5714,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -738,7 +738,7 @@
|
|||||||
"name": "secubox-app-localai-wb",
|
"name": "secubox-app-localai-wb",
|
||||||
"version": "2.25.0-r1",
|
"version": "2.25.0-r1",
|
||||||
"filename": "secubox-app-localai-wb_2.25.0-r1_all.ipk",
|
"filename": "secubox-app-localai-wb_2.25.0-r1_all.ipk",
|
||||||
"size": 7949,
|
"size": 7946,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -750,7 +750,7 @@
|
|||||||
"name": "secubox-app-lyrion",
|
"name": "secubox-app-lyrion",
|
||||||
"version": "2.0.2-r1",
|
"version": "2.0.2-r1",
|
||||||
"filename": "secubox-app-lyrion_2.0.2-r1_all.ipk",
|
"filename": "secubox-app-lyrion_2.0.2-r1_all.ipk",
|
||||||
"size": 7278,
|
"size": 7282,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -762,7 +762,7 @@
|
|||||||
"name": "secubox-app-magicmirror2",
|
"name": "secubox-app-magicmirror2",
|
||||||
"version": "0.4.0-r8",
|
"version": "0.4.0-r8",
|
||||||
"filename": "secubox-app-magicmirror2_0.4.0-r8_all.ipk",
|
"filename": "secubox-app-magicmirror2_0.4.0-r8_all.ipk",
|
||||||
"size": 9254,
|
"size": 9251,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -774,7 +774,7 @@
|
|||||||
"name": "secubox-app-mailinabox",
|
"name": "secubox-app-mailinabox",
|
||||||
"version": "2.0.0-r1",
|
"version": "2.0.0-r1",
|
||||||
"filename": "secubox-app-mailinabox_2.0.0-r1_all.ipk",
|
"filename": "secubox-app-mailinabox_2.0.0-r1_all.ipk",
|
||||||
"size": 7571,
|
"size": 7572,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -786,7 +786,7 @@
|
|||||||
"name": "secubox-app-metabolizer",
|
"name": "secubox-app-metabolizer",
|
||||||
"version": "1.0.0-r3",
|
"version": "1.0.0-r3",
|
||||||
"filename": "secubox-app-metabolizer_1.0.0-r3_all.ipk",
|
"filename": "secubox-app-metabolizer_1.0.0-r3_all.ipk",
|
||||||
"size": 13978,
|
"size": 13981,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -798,7 +798,7 @@
|
|||||||
"name": "secubox-app-mitmproxy",
|
"name": "secubox-app-mitmproxy",
|
||||||
"version": "0.5.0-r19",
|
"version": "0.5.0-r19",
|
||||||
"filename": "secubox-app-mitmproxy_0.5.0-r19_all.ipk",
|
"filename": "secubox-app-mitmproxy_0.5.0-r19_all.ipk",
|
||||||
"size": 22114,
|
"size": 22112,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -810,7 +810,7 @@
|
|||||||
"name": "secubox-app-mmpm",
|
"name": "secubox-app-mmpm",
|
||||||
"version": "0.2.0-r5",
|
"version": "0.2.0-r5",
|
||||||
"filename": "secubox-app-mmpm_0.2.0-r5_all.ipk",
|
"filename": "secubox-app-mmpm_0.2.0-r5_all.ipk",
|
||||||
"size": 3980,
|
"size": 3977,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -822,7 +822,7 @@
|
|||||||
"name": "secubox-app-nextcloud",
|
"name": "secubox-app-nextcloud",
|
||||||
"version": "1.0.0-r2",
|
"version": "1.0.0-r2",
|
||||||
"filename": "secubox-app-nextcloud_1.0.0-r2_all.ipk",
|
"filename": "secubox-app-nextcloud_1.0.0-r2_all.ipk",
|
||||||
"size": 2961,
|
"size": 2957,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -834,7 +834,7 @@
|
|||||||
"name": "secubox-app-ollama",
|
"name": "secubox-app-ollama",
|
||||||
"version": "0.1.0-r1",
|
"version": "0.1.0-r1",
|
||||||
"filename": "secubox-app-ollama_0.1.0-r1_all.ipk",
|
"filename": "secubox-app-ollama_0.1.0-r1_all.ipk",
|
||||||
"size": 5735,
|
"size": 5734,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -846,7 +846,7 @@
|
|||||||
"name": "secubox-app-picobrew",
|
"name": "secubox-app-picobrew",
|
||||||
"version": "1.0.0-r7",
|
"version": "1.0.0-r7",
|
||||||
"filename": "secubox-app-picobrew_1.0.0-r7_all.ipk",
|
"filename": "secubox-app-picobrew_1.0.0-r7_all.ipk",
|
||||||
"size": 5539,
|
"size": 5538,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -858,7 +858,7 @@
|
|||||||
"name": "secubox-app-streamlit",
|
"name": "secubox-app-streamlit",
|
||||||
"version": "1.0.0-r5",
|
"version": "1.0.0-r5",
|
||||||
"filename": "secubox-app-streamlit_1.0.0-r5_all.ipk",
|
"filename": "secubox-app-streamlit_1.0.0-r5_all.ipk",
|
||||||
"size": 11720,
|
"size": 11722,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -870,7 +870,7 @@
|
|||||||
"name": "secubox-app-tor",
|
"name": "secubox-app-tor",
|
||||||
"version": "1.0.0-r1",
|
"version": "1.0.0-r1",
|
||||||
"filename": "secubox-app-tor_1.0.0-r1_all.ipk",
|
"filename": "secubox-app-tor_1.0.0-r1_all.ipk",
|
||||||
"size": 7382,
|
"size": 7377,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -882,7 +882,7 @@
|
|||||||
"name": "secubox-app-webapp",
|
"name": "secubox-app-webapp",
|
||||||
"version": "1.5.0-r7",
|
"version": "1.5.0-r7",
|
||||||
"filename": "secubox-app-webapp_1.5.0-r7_all.ipk",
|
"filename": "secubox-app-webapp_1.5.0-r7_all.ipk",
|
||||||
"size": 39169,
|
"size": 39168,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -894,7 +894,7 @@
|
|||||||
"name": "secubox-app-zigbee2mqtt",
|
"name": "secubox-app-zigbee2mqtt",
|
||||||
"version": "1.0.0-r3",
|
"version": "1.0.0-r3",
|
||||||
"filename": "secubox-app-zigbee2mqtt_1.0.0-r3_all.ipk",
|
"filename": "secubox-app-zigbee2mqtt_1.0.0-r3_all.ipk",
|
||||||
"size": 3545,
|
"size": 3551,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -918,7 +918,7 @@
|
|||||||
"name": "secubox-p2p",
|
"name": "secubox-p2p",
|
||||||
"version": "0.6.0-r3",
|
"version": "0.6.0-r3",
|
||||||
"filename": "secubox-p2p_0.6.0-r3_all.ipk",
|
"filename": "secubox-p2p_0.6.0-r3_all.ipk",
|
||||||
"size": 42014,
|
"size": 42015,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue
Block a user