From 6d69f40b58ea313922fb66cb982d3773582d43f9 Mon Sep 17 00:00:00 2001 From: ngosang Date: Sun, 23 Jul 2023 18:30:52 +0200 Subject: [PATCH] Update Chromium 115 in binary packages --- src/build_package.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/build_package.py b/src/build_package.py index 3ceda2d..cdb1165 100644 --- a/src/build_package.py +++ b/src/build_package.py @@ -25,8 +25,8 @@ def clean_files(): def download_chromium(): # https://commondatastorage.googleapis.com/chromium-browser-snapshots/index.html?prefix=Linux_x64/ - revision = "1090006" if os.name == 'nt' else '1090007' - arch = 'Win' if os.name == 'nt' else 'Linux_x64' + revision = "1140001" if os.name == 'nt' else '1140000' + 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') dl_path_folder = os.path.join(dl_path, dl_file)