v1.5.0-预览版
~DNS解析默认不再提供IPV6结果,需手动开启 ~现在将从配置文件中获取运行模式而不是固定的Rule模式 ~在线生成配置文件功能添加对vless协议的支持 ~增加了对vless协议的检测机制,优化使用体验 ~修复使用环境变量设置本机代理不生效的bug
This commit is contained in:
Binary file not shown.
@@ -3,4 +3,4 @@ clash_v=1.7.1
|
|||||||
clashpre_v=2021.09.15
|
clashpre_v=2021.09.15
|
||||||
GeoIP_v=202112310302
|
GeoIP_v=202112310302
|
||||||
meta_v=1.9.0
|
meta_v=1.9.0
|
||||||
versionsh=1.4.12
|
versionsh=1.5.0
|
||||||
|
|||||||
@@ -545,6 +545,7 @@ localproxy(){
|
|||||||
else
|
else
|
||||||
local_proxy=已开启
|
local_proxy=已开启
|
||||||
setconfig local_proxy $local_proxy
|
setconfig local_proxy $local_proxy
|
||||||
|
setconfig local_type $local_type
|
||||||
echo -e "\033[32m已经成功使用$local_type方式配置本机代理~\033[0m"
|
echo -e "\033[32m已经成功使用$local_type方式配置本机代理~\033[0m"
|
||||||
[ "$local_type" = "环境变量" ] && $clashdir/start.sh set_proxy $mix_port $db_port &&echo -e "\033[36m如未生效,请重新启动终端或重新连接SSH!\033[0m" && sleep 1
|
[ "$local_type" = "环境变量" ] && $clashdir/start.sh set_proxy $mix_port $db_port &&echo -e "\033[36m如未生效,请重新启动终端或重新连接SSH!\033[0m" && sleep 1
|
||||||
[ "$local_type" = "iptables增强模式" ] && $clashdir/start.sh start
|
[ "$local_type" = "iptables增强模式" ] && $clashdir/start.sh start
|
||||||
@@ -552,6 +553,7 @@ localproxy(){
|
|||||||
else
|
else
|
||||||
local_proxy=未开启
|
local_proxy=未开启
|
||||||
setconfig local_proxy $local_proxy
|
setconfig local_proxy $local_proxy
|
||||||
|
setconfig local_type
|
||||||
$clashdir/start.sh stop
|
$clashdir/start.sh stop
|
||||||
echo -e "\033[33m已经停用本机代理规则并停止clash服务!!\033[0m"
|
echo -e "\033[33m已经停用本机代理规则并停止clash服务!!\033[0m"
|
||||||
[ "$local_type" = "环境变量" ] && echo -e "\033[36m如未生效,请重新启动终端或重新连接SSH!\033[0m" && sleep 1
|
[ "$local_type" = "环境变量" ] && echo -e "\033[36m如未生效,请重新启动终端或重新连接SSH!\033[0m" && sleep 1
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ getconfig(){
|
|||||||
[ -z "$dns_over" ] && dns_over=已开启
|
[ -z "$dns_over" ] && dns_over=已开启
|
||||||
[ -z "$modify_yaml" ] && modify_yaml=未开启
|
[ -z "$modify_yaml" ] && modify_yaml=未开启
|
||||||
[ -z "$ipv6_support" ] && ipv6_support=未开启
|
[ -z "$ipv6_support" ] && ipv6_support=未开启
|
||||||
[ -z "$ipv6_dns" ] && ipv6_dns=已开启
|
[ -z "$ipv6_dns" ] && ipv6_dns=$ipv6_support
|
||||||
[ -z "$start_old" ] && start_old=未开启
|
[ -z "$start_old" ] && start_old=未开启
|
||||||
[ -z "$local_proxy" ] && local_proxy=未开启
|
[ -z "$local_proxy" ] && local_proxy=未开启
|
||||||
[ -z "$mix_port" ] && mix_port=7890
|
[ -z "$mix_port" ] && mix_port=7890
|
||||||
@@ -122,7 +122,7 @@ EOF`
|
|||||||
Https=$(echo ${Https//\%26/\&}) #将%26替换回&
|
Https=$(echo ${Https//\%26/\&}) #将%26替换回&
|
||||||
#如果传来的是Url链接则合成Https链接,否则直接使用Https链接
|
#如果传来的是Url链接则合成Https链接,否则直接使用Https链接
|
||||||
if [ -z "$Https" ];then
|
if [ -z "$Https" ];then
|
||||||
#[ -n "$(echo $Url | grep -o 'https://dler')" ] && Server='api.dler.io'
|
[ -n "$(echo $Url | grep -o 'vless')" ] && Server='http://sub.shellclash.ga'
|
||||||
Https="$Server/sub?target=clash&insert=true&new_name=true&scv=true&udp=true&exclude=$exclude&include=$include&url=$Url&config=$Config"
|
Https="$Server/sub?target=clash&insert=true&new_name=true&scv=true&udp=true&exclude=$exclude&include=$include&url=$Url&config=$Config"
|
||||||
markhttp=1
|
markhttp=1
|
||||||
fi
|
fi
|
||||||
@@ -191,7 +191,7 @@ EOF`
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
#检测是否存在高级版规则
|
#检测是否存在高级版规则
|
||||||
if [ "$clashcore" = "clash" -a -n "$(cat $yamlnew | grep -E '^script:|proxy-providers|rule-providers')" ];then
|
if [ "$clashcore" = "clash" -a -n "$(cat $yamlnew | grep -E '^script:|proxy-providers|rule-providers|vless')" ];then
|
||||||
echo -----------------------------------------------
|
echo -----------------------------------------------
|
||||||
logger "检测到高级版核心专属规则!将改为使用clash.net核心启动!" 33
|
logger "检测到高级版核心专属规则!将改为使用clash.net核心启动!" 33
|
||||||
rm -rf $bindir/clash
|
rm -rf $bindir/clash
|
||||||
@@ -223,7 +223,7 @@ EOF`
|
|||||||
modify_yaml(){
|
modify_yaml(){
|
||||||
##########需要变更的配置###########
|
##########需要变更的配置###########
|
||||||
lan='allow-lan: true'
|
lan='allow-lan: true'
|
||||||
mode='mode: Rule'
|
#mode='mode: Rule'
|
||||||
log='log-level: info'
|
log='log-level: info'
|
||||||
[ "$ipv6_support" = "已开启" ] && ipv6='ipv6: true' || ipv6='ipv6: false'
|
[ "$ipv6_support" = "已开启" ] && ipv6='ipv6: true' || ipv6='ipv6: false'
|
||||||
[ "$ipv6_dns" = "已开启" ] && dns_v6='ipv6: true' || dns_v6=$ipv6
|
[ "$ipv6_dns" = "已开启" ] && dns_v6='ipv6: true' || dns_v6=$ipv6
|
||||||
@@ -246,6 +246,9 @@ modify_yaml(){
|
|||||||
#设置目录
|
#设置目录
|
||||||
yaml=$clashdir/config.yaml
|
yaml=$clashdir/config.yaml
|
||||||
tmpdir=/tmp/clash_$USER
|
tmpdir=/tmp/clash_$USER
|
||||||
|
#预读取变量
|
||||||
|
mode=$(grep "^mode" $yaml | head -1 | awk '{print $2}')
|
||||||
|
[ -z "$mode" ] && mode='Rule'
|
||||||
#预删除需要添加的项目
|
#预删除需要添加的项目
|
||||||
a=$(grep -n "port:" $yaml | head -1 | cut -d ":" -f 1)
|
a=$(grep -n "port:" $yaml | head -1 | cut -d ":" -f 1)
|
||||||
b=$(grep -n "^prox" $yaml | head -1 | cut -d ":" -f 1)
|
b=$(grep -n "^prox" $yaml | head -1 | cut -d ":" -f 1)
|
||||||
@@ -263,7 +266,7 @@ mixed-port: $mix_port
|
|||||||
redir-port: $redir_port
|
redir-port: $redir_port
|
||||||
authentication: ["$authentication"]
|
authentication: ["$authentication"]
|
||||||
$lan
|
$lan
|
||||||
$mode
|
mode: $mode
|
||||||
$log
|
$log
|
||||||
$ipv6
|
$ipv6
|
||||||
external-controller: :$db_port
|
external-controller: :$db_port
|
||||||
|
|||||||
Reference in New Issue
Block a user