From 3490384de8884b1d3e38c77831a5782b4ce80d9b Mon Sep 17 00:00:00 2001 From: sharevb Date: Sat, 13 Jun 2026 21:20:21 +0200 Subject: [PATCH 1/4] Add GitHub Actions workflow for Vite bundle analysis --- .github/workflows/bundle-analyzer.yml | 40 +++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/workflows/bundle-analyzer.yml diff --git a/.github/workflows/bundle-analyzer.yml b/.github/workflows/bundle-analyzer.yml new file mode 100644 index 0000000000..920e1e4071 --- /dev/null +++ b/.github/workflows/bundle-analyzer.yml @@ -0,0 +1,40 @@ +name: Vite Bundle Visualizer + +on: + push: + branches: [ chore/all-my-stuffs ] + +jobs: + analyze: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v6 + - run: | + echo "Before: corepack version => $(corepack --version || echo 'not installed')" + npm install -g corepack@latest + echo "After : corepack version => $(corepack --version)" + corepack enable + pnpm --version + - uses: actions/setup-node@v6 + with: + node-version: 22 + cache: 'pnpm' + + - name: Install dependencies + run: pnpm i --ignore-scripts + + # Ensure vite-bundle-visualizer is installed + # (or remove this step if already in package.json) + - name: Install visualizer + run: pnpm install --save-dev vite-bundle-visualizer + + - name: Build the app + run: pnpm build + + - name: Upload bundle visualizer report + uses: actions/upload-artifact@v4 + with: + name: bundle-visualizer-report + path: dist/stats.html + if-no-files-found: error From 31dff3509fdd7387b80b108c0aa693429788e6ef Mon Sep 17 00:00:00 2001 From: sharevb Date: Sat, 13 Jun 2026 22:13:02 +0200 Subject: [PATCH 2/4] Add bundle visualizer report generation step Add step to generate bundle visualizer report using vite-bundle-visualizer. --- .github/workflows/bundle-analyzer.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/bundle-analyzer.yml b/.github/workflows/bundle-analyzer.yml index 920e1e4071..03c6f82a13 100644 --- a/.github/workflows/bundle-analyzer.yml +++ b/.github/workflows/bundle-analyzer.yml @@ -32,6 +32,12 @@ jobs: - name: Build the app run: pnpm build + - name: Generate bundle visualizer report + run: | + # Generate stats.html using npx + npx vite-bundle-visualizer dist --template treemap --open false + + - name: Upload bundle visualizer report uses: actions/upload-artifact@v4 with: From 5235c5f5fb620a5a66a28df51ab61e56cde5e936 Mon Sep 17 00:00:00 2001 From: fred-head Date: Thu, 18 Jun 2026 12:39:27 +0200 Subject: [PATCH 3/4] Add resolver dropdown to dns tester --- src/tools/dns-tester/dns-tester.vue | 49 +++++++++++++++++++++++++++-- 1 file changed, 47 insertions(+), 2 deletions(-) diff --git a/src/tools/dns-tester/dns-tester.vue b/src/tools/dns-tester/dns-tester.vue index f9f13dbe1b..af19d0994a 100644 --- a/src/tools/dns-tester/dns-tester.vue +++ b/src/tools/dns-tester/dns-tester.vue @@ -144,6 +144,45 @@ const dnsTypes = [ { value: 'ZONEMD', label: 'ZONEMD — Zone message digest' }, ]; +const resolverOptions = [ + { label: 'System default', value: '' }, + { label: 'Google 8.8.8.8', value: '8.8.8.8' }, + { label: 'Google 8.8.4.4', value: '8.8.4.4' }, + { label: 'Cloudflare 1.1.1.1', value: '1.1.1.1' }, + { label: 'Cloudflare 1.0.0.1', value: '1.0.0.1' }, + { label: 'Quad9 9.9.9.9', value: '9.9.9.9' }, + { label: 'Quad9 149.112.112.112', value: '149.112.112.112' }, + { label: 'OpenDNS 208.67.222.222', value: '208.67.222.222' }, + { label: 'OpenDNS 208.67.220.220', value: '208.67.220.220' }, + { label: 'CleanBrowsing 185.228.168.9', value: '185.228.168.9' }, + { label: 'CleanBrowsing 185.228.169.9', value: '185.228.169.9' }, + { label: 'DNS.Watch 84.200.69.80', value: '84.200.69.80' }, + { label: 'DNS.Watch 84.200.70.40', value: '84.200.70.40' }, + { label: 'FreeDNS 37.235.1.174', value: '37.235.1.174' }, + { label: 'FreeDNS 37.235.1.177', value: '37.235.1.177' }, + { label: 'FDN France 80.67.169.12', value: '80.67.169.12' }, + { label: 'FDN France 80.67.169.40', value: '80.67.169.40' }, + { label: 'Neustar EU 156.154.70.1', value: '156.154.70.1' }, + { label: 'Neustar EU 156.154.71.1', value: '156.154.71.1' }, + { label: 'Level3 209.244.0.3', value: '209.244.0.3' }, + { label: 'Level3 209.244.0.4', value: '209.244.0.4' }, + { label: 'Comodo 8.26.56.26', value: '8.26.56.26' }, + { label: 'Comodo 8.20.247.20', value: '8.20.247.20' }, + { label: 'CenturyLink 205.171.3.65', value: '205.171.3.65' }, + { label: 'CenturyLink 205.171.2.65', value: '205.171.2.65' }, + { label: 'DNSPod 119.29.29.29', value: '119.29.29.29' }, + { label: 'AliDNS 223.5.5.5', value: '223.5.5.5' }, + { label: 'AliDNS 223.6.6.6', value: '223.6.6.6' }, + { label: 'Yandex 77.88.8.8', value: '77.88.8.8' }, + { label: 'Yandex 77.88.8.1', value: '77.88.8.1' }, + { label: 'Naver Korea 125.209.222.141', value: '125.209.222.141' }, + { label: 'Naver Korea 125.209.249.1', value: '125.209.249.1' }, + { label: 'GigaDNS Brazil 189.38.95.95', value: '189.38.95.95' }, + { label: 'GigaDNS Brazil 189.38.95.96', value: '189.38.95.96' }, + { label: 'OpenDNS Africa 196.3.132.153', value: '196.3.132.153' }, + { label: 'OpenDNS Africa 196.3.132.154', value: '196.3.132.154' }, +]; + const resolverIP = ref(''); const dnsDomain = ref(''); @@ -221,8 +260,14 @@ const labelProps = { - - + + From b17e0f68192f170675b72014e03a423dd44fdfef Mon Sep 17 00:00:00 2001 From: fred-head Date: Thu, 25 Jun 2026 22:52:43 +0200 Subject: [PATCH 4/4] Added custom DNS resolver option --- .pnpm-store/v11/index.db | Bin 0 -> 8192 bytes src/tools/dns-tester/dns-tester.vue | 55 ++++++++++++++++++++-------- 2 files changed, 39 insertions(+), 16 deletions(-) create mode 100644 .pnpm-store/v11/index.db diff --git a/.pnpm-store/v11/index.db b/.pnpm-store/v11/index.db new file mode 100644 index 0000000000000000000000000000000000000000..d583c087b2ea7237a82fd6abbd7a82897e4249b9 GIT binary patch literal 8192 zcmeIuzpBD86bA4#2p0s=&GDX11#$5OY&BppTCFMSqD0LV@%|C%po4=C;Y;~cx0O=t zfB*y_009U<00Izz00bZafgB3lKCO>xt!CY>pipIV>wEYDQ#G?7q-|A44BRz*ko}y78W!h}e%vF6aP~>|v kx0l=(WA#c7>G359KmY;|fB*y_009U<00Izz00dHje+G3k*8l(j literal 0 HcmV?d00001 diff --git a/src/tools/dns-tester/dns-tester.vue b/src/tools/dns-tester/dns-tester.vue index af19d0994a..fcbf8e3db4 100644 --- a/src/tools/dns-tester/dns-tester.vue +++ b/src/tools/dns-tester/dns-tester.vue @@ -1,6 +1,7 @@