feat(core): 增强hosts管理功能和自动还原设置

- 添加对hosts文件优选IP记录的检查,避免重复优选。
- 添加禁用自动还原hosts的选项,允许用户自定义设置。
- 更新HostsManager以支持自动还原状态的设置和检查,优化hosts文件的管理逻辑。
This commit is contained in:
hyb-oyqq
2025-08-04 11:44:10 +08:00
parent 19da86c808
commit 98bfddeb04
6 changed files with 237 additions and 3 deletions

View File

@@ -456,10 +456,10 @@ class MainWindow(QMainWindow):
event.ignore()
return
# 恢复hosts文件
# 恢复hosts文件(如果未禁用自动还原)
self.download_manager.hosts_manager.restore()
# 额外检查并清理hosts文件中的残留记录
# 额外检查并清理hosts文件中的残留记录(如果未禁用自动还原)
self.download_manager.hosts_manager.check_and_clean_all_entries()
# 停止日志记录