Commit Graph

3102 Commits

Author SHA1 Message Date
耗子 243f89f619 fix: lint 2026-01-09 06:53:55 +08:00
github-actions[bot] 752f70aa6b New Crowdin translations by GitHub Action (#1199)
Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
2026-01-09 06:48:27 +08:00
devhaozi 01a24374b7 chore(l10n): update pot files 2026-01-08 22:44:50 +00:00
Copilot 401b85b87e feat: add on-demand folder size calculation in file manager (#1201)
* Initial plan

* feat: add folder size calculation feature with "Calculate" link

- Backend: Add Size API to calculate directory size
- Backend: Modify formatDir to return empty size for directories
- Frontend: Show "Calculate" link for directories instead of size
- Frontend: Add loading spinner during calculation
- Frontend: Cache calculated sizes until path changes
- Add translations for Calculate and Failed to calculate size

Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com>

* fix: lint

* fix: 优化

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com>
Co-authored-by: 耗子 <haozi@loli.email>
2026-01-09 06:43:26 +08:00
Copilot 47537e282b feat(dns): 优化系统工具箱DNS设置以适配现代Linux系统 (#1202)
* Initial plan

* feat(dns): 优化系统工具箱DNS设置以适配现代Linux系统

- 创建 pkg/dns 包实现多种DNS管理方式
- 支持 NetworkManager (RHEL 9.x/10.x)
- 支持 netplan (Debian 12+/Ubuntu 22+)
- 回退到直接修改 /etc/resolv.conf
- 更新前端显示当前DNS管理方式
- 添加单元测试

Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com>

* fix: 修复代码审查发现的问题

- 提取 shell 参数转义逻辑到独立函数
- 修正 netplan 配置文件选择的注释说明
- 使用常量替代硬编码的缩进值
- 添加前端空数组安全检查

Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com>

* fix: 优化

* fix: 优化

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com>
Co-authored-by: 耗子 <haozi@loli.email>
2026-01-09 06:33:23 +08:00
Copilot f2d3911266 feat: 支持隐藏菜单和自定义Logo长期保存 (#1200)
* Initial plan

* feat: 支持隐藏菜单和自定义Logo长期保存

- 后端:在 SettingPanel 结构体中添加 HiddenMenu 和 CustomLogo 字段
- 后端:在 GetPanel 和 UpdatePanel 方法中处理新字段的获取和保存
- 后端:修改 Panel 接口返回 hidden_menu 和 custom_logo 给前端初始化
- 前端:在基本设置页面添加隐藏菜单和自定义 Logo 设置项
- 前端:从侧边栏设置组件中移除弹窗,只保留菜单折叠按钮
- 前端:初始化时从服务端获取并应用隐藏菜单和自定义 Logo 设置
- 前端:调整 store 的 persist 配置,不再将这两个设置保存到本地存储

Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com>

* 代码审查完成

Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com>

* feat: 优化样式

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com>
Co-authored-by: 耗子 <haozi@loli.email>
2026-01-09 05:49:09 +08:00
devhaozi 9baeaa47e0 chore(l10n): update pot files 2026-01-08 21:09:09 +00:00
耗子 a5f609e23f fix: 翻译 2026-01-09 05:07:29 +08:00
耗子 caa8448104 fix: 翻译 2026-01-09 05:04:27 +08:00
耗子 84f3a18074 feat: 优化ssh 2026-01-09 05:00:35 +08:00
github-actions[bot] 61b2a70e84 New Crowdin translations by GitHub Action (#1198)
Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
2026-01-09 04:33:30 +08:00
devhaozi 710d38905f chore(l10n): update pot files 2026-01-08 20:26:31 +00:00
耗子 a4cb2d2dd1 fix: 翻译 2026-01-09 04:24:58 +08:00
github-actions[bot] f0cbd9b9b8 New Crowdin translations by GitHub Action (#1197)
Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
2026-01-09 04:21:33 +08:00
devhaozi e8ed4215d0 chore(l10n): update pot files 2026-01-08 20:19:26 +00:00
github-actions[bot] 1b509fc9ad New Crowdin translations by GitHub Action (#1196)
Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
2026-01-09 04:17:27 +08:00
devhaozi 2856068b90 chore(l10n): update pot files 2026-01-08 20:11:22 +00:00
耗子 2b1f6b3e0a Merge remote-tracking branch 'origin/main' 2026-01-09 04:09:36 +08:00
耗子 8a80182d2a fix: 翻译 2026-01-09 04:09:32 +08:00
devhaozi 0625ccfabe chore(l10n): update pot files 2026-01-08 19:24:04 +00:00
Copilot 54b3b60efd feat: 添加磁盘管理工具到工具箱 (#1195)
* Initial plan

* 实现磁盘管理工具的后端和前端基础功能

Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com>

* 完成磁盘管理工具功能实现并验证构建成功

Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com>

* 添加输入验证防止命令注入攻击

Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com>

* 移除命令注入验证并修复评审意见

Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com>

* feat: merge main

* feat: merge main

* feat: 分区优化

* feat: fstab管理

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com>
Co-authored-by: 耗子 <haozi@loli.email>
2026-01-09 03:22:35 +08:00
耗子 24312f5993 feat: 添加验证 2026-01-09 01:42:53 +08:00
耗子 31a22389d1 feat: 进程管理器优化 2026-01-09 01:37:16 +08:00
耗子 de5e28ca81 feat: 进程管理器优化 2026-01-09 01:28:48 +08:00
耗子 585cc5604a fix: lint 2026-01-09 01:04:38 +08:00
Copilot 874561a9d1 feat: 进程管理增强 - 信号发送、排序筛选、搜索和右键菜单 (#1194)
* Initial plan

* feat: 实现进程管理增强功能 - 信号发送、排序筛选、搜索和右键菜单

Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com>

* fix: 修复代码审查问题并删除遗留文件 task/SystemView.vue

Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com>
2026-01-09 00:47:01 +08:00
耗子 7d5a0ac1c0 feat: ssh管理, close #350 2026-01-09 00:46:40 +08:00
耗子 8e31361eaf fix: lint 2026-01-08 23:29:53 +08:00
Copilot cff71af26b feat(frp): 添加运行用户设置功能 (#1193)
* Initial plan

* feat(frp): 添加运行用户设置功能

Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com>

* refactor(frp): 优化正则表达式和用户/组更新逻辑

Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com>

* 完成 FRP 运行用户设置功能

Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com>
2026-01-08 23:27:54 +08:00
耗子 89ace2360c feat: ssh支持私钥密码,close #774 2026-01-08 23:24:04 +08:00
耗子 3afc00be2f Merge remote-tracking branch 'origin/main' 2026-01-08 23:07:45 +08:00
耗子 8aaf6f1377 feat: 添加ai说明 2026-01-08 23:07:41 +08:00
devhaozi f0e9543bf1 chore: update mocks 2026-01-08 15:05:18 +00:00
耗子 017604ec11 Merge remote-tracking branch 'origin/main' 2026-01-08 23:04:41 +08:00
耗子 ab6e0903f5 feat: 支持 webhook, close #695 2026-01-08 23:04:37 +08:00
devhaozi eba8392451 chore: update mocks 2026-01-08 14:09:56 +00:00
耗子 978c9b2fc3 feat: acme ari支持,close #1192 2026-01-08 22:09:08 +08:00
耗子 2d525e9680 feat: 完善证书设置 2026-01-08 21:26:31 +08:00
耗子 2099d2ca57 fix: 使用短期证书配置 2026-01-08 19:28:06 +08:00
耗子 5e3ec29076 feat: 优化证书逻辑 2026-01-08 18:39:32 +08:00
耗子 ce84087702 Merge remote-tracking branch 'origin/main' 2026-01-08 18:17:13 +08:00
耗子 855ed52a8b feat: 优化证书逻辑 2026-01-08 18:17:09 +08:00
devhaozi 984820ee12 chore: update mocks 2026-01-08 10:03:59 +00:00
耗子 d850292622 feat: 面板ip证书 2026-01-08 18:03:23 +08:00
耗子 b3c546dc13 feat: 支持MariaDB 2026-01-08 04:20:44 +08:00
耗子 7940b50a72 feat: PHP环境支持管理 2026-01-08 01:43:21 +08:00
耗子 45616b4ab3 feat: 添加一些默认设置 2026-01-07 23:47:23 +08:00
renovate[bot] ffc67b945d chore(deps): Update dependency vite to v7.3.1 (#1191)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-01-07 14:29:55 +00:00
耗子 554a7dfbd7 fix: 首页图标渲染 2026-01-07 04:01:16 +08:00
github-actions[bot] 647f9a530d New Crowdin translations by GitHub Action (#1190)
Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
2026-01-07 03:47:54 +08:00