Skip to content

Commit

Permalink
2.0beta30
Browse files Browse the repository at this point in the history
  • Loading branch information
EternalPain committed Apr 28, 2021
1 parent 719ae7a commit 99a2945
Show file tree
Hide file tree
Showing 15 changed files with 696 additions and 601 deletions.
21 changes: 11 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,20 @@

### 2.0 Beta29 更新日志:
```txt
1. 修复部分系统输出显示APN错误
2. 修复检测网络挂掉的接口
1. 修复失效[检测网络]接口和[检测UDP网络]检测经常x
2. 修复放行端口部分端口读取不到
3. 修复如果手机不支持UDP转发 输出不提示
3. 升级免流方式功能,可以根据模式自动识别(原理是读取模式中是否有uid或user这两行,不要手贱删除tiny里的,或者在clnc模式里加)
4. 升级面具版模块的开机自启,避免开启失败
4. 升级[选择模式]功能 可指定双卡分别启动不同的模式
5. 升级本机配置所有支持填UID的地方都支持包名代替
6. 升级[开机自启]功能 一直等待开启了数据才会启动
5. 添加开启失败输出log日志,路径是模块文件夹下的start_error_log.txt
6. 添加禁网内核
7. 添加关闭selinux
7. 添加[系统内核]和[SELinux]功能配置
8. 添加原神在[本机游戏]功能列表
8. 删除[内网白名单]和[显示内网白名单]功能
9. 更换clnc核心为0.92版本
9. 删除[放行包名]功能
10. 删除[开机自启]功能里的高通方式
11. 删除[本机DNS]功能里的自定义DNS
```

****
Expand Down
Binary file removed ZJL2.0beta29/模块/MLBox
Binary file not shown.
45 changes: 0 additions & 45 deletions ZJL2.0beta29/模块/规则.sh

This file was deleted.

File renamed without changes.
15 changes: 9 additions & 6 deletions ZJL2.0beta29/关闭.sh → ZJL2.0beta30/关闭.sh
Original file line number Diff line number Diff line change
@@ -1,21 +1,24 @@
zjlPath="${0%/*}/*/ZJL"

if [ -f ${zjlPath} ]; then
if [ ! -x ${zjlPath} ]; then
isNormal="permissionDenied"
fi
if [[ `echo "${zjlPath}" | grep ' '` ]]; then
isNormal="containsSpaces"
elif [ -f ${zjlPath} ]; then
[ -x ${zjlPath} ] || isNormal="permissionDenied"
else
isNormal="notFound"
fi

if [ ! ${isNormal} ]; then
if [[ ! ${isNormal} ]]; then
${zjlPath} -c -d
else
echo "\n __________________________\n\n"\
" ZJL 2.0\n"\
" __________________________\n"

if [ "notFound" == ${isNormal} ]; then
if [[ "containsSpaces" == ${isNormal} ]]; then
echo " 脚本路径存在空格\n\n"\
" 请重命名后再使用"
elif [[ "notFound" == ${isNormal} ]]; then
echo " 找不到ZJL核心文件\n\n"\
" 请复制回模块文件夹\n\n"\
" 请修改权限为0777"
Expand Down
15 changes: 9 additions & 6 deletions ZJL2.0beta29/开启.sh → ZJL2.0beta30/开启.sh
Original file line number Diff line number Diff line change
@@ -1,21 +1,24 @@
zjlPath="${0%/*}/*/ZJL"

if [ -f ${zjlPath} ]; then
if [ ! -x ${zjlPath} ]; then
isNormal="permissionDenied"
fi
if [[ `echo "${zjlPath}" | grep ' '` ]]; then
isNormal="containsSpaces"
elif [ -f ${zjlPath} ]; then
[ -x ${zjlPath} ] || isNormal="permissionDenied"
else
isNormal="notFound"
fi

if [ ! ${isNormal} ]; then
if [[ ! ${isNormal} ]]; then
${zjlPath} -o -d
else
echo "\n __________________________\n\n"\
" ZJL 2.0\n"\
" __________________________\n"

if [ "notFound" == ${isNormal} ]; then
if [[ "containsSpaces" == ${isNormal} ]]; then
echo " 脚本路径存在空格\n\n"\
" 请重命名后再使用"
elif [[ "notFound" == ${isNormal} ]]; then
echo " 找不到ZJL核心文件\n\n"\
" 请复制回模块文件夹\n\n"\
" 请修改权限为0777"
Expand Down
15 changes: 9 additions & 6 deletions ZJL2.0beta29/检测.sh → ZJL2.0beta30/检测.sh
Original file line number Diff line number Diff line change
@@ -1,21 +1,24 @@
zjlPath="${0%/*}/*/ZJL"

if [ -f ${zjlPath} ]; then
if [ ! -x ${zjlPath} ]; then
isNormal="permissionDenied"
fi
if [[ `echo "${zjlPath}" | grep ' '` ]]; then
isNormal="containsSpaces"
elif [ -f ${zjlPath} ]; then
[ -x ${zjlPath} ] || isNormal="permissionDenied"
else
isNormal="notFound"
fi

if [ ! ${isNormal} ]; then
if [[ ! ${isNormal} ]]; then
${zjlPath} -d
else
echo "\n __________________________\n\n"\
" ZJL 2.0\n"\
" __________________________\n"

if [ "notFound" == ${isNormal} ]; then
if [[ "containsSpaces" == ${isNormal} ]]; then
echo " 脚本路径存在空格\n\n"\
" 请重命名后再使用"
elif [[ "notFound" == ${isNormal} ]]; then
echo " 找不到ZJL核心文件\n\n"\
" 请复制回模块文件夹\n\n"\
" 请修改权限为0777"
Expand Down
Binary file added ZJL2.0beta30/模块/MLBox
Binary file not shown.
Loading

0 comments on commit 99a2945

Please sign in to comment.