tis-chromium-stable
131.0.6778.265-2
Chromium est un navigateur open-source
0 téléchargements
Voir le résultat de la construction Voir l'analyse de VirusTotal
Description
- package : tis-chromium-stable
- name : Chromium
- version : 131.0.6778.265-2
- categories : Internet
- maintainer : WAPT Team,Tranquil IT,Ingrid TALBOT
- installed_size : 733538450
- editor : Auteurs de Chromium
- licence : opensource_free,cpe:/a:gnu:gpl_v2,wapt_enterprise
- signature_date : 2025-01-14T18:26:36.000000
- size : 159.60 Mo
- locale : all
- target_os : windows
- impacted_process : chrome
- architecture : x64
control
package : tis-chromium-stable
version : 131.0.6778.265-2
architecture : x64
section : base
priority : optional
name : Chromium
categories : Internet
maintainer : WAPT Team,Tranquil IT,Ingrid TALBOT
description : Chromium is an open-source browser
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.3
sources :
installed_size : 733538450
impacted_process : chrome
description_fr : Chromium est un navigateur open-source
description_pl : Chromium to przeglądarka o otwartym kodzie źródłowym
description_de : Chromium ist ein Open-Source-Browser
description_es : Chromium es un navegador de código abierto
description_pt : O Chromium é um navegador de código aberto
description_it : Chromium è un browser open-source
description_nl : Chromium is een open-source browser
description_ru : Chromium - это браузер с открытым исходным кодом
audit_schedule :
editor : Auteurs de Chromium
keywords : browser
licence : opensource_free,cpe:/a:gnu:gpl_v2,wapt_enterprise
homepage :
package_uuid : 62e6342d-4b3b-47a7-8f67-d99593f04fd0
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : eb39468140f268f2c4ab888344aaa0c15c79569f0f162d76e798d7ae9594de0c
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-01-14T18:26:36.000000
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
signature : pcPhGoA9i2OjRVNGSRbRRvq62lL+tgCWmQs0nCjY3D8EUy+zJCu670x4OTLzdLD492jqDs7/ynRN8WXe/0+eNPoGxmA5SS17t6CrY2k8nj9l8IPzSC80TnB+r6nbwZQGrybX2/MAOdTtPzDWtouYELlNCnEzo2yXuR1mpfnxyBBUxfmVECTjVjaG2Zj1Ap5H1Liff0ACuRG+hAjPa8UwOblcDYHfu9Pb3vQ8s8/eZIAWT4IpchusLuv8xwLQeMIWwGmYZsfean2Yv0uUPMerO7PP/rqoC4SVn6XMnK25kdan3WDz78Fq7t8Gd1j6tuLymiL5e4n9qxT7acCFhxtZZA==
Setup.py
# -*- coding: utf-8 -*-
##################################################
# This file is part of WAPT Enterprise
# All right reserved, (c) Tranquil IT Systems 2024
# For more information please refer to
# https://wapt.tranquil.it/store/licences.html
##################################################
from setuphelpers import *
app_name = "Chromium"
unzipped_dir = "Chromium-stable"
app_dir = makepath(programfiles, "Chromium-stable")
app_path = makepath(app_dir, "Chrome-bin", "chrome.exe")
def install():
# Installing software
killalltasks(ensure_list(control.impacted_process))
if isdir(app_dir):
remove_tree(app_dir)
copytree2(unzipped_dir, app_dir, onreplace=default_overwrite)
# Creating custom shortcuts
create_programs_menu_shortcut("Chromium (version stable)", target=app_path)
def uninstall():
# Uninstalling software
killalltasks(ensure_list(control.impacted_process))
if isdir(app_dir):
remove_tree(app_dir)
# Removing shortcuts
remove_programs_menu_shortcut("Chromium (version stable)")
update_package.py
# -*- coding: utf-8 -*-
##################################################
# This file is part of WAPT Enterprise
# All right reserved, (c) Tranquil IT Systems 2024
# For more information please refer to
# https://wapt.tranquil.it/store/licences.html
##################################################
from setuphelpers import *
from setupdevhelpers import unzip_with_7zip
unzipped_dir = "Chromium-stable"
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
update_dict = {"windows": "nosync.7z"}
api_url = "https://api.github.com/repos/Hibbiki/chromium-win64/releases/latest"
# Get data from API
releases_dict = json.loads(wgets(api_url, proxies=proxies))
for asset in releases_dict["assets"]:
if asset["browser_download_url"].endswith("nosync.7z") and update_dict[control.target_os] in asset["browser_download_url"]:
download_url = asset["browser_download_url"]
latest_bin = download_url.split("/")[-1]
version = releases_dict["name"].replace("v", "").rsplit("-")[0]
break
# Downloading latest binaries
print(f"Latest version of {control.name} is: {version}")
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
else:
print("Binary is present: %s" % latest_bin)
# Extracting archive
if isdir(unzipped_dir):
remove_tree(unzipped_dir)
unzip_with_7zip(latest_bin, unzipped_dir)
remove_file(latest_bin)
# Changing version of the package
if Version(version) > Version(control.get_software_version()):
print(f"Software version updated (from: {control.get_software_version()} to: {Version(version)})")
package_updated = True
else:
print(f"Software version up-to-date ({Version(version)})")
# Deleting binaries
for f in glob.glob("*.exe"):
if f != latest_bin:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
return package_updated
: Chromium-stable
ef9fc58ab5205b044b922a68e04d8903164dc1e794709cef338f6194b3df17f6 : Chromium-stable/Chrome-bin/131.0.6778.265/131.0.6778.265.manifest
a68cafd7d78d5c671c2560656653f2a4d83ab66d87a8728356a88fb1f477b3e6 : Chromium-stable/Chrome-bin/131.0.6778.265/Extensions/external_extensions.json
c4f073fd0f50be6597e71b983df0fe10b4b014b48324edefc731440dfe08227f : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/af.pak
92c57d7eec85c9d1d792e274170f97e938f1fc6e637cdc823cc41cafb4c7d1d0 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/am.pak
02546f597c8593e73a4c85549b9c1b2094a018f7694f38ed58e25c7e4d2b3d3a : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/ar.pak
96bc603b4f6c27fce484dae2d87500c333a0ff88197229c0341687c26ce82ae5 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/bg.pak
ba26314633a4eb872259c6cfe382a72b3077ce7f761d95fb9082cd20a3a34513 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/bn.pak
b4d6d6b81a9a780d4790d5aa22f81628f6374e6d0c1fd6857db5ffc1b2b9569e : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/ca.pak
8f435b3971734b1c4e66f872dc5ff3fd2b9bb15b9a35930b97bec7894e774f25 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/cs.pak
dcaf232396d6867fc5bbb9d7da74dddea2501370164580915c9e5a38c23b5f00 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/da.pak
9145ea7bd32f5b608bad5ed2c53b408a231387e0938608be20a7471cb3d77d31 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/de.pak
618f3f11a180e10bc63e71142d7d1b62978d77ffe8412ccad279c00922ba64cc : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/el.pak
af470104dca262e4a051c0de64c0cd7466676f7b837add03b9921ba5d213cebd : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/en-GB.pak
1d90b2e9fd70a69da76e0bf3e9538c3e816bf654ce27b48f0a668704d057e0a0 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/en-US.pak
363ce40d5a65a1ad1e7da1a346c4c7afac2fd2dbe47129ba31d8aabfeb261b92 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/es-419.pak
6d1a2bc5d9ae89c1f200eb879d4a690c0aba6b41231434739f51dfdb61241e31 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/es.pak
48f8e3790db7a8dde734440b0419fa4c70e3d70d7877ccc1c8fdb63144f0167a : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/et.pak
247d7c7985f5f44776aaed01342d5bfdbb6865af75d4eac08c5376d92cc515da : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/fa.pak
64c60262575ea46fac920d11bbe29b68aac1c70647196485ac81eff36107a34c : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/fi.pak
ceaa93d7bc76876c6153b1d6c1d61d36baa25ded7b4adb91ceb359bc4fc67313 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/fil.pak
a6e5ba2e96ee972e690402673bcbbc9eeaf9ffd19d5751b22ecc4cf1a72f6522 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/fr.pak
8d79cfcd89f9195cc958c651da0e37c45ca121aade61cc99ad204f9793b35a6e : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/gu.pak
29120d4dfef528867041477ae5373e8d4501dc4b426f85213956ba2d6f4e969a : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/he.pak
17cab9683778ab1747d39f60ea0e946c86ee70543e40429f1d4b1757d51f7d9c : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/hi.pak
f260aad8b8ba82927d7aa5f0c11f967871875deab904e30649f759b832d25ae0 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/hr.pak
0d5a89b86d834c73e13cb043db8db41eded46cc96e8b5b48533f92a5afd8fc62 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/hu.pak
9d0ca6b5589b553f6a944cd088463c3b26a6e4ec4f103423c004569d54e8afab : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/id.pak
97ab6db4e337dcf9341c570e8b98e74ac08f7874a048e2712aa73dbc5f4b6c57 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/it.pak
57c6430c1a5fd54f683f0fcb7b3ac9b4dce38b75911366e5ee0e72e56c302c62 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/ja.pak
c69f733f617519f2e2136c0f43297e14a4a33a0f4043e96075a80055952ffe7a : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/kn.pak
c51e9a025afb3c3a91a5b1d76b35a13f26f1d760a9333a866dbff6ef7ac8ff3c : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/ko.pak
0770d88d7326e728fd7e743c6372970e005ec196702fb38717bc40b881367cb1 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/lt.pak
0c76f3ab8a92dc467630316e86e9ee01bed958ead050d0b13860ad5566f56bc2 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/lv.pak
3e40d05e48b13a8249d3f99cd367ab336c314a87844dd6c70febcc99a68b12a4 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/ml.pak
b4bc5fa574f2e2f9665e1afd2b1f94fcef058d390994a560da00069a8b3767eb : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/mr.pak
ff3c6394c3f63137ea800f966421c508ebaee9e6eba495b497bc2ab3fc545c97 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/ms.pak
7bd021872785b3e7aeaea8f7e4b69f3210e6c1f469520daf4404623997be7c51 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/nb.pak
4d7e838b5160fe09efaad1172e5163e8d568742edc0891cba52b9c6a95355819 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/nl.pak
2d6c90554e1983fbbd7eb60be926e5ae9fecaf3f68c59783332d6d6dc528acb7 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/pl.pak
1846fb50ce63bb4faeb6d6aba1b97a573f6f0280accd1f9060f0ea791b60f2b5 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/pt-BR.pak
3df807c78cb2400a7f1bfc26aa4bbbf27ebda149d7f3c9d3c950730bfec25df8 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/pt-PT.pak
60f7e305b39a4857fdfc8e2ed128369571151b56291a11d1df7358f94a42432b : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/ro.pak
f23e300721bb4aab85aa9ea2378dbe901e16bd6265b2075e52e23982192283e4 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/ru.pak
7d8eb0a7c913288f13a5643e7df1a5b7261f838f83235b0b991ee1d194cf949c : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/sk.pak
64193756ecaa5009b22ff83abdb5e1c28c1cca18479da82067706cf07bc1df50 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/sl.pak
e253c3d509a3b1f63d07cbe763abcf7e7eb14c157b63606edd2efa368776cdd2 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/sr.pak
3ff475df6e2a51f224ade19d6672582e3fc5e5e18c149b827eb951b4eac36c30 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/sv.pak
32dd907d1b2f1c4b665e0dce4a6daaa72ec56b44e41257eaacec4d33e19d6c11 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/sw.pak
8f2c02243103542a5837693aa38377969be9af766f860924252ddfa350cd8320 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/ta.pak
78757eb5c60ef50e3d3eb63be29c099affbaafdcf74f1f857ff02911202ebab3 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/te.pak
b357b9bbc4cf5a6e07a29fe04dfa7f180e99e8480028d0e9e92e3e31a3a04b1c : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/th.pak
6a0e478a65e4e14ae383eaca28475ce5e2b0ba39148d492e089f05456b07e89c : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/tr.pak
ef40a5efdf61d021d89257dbf145811bbfcfb77b9d98d639781023a6b85a0b41 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/uk.pak
b87da8857851c8ea80f31394917fc0a84b1fc954e9a110d281436e63d572fba7 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/ur.pak
d8a64c803262e3f04b567310d7aa930360c011c3e3f950a7d8b0ad0eefff765e : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/vi.pak
349edc5ea37b7c6e1d578eb333b8cf837413d9093f58d7634d02ad816df7a7cc : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/zh-CN.pak
12c26af0015e7d27354bf53f42b9afd8b56dbaa1efde17f5da56ed31eba066d0 : Chromium-stable/Chrome-bin/131.0.6778.265/Locales/zh-TW.pak
44844cf3dde6e80087ae0e6bf0d9326d7ef7d23326d24ac83af0850be26923d2 : Chromium-stable/Chrome-bin/131.0.6778.265/MEIPreload/manifest.json
c6070a157b4e28d16fbccbd233e93846ddb070c85e1a1bc64469b7a5f1424fad : Chromium-stable/Chrome-bin/131.0.6778.265/MEIPreload/preloaded_data.pb
2b64038fd2b04c13f23997e250f131e0f314fde1c906ab8cedcf692ac80d6f67 : Chromium-stable/Chrome-bin/131.0.6778.265/PrivacySandboxAttestationsPreloaded/manifest.json
66d29ce2059cadcb876aa347bbc9826851dbfe23d0950910636637002406ce10 : Chromium-stable/Chrome-bin/131.0.6778.265/PrivacySandboxAttestationsPreloaded/privacy-sandbox-attestations.dat
6783262d7a61d1fde8ba2aee4499b567c2b1daabe644114a0eed5269585b2b49 : Chromium-stable/Chrome-bin/131.0.6778.265/VisualElements/Logo.png
2a0729eadf2d91a4a13b8ee3f5326663cb6b4254a3449f852fc8f0742f67b7e8 : Chromium-stable/Chrome-bin/131.0.6778.265/VisualElements/SmallLogo.png
129231d5e8fec33902dc053bfeabb20910b26ee124ce1965730a9afd0fb4be64 : Chromium-stable/Chrome-bin/131.0.6778.265/chrome.dll
ec3b3ef9796d1cc05ae268f9c37d2bc6ba6461bb1104c60d79ae3cca05c31630 : Chromium-stable/Chrome-bin/131.0.6778.265/chrome_100_percent.pak
91d39e2365a900d84ff5c5455a8894a94150e98aad900eddfe7cc63794cf6c87 : Chromium-stable/Chrome-bin/131.0.6778.265/chrome_200_percent.pak
104c3422a9dcba5ed5df190ed5b658864df5a937522a122e729f1c1503411fd1 : Chromium-stable/Chrome-bin/131.0.6778.265/chrome_elf.dll
b1c96cb99fd847476575217fadf7030fc4c2faa63114ad2d9340f645d69c6ee8 : Chromium-stable/Chrome-bin/131.0.6778.265/chrome_pwa_launcher.exe
bbcf249d44a71ed0592f6cfe161311a8e3c24d33db122312f0a094eb0a2dd410 : Chromium-stable/Chrome-bin/131.0.6778.265/chrome_wer.dll
a05d04a270f68c8c6d6ea2d23bebf8cd1d5453b26b5442fa54965f90f1c62082 : Chromium-stable/Chrome-bin/131.0.6778.265/d3dcompiler_47.dll
b1031ba11f21c9bf416e03212b1f9d2f06a09a2d60f321c7e08a5acdfd2f0d82 : Chromium-stable/Chrome-bin/131.0.6778.265/dxcompiler.dll
6c37738cd2fb4d659b0f49dead8311ae75c93b8c6602b991c00e070f7be20bc1 : Chromium-stable/Chrome-bin/131.0.6778.265/dxil.dll
6b5565b0b0ac296363b7cff831c8535bfe51c9e7c9ab1b1f1c58eb783b285b60 : Chromium-stable/Chrome-bin/131.0.6778.265/eventlog_provider.dll
9192f5453665fcfde180f1283f2fbccc477f4daa0081e3903ec02d9242721860 : Chromium-stable/Chrome-bin/131.0.6778.265/icudtl.dat
0caa7a34984dbb7f64da8d3fe5a41520883f3db09ae630a8d0a8f2ec3b5a50cf : Chromium-stable/Chrome-bin/131.0.6778.265/libEGL.dll
5e5937b6c5f57f9553107d39eed44d2526f98a6499445856fc039db918774b19 : Chromium-stable/Chrome-bin/131.0.6778.265/libGLESv2.dll
f1e9f545cfa845fa13d56c7ed2cf9363fba1603ca408ffe39fa37a12d7e67616 : Chromium-stable/Chrome-bin/131.0.6778.265/notification_helper.exe
c2b378b77003d38c49186a7d84cd0f635ea5bb67c96f5ec0afd2519dc6123e02 : Chromium-stable/Chrome-bin/131.0.6778.265/resources.pak
7c281f19ecde9d59c27060ace60d10773a31477743babaf3b6d52335887d8487 : Chromium-stable/Chrome-bin/131.0.6778.265/v8_context_snapshot.bin
5bebc7dd4ab5a697e883b37919f204be9681642decb0b548321743965fe08ccb : Chromium-stable/Chrome-bin/131.0.6778.265/vk_swiftshader.dll
32d83ff113fef532a9f97e0d2831f8656628ab1c99e9060f0332b1532839afd9 : Chromium-stable/Chrome-bin/131.0.6778.265/vk_swiftshader_icd.json
bdf2b16b2cd7c70ebae3f646145ac5c04322e788ae6b3616fbecb9d02ce0a341 : Chromium-stable/Chrome-bin/131.0.6778.265/vulkan-1.dll
4c8816a8c4b7912631f84d05109ccdf1b60b1bbeadd5a5546f3855fbfccb7c24 : Chromium-stable/Chrome-bin/chrome.exe
34c3e4db7dfd5e79c9364b4fe37ac5b0eea730de29289860ad2e09384775f7f0 : Chromium-stable/Chrome-bin/chrome_proxy.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
f2d821af1aaa4ac7d428b7822bd059c0187f39be82b64c55de5ff8a1855a9c43 : WAPT/control
eb39468140f268f2c4ab888344aaa0c15c79569f0f162d76e798d7ae9594de0c : WAPT/icon.png
ec1c63d8eb91f1e872eec14ac9addaff7667bed7e10f384faae69bf516bf5096 : luti.json
8891fb934c458662b0cacb5444fc18b5d024a6efb9ef20ab916379df060c756c : setup.py
42517609953495ebd559f19f31621de1bfdffdc4da4fcdee91d6ed62c5385c47 : update_package.py