From 074cc269558ea615162270d35b816463666314de Mon Sep 17 00:00:00 2001 From: Nova Date: Wed, 13 Aug 2025 20:59:41 +0330 Subject: [PATCH 1/3] update go to 1.25 --- .github/workflows/build.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index eccd16e..71750a0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,28 +17,28 @@ jobs: include: - cross_os: public_res cross_arch: public_res - go_version: "1.24.6" + go_version: "1.25.0" - cross_os: windows cross_arch: amd64 - go_version: "1.24.6" + go_version: "1.25.0" - cross_os: linux cross_arch: amd64 - go_version: "1.24.6" + go_version: "1.25.0" - cross_os: linux cross_arch: arm64 - go_version: "1.24.6" + go_version: "1.25.0" - cross_os: darwin cross_arch: amd64 - go_version: "1.24.6" + go_version: "1.25.0" - cross_os: darwin cross_arch: arm64 - go_version: "1.24.6" + go_version: "1.25.0" - cross_os: windowslegacy cross_arch: amd64 - go_version: "1.24.6" + go_version: "1.25.0" - cross_os: windowslegacy cross_arch: 386 - go_version: "1.24.6" + go_version: "1.25.0" fail-fast: false runs-on: ubuntu-latest steps: From 14fe66602c12eb8fa0b432b15ef6dafc2215a188 Mon Sep 17 00:00:00 2001 From: Nova Date: Wed, 13 Aug 2025 21:05:07 +0330 Subject: [PATCH 2/3] improve dns list --- include/ui/setting/dialog_manage_routes.ui | 63 ++++------------------ 1 file changed, 9 insertions(+), 54 deletions(-) diff --git a/include/ui/setting/dialog_manage_routes.ui b/include/ui/setting/dialog_manage_routes.ui index 4dd80bf..6090bce 100644 --- a/include/ui/setting/dialog_manage_routes.ui +++ b/include/ui/setting/dialog_manage_routes.ui @@ -295,7 +295,12 @@ For more information, see the document "Configuration/DNS". - tls://8.8.8.8 + tls://8.8.8.8 + + + + + tls://1.1.1.1 @@ -305,37 +310,7 @@ For more information, see the document "Configuration/DNS". - https://8.8.8.8/dns-query - - - - - https://1.0.0.1/dns-query - - - - - https://1.1.1.1/dns-query - - - - - https://dns.google/dns-query - - - - - https://one.one.one.one/dns-query - - - - - https://[2001:4860:4860::8888]/dns-query - - - - - https://[2606:4700:4700::1111]/dns-query + 1.1.1.1 @@ -370,26 +345,6 @@ For more information, see the document "Configuration/DNS". localhost - - - https://223.5.5.5/dns-query - - - - - https://1.12.12.12/dns-query - - - - - https://dns.alidns.com/dns-query - - - - - https://doh.pub/dns-query - - 223.5.5.5 @@ -402,12 +357,12 @@ For more information, see the document "Configuration/DNS". - 2400:3200::1 + 178.22.122.100 - 2402:4e00:: + 77.88.8.8 From 71d1c2b8cc077c8654ac68502bc070a56765d35f Mon Sep 17 00:00:00 2001 From: Nova Date: Wed, 13 Aug 2025 21:21:43 +0330 Subject: [PATCH 3/3] only log config on debug log level --- src/ui/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/mainwindow.cpp b/src/ui/mainwindow.cpp index 856e6c8..c4ef275 100644 --- a/src/ui/mainwindow.cpp +++ b/src/ui/mainwindow.cpp @@ -141,7 +141,7 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWi QStringList args; args.push_back("-port"); args.push_back(Int2String(Configs::dataStore->core_port)); - if (Configs::dataStore->flag_debug) args.push_back("-debug"); + if (Configs::dataStore->log_level == "debug") args.push_back("-debug"); // Start core runOnThread(