feat: 完善自动分析名单调度与面板配置说明

- 重构自动分析调度流程:以分层名单解析目标群组,统一报告入口,并按群组模式分发传统/增量任务。

- 新增定时名单与增量名单配置能力:补充 scheduled_group_list(_mode)、incremental_group_list(_mode)、incremental_fallback_enabled。

- 优化失败兜底策略:增量最终报告在超时、异常或无有效结果时,可回退至传统全量分析。

- 完善配置与文档说明:在 _conf_schema.json 与 README 中补充面板操作指引、判定顺序与边界场景说明。

- 兼容旧配置行为:保留废弃接口,并在配置管理中统一名单匹配语义(UMO/群号兼容)。
This commit is contained in:
SXP-Simon
2026-03-26 19:23:49 +08:00
parent aa3ae494ce
commit 9ed4771730
5 changed files with 380 additions and 243 deletions
+1 -1
View File
@@ -871,7 +871,7 @@ class GroupDailyAnalysis(Star):
mode = self.config_manager.get_group_list_mode()
auto_status = (
"已启用" if self.config_manager.get_enable_auto_analysis() else "未启用"
"已启用" if self.config_manager.is_auto_analysis_enabled() else "未启用"
)
auto_time = self.config_manager.get_auto_analysis_time()