Skip to content

Commit

Permalink
2024.06.24
Browse files Browse the repository at this point in the history
  • Loading branch information
spiritLHLS committed Jun 24, 2024
1 parent 1ff5520 commit 9b14e96
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

# 主要变化

2024.06.13

- 检测打印结果时增加错误检测
- 邮件端口检测重构使用golang实现[oneclickvirt/portchecker](https://github.com/oneclickvirt/portchecker)进行测试,检测速度更快、检测协议更多

2024.05.24

- 删除无用的中间文件的生成
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,9 @@ https://github.com/spiritLHLS/one-click-installation-script

## 更新

2024.06.13
2024.06.24

- 检测打印结果时增加错误检测
- 邮件端口检测重构使用golang实现[oneclickvirt/portchecker](https://github.com/oneclickvirt/portchecker)进行测试,检测速度更快、检测协议更多
- 优化常用流媒体检测不再显示IP信息,避免重复查询

历史更新日志:[跳转](https://github.com/spiritLHLS/ecs/blob/main/CHANGELOG.md)

Expand Down
4 changes: 2 additions & 2 deletions ecs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

cd /root >/dev/null 2>&1
myvar=$(pwd)
ver="2024.06.13"
ver="2024.06.24"

# =============== 默认输入设置 ===============
RED="\033[31m"
Expand Down Expand Up @@ -3515,7 +3515,7 @@ backtrace_script() {
cd $myvar >/dev/null 2>&1
if [ -f "${TEMP_DIR}/backtrace" ]; then
chmod 777 ${TEMP_DIR}/backtrace
curl_output=$(${TEMP_DIR}/backtrace 2>&1)
curl_output=$(${TEMP_DIR}/backtrace -s=false 2>&1)
else
return
fi
Expand Down

0 comments on commit 9b14e96

Please sign in to comment.