From 8176b7a819469fb68b8bc2778a981e91bec19310 Mon Sep 17 00:00:00 2001 From: anonysoul Date: Sun, 2 Apr 2023 11:10:29 +0800 Subject: [PATCH] chore: upgrade sing-box version to 1.2.2 --- .github/workflows/installer.yml | 6 +++--- .gitignore | 1 + .vscode/settings.json | 22 ---------------------- 3 files changed, 4 insertions(+), 25 deletions(-) create mode 100644 .gitignore delete mode 100644 .vscode/settings.json diff --git a/.github/workflows/installer.yml b/.github/workflows/installer.yml index 849d7f4..b4ef03a 100644 --- a/.github/workflows/installer.yml +++ b/.github/workflows/installer.yml @@ -34,7 +34,7 @@ jobs: if: matrix.os == 'ubuntu-latest' run: | mkdir -p artifacts/sing-box - wget -O ./sing-box.tar.gz https://github.com/SagerNet/sing-box/releases/download/v1.1.7/sing-box-1.1.7-linux-amd64.tar.gz + wget -O ./sing-box.tar.gz https://github.com/SagerNet/sing-box/releases/download/v1.2.2/sing-box-1.2.2-linux-amd64.tar.gz tar -xvzf ./sing-box.tar.gz -C ./artifacts/sing-box mv artifacts/sing-box/**/sing-box controller/resources/sing-box @@ -42,7 +42,7 @@ jobs: if: matrix.os == 'macOS-latest' run: | mkdir -p artifacts/sing-box - wget -O ./sing-box.tar.gz https://github.com/SagerNet/sing-box/releases/download/v1.1.7/sing-box-1.1.7-darwin-amd64.tar.gz + wget -O ./sing-box.tar.gz https://github.com/SagerNet/sing-box/releases/download/v1.2.2/sing-box-1.2.2-darwin-amd64.tar.gz tar -xvzf ./sing-box.tar.gz -C ./artifacts/sing-box mv artifacts/sing-box/**/sing-box controller/resources/sing-box @@ -51,7 +51,7 @@ jobs: shell: pwsh run: | mkdir -p artifacts/sing-box - Invoke-RestMethod -Uri https://github.com/SagerNet/sing-box/releases/download/v1.1.7/sing-box-1.1.7-windows-amd64.zip -OutFile sing-box.zip + Invoke-RestMethod -Uri https://github.com/SagerNet/sing-box/releases/download/v1.2.2/sing-box-1.2.2-windows-amd64.zip -OutFile sing-box.zip Expand-Archive .\sing-box.zip -DestinationPath .\artifacts\sing-box Move-Item -Path .\artifacts\sing-box\**\sing-box.exe -Destination .\controller\resources\sing-box\ diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..600d2d3 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.vscode \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 2abf8c8..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "workbench.colorCustomizations": { - "activityBar.activeBackground": "#16af1c", - "activityBar.background": "#16af1c", - "activityBar.foreground": "#e7e7e7", - "activityBar.inactiveForeground": "#e7e7e799", - "activityBarBadge.background": "#e4e3fb", - "activityBarBadge.foreground": "#15202b", - "commandCenter.border": "#e7e7e799", - "sash.hoverBorder": "#16af1c", - "statusBar.background": "#108215", - "statusBar.foreground": "#e7e7e7", - "statusBarItem.hoverBackground": "#16af1c", - "statusBarItem.remoteBackground": "#108215", - "statusBarItem.remoteForeground": "#e7e7e7", - "titleBar.activeBackground": "#108215", - "titleBar.activeForeground": "#e7e7e7", - "titleBar.inactiveBackground": "#10821599", - "titleBar.inactiveForeground": "#e7e7e799" - }, - "peacock.color": "#108215" -} \ No newline at end of file