~新增了导入订阅时通过关键字过滤节点的功能
~优化了导入节点/订阅流程
~优化了跳过证书验证的方式
~调整了部分前后端规则地址
~同步最新Geoip数据库文件
~修复了保守模式下定时任务无法生效的bug
This commit is contained in:
juewuy
2020-08-24 20:14:31 +08:00
parent 0396957f42
commit 1f7ab1e88a
2 changed files with 3 additions and 2 deletions

Binary file not shown.

View File

@@ -218,7 +218,7 @@ echo -e "\033[33m当前过滤关键字\033[47;30m$exclude\033[0m"
echo -----------------------------------------------
echo -e "\033[36m匹配关键字的节点会在导入时被屏蔽\033[0m"
echo -e "多个关键字可以用\033[30;47m | \033[0m号分隔"
echo -e "\033[32m支持正则表达式\033[0m特殊符号请使用\033[30;47m \ \033[0m号转义"
echo -e "\033[32m支持正则表达式\033[0m特殊符号请先用URLEncode转换"
echo -----------------------------------------------
echo -e " 000 \033[31m删除\033[0m关键字"
echo -e " 回车 取消输入并返回上级菜单"
@@ -231,8 +231,9 @@ elif [ "$exclude" = '000' ]; then
exclude=''
echo -e "\033[31m 已删除节点过滤关键字!!!\033[0m"
fi
exclude=\'$exclude\'
sed -i '/exclude=*/'d $ccfg
sed -i "1i\exclude=\'$exclude\'" $ccfg
sed -i "1i\exclude=$exclude" $ccfg
linkset
}
linkset(){