From 30804a86e5e632c12fa439e09e90cabe4268df19 Mon Sep 17 00:00:00 2001 From: ilike2burnthing <59480337+ilike2burnthing@users.noreply.github.com> Date: Tue, 3 Jun 2025 05:39:46 +0100 Subject: [PATCH] Bump Chromium to v137 for build --- src/build_package.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build_package.py b/src/build_package.py index 5ff4956..28a70b3 100644 --- a/src/build_package.py +++ b/src/build_package.py @@ -25,7 +25,7 @@ def clean_files(): def download_chromium(): # https://commondatastorage.googleapis.com/chromium-browser-snapshots/index.html?prefix=Linux_x64/ - revision = "1260008" if os.name == 'nt' else '1260015' + revision = "1453032" if os.name == 'nt' else '1453031' arch = 'Win_x64' if os.name == 'nt' else 'Linux_x64' dl_file = 'chrome-win' if os.name == 'nt' else 'chrome-linux' dl_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), os.pardir, 'dist_chrome')