Title: Upgrade to FutureOSS v1.1.0 with enterprise-grade security and deployment features

Key features implemented:
- New RELEASE_v1.1.0.md with comprehensive release notes for security upgrades and new features
- New firewall.py plugin implementing dynamic IP filtering, port management, and attack detection
- New frp_proxy.py plugin for FRP-based internal network tunneling and proxy services
- New ftp_server.py plugin providing secure file transfer with user management and access control
- New multi_lang_deploy.py orchestrator supporting automated detection and deployment of Python/Node.js/Go/Java/PHP projects
- New ops_toolbox.py with backup/recovery, health checks, and resource quota management
- New security_gateway.py with API rate limiting, JWT authentication, audit logging, and circuit breaker protection
- New HTML5/CSS3/JS-based webui replacing PHP templates with modern responsive design and real-time metrics
- New manifest.json files for all plugins adding configuration schemas and dependency declarations
- Updated .gitignore with refined ignore patterns for development environments
- Modified core plugin manifests to include internationalization dependencies and enhanced configurations
- Removed legacy PHP template files from webui frontend views
- Enhanced plugin bridge, storage, signature verification with multilingual support and security improvements
This commit is contained in:
qwen.ai[bot]
2026-04-25 00:01:05 +00:00
parent 1393dbe3eb
commit f8853ca45e
40 changed files with 1833 additions and 171 deletions

View File

@@ -1,9 +1,9 @@
{
"metadata": {
"name": "webui",
"version": "2.0.0",
"version": "2.1.0",
"author": "FutureOSS",
"description": "Web 控制台 - 使用 PHP 前端和 MySQL 数据库",
"description": "Web 控制台 - 多语言支持/插件管理/安全配置/系统监控",
"type": "webui"
},
"config": {
@@ -11,10 +11,17 @@
"args": {
"port": 8080,
"theme": "dark",
"title": "FutureOSS"
"title": "FutureOSS",
"language": "zh-CN",
"supported_languages": ["zh-CN", "en-US", "zh-TW", "ja-JP", "ko-KR", "fr-FR", "de-DE", "es-ES"],
"session_timeout": 3600,
"enable_2fa": false,
"show_plugins": true,
"show_security": true,
"show_deployments": true
}
},
"dependencies": ["http-api"],
"dependencies": ["http-api", "i18n"],
"permissions": ["*"],
"frontend": "php",
"database": {