tis-chromium-stable
131.0.6778.205-1
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.205-1
- 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-08T12:11:47.000000
- size : 159.52 Mo
- locale : all
- target_os : windows
- impacted_process : chrome
- architecture : x64
control
package : tis-chromium-stable
version : 131.0.6778.205-1
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 : f9a890ea-0ac6-42b1-8973-65d0670f870b
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-08T12:11:47.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 : YnY0JMZGlfJoVPNH3sB2tiyqCtC1Etx9Dwhwk2x214Hi+O9/RlglkysPCBF6zU1wl/AQtvf5ZZJkAo2BJpSGq8iqTdRI0PlnaUWoWLw8h7NP+F1cchr3iKOBNiHEm1NJfKHJT+QPU+JS94aMz2aEnbHN7l8cI3EdJS/LLGeFRC/ali7FmioDqCG6k0ZiS9Rh6S3ZJb1y4AANCIT6k2OQaEIjf5zlUcBhDdCZYaipBFkT3VzoN71d7KUQcKdE9Ev2FcHd5bD+Op9kw+w0GXMpntj1ZY3p7D3IPinRg8K43fZoQCh1ZecGy604vvVccEUhLKf/QzoquO4uTDPUYdBzaQ==
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(app_name)
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
00ca2050e3095057df3218c164f4463f123d07b11cb8a2647ee2d49b027d3554 : Chromium-stable/Chrome-bin/131.0.6778.205/131.0.6778.205.manifest
a68cafd7d78d5c671c2560656653f2a4d83ab66d87a8728356a88fb1f477b3e6 : Chromium-stable/Chrome-bin/131.0.6778.205/Extensions/external_extensions.json
c4f073fd0f50be6597e71b983df0fe10b4b014b48324edefc731440dfe08227f : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/af.pak
92c57d7eec85c9d1d792e274170f97e938f1fc6e637cdc823cc41cafb4c7d1d0 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/am.pak
02546f597c8593e73a4c85549b9c1b2094a018f7694f38ed58e25c7e4d2b3d3a : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/ar.pak
96bc603b4f6c27fce484dae2d87500c333a0ff88197229c0341687c26ce82ae5 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/bg.pak
ba26314633a4eb872259c6cfe382a72b3077ce7f761d95fb9082cd20a3a34513 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/bn.pak
b4d6d6b81a9a780d4790d5aa22f81628f6374e6d0c1fd6857db5ffc1b2b9569e : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/ca.pak
5226ed8ff2f08b8fa7f78ab0eb0624320f4406520664267ac502318a30e2c031 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/cs.pak
bf9944fd7f908af852ea96f4aec7b28a44e362257f3201e1b6c7572a40912a23 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/da.pak
9145ea7bd32f5b608bad5ed2c53b408a231387e0938608be20a7471cb3d77d31 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/de.pak
618f3f11a180e10bc63e71142d7d1b62978d77ffe8412ccad279c00922ba64cc : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/el.pak
af470104dca262e4a051c0de64c0cd7466676f7b837add03b9921ba5d213cebd : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/en-GB.pak
1d90b2e9fd70a69da76e0bf3e9538c3e816bf654ce27b48f0a668704d057e0a0 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/en-US.pak
363ce40d5a65a1ad1e7da1a346c4c7afac2fd2dbe47129ba31d8aabfeb261b92 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/es-419.pak
3624f5931bcc3d4daab2490e65a26f940e72fee6cf2f08a416f30707de2c9a09 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/es.pak
ac623d0aa8ed1e138e17ecb1af8560f49a80235428b5cae756707ccc4e62ad8b : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/et.pak
5be49b0dbdaa8a00868dc55db788bf2cf8d7a6e06e8c91bf4e0fec08d5ca7684 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/fa.pak
e30d84b1777b0c08020da313b5df1ada97fce0692b14c58c4b1da51f657dcefe : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/fi.pak
ceaa93d7bc76876c6153b1d6c1d61d36baa25ded7b4adb91ceb359bc4fc67313 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/fil.pak
e5045da0c86c8d8b429082232dd567098e88f111f7021a9bc1219c474f553b9f : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/fr.pak
8d79cfcd89f9195cc958c651da0e37c45ca121aade61cc99ad204f9793b35a6e : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/gu.pak
29120d4dfef528867041477ae5373e8d4501dc4b426f85213956ba2d6f4e969a : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/he.pak
17cab9683778ab1747d39f60ea0e946c86ee70543e40429f1d4b1757d51f7d9c : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/hi.pak
46c019db13c1a28866e3a5ffa1080a96438389d7ff9aa44b9f2ce328ae975090 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/hr.pak
0d5a89b86d834c73e13cb043db8db41eded46cc96e8b5b48533f92a5afd8fc62 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/hu.pak
9d0ca6b5589b553f6a944cd088463c3b26a6e4ec4f103423c004569d54e8afab : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/id.pak
97ab6db4e337dcf9341c570e8b98e74ac08f7874a048e2712aa73dbc5f4b6c57 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/it.pak
d0d32888d2afb86a5b386b242a416efc4e3605d77c58d11fbc0d037e28d84a41 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/ja.pak
c69f733f617519f2e2136c0f43297e14a4a33a0f4043e96075a80055952ffe7a : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/kn.pak
2842139c5225d0e9749e89f3b85b99f024eae0d7fd3f53559f7953955552e0a5 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/ko.pak
0770d88d7326e728fd7e743c6372970e005ec196702fb38717bc40b881367cb1 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/lt.pak
8a3e362130afd822a079240e74675c99c554a1c82ea4916cdd79f8f9a7ba479b : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/lv.pak
1da4755a69b866779fe2aafb264fd3e4810ca4f4fd8c3efe48ab90845ae04811 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/ml.pak
b4bc5fa574f2e2f9665e1afd2b1f94fcef058d390994a560da00069a8b3767eb : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/mr.pak
ff3c6394c3f63137ea800f966421c508ebaee9e6eba495b497bc2ab3fc545c97 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/ms.pak
7bd021872785b3e7aeaea8f7e4b69f3210e6c1f469520daf4404623997be7c51 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/nb.pak
30e67d00a3ee37af6a6980db928533d7d50b39826dcbec3254673e0d972d6c13 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/nl.pak
2d6c90554e1983fbbd7eb60be926e5ae9fecaf3f68c59783332d6d6dc528acb7 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/pl.pak
1846fb50ce63bb4faeb6d6aba1b97a573f6f0280accd1f9060f0ea791b60f2b5 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/pt-BR.pak
3df807c78cb2400a7f1bfc26aa4bbbf27ebda149d7f3c9d3c950730bfec25df8 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/pt-PT.pak
60f7e305b39a4857fdfc8e2ed128369571151b56291a11d1df7358f94a42432b : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/ro.pak
4f46fbc153d439bfbb04b19424625f2342b38a3625b334d073f60bbe5264b598 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/ru.pak
83c74922c318ebe3a6fd694c51fe349e96d9f5550863278adb4a76308d140470 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/sk.pak
967eed70a8bd391c966d5c82c6eefaeff94b51584e4823336aa5f74b3d4ff304 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/sl.pak
4c3a0f1e6b2c0a16262ba63520448800b137e95b029eb4c255343190fc8cf8a6 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/sr.pak
c76108785a567bfffa1d046da1c95325278e40815f038a01189e2da0ab0970d2 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/sv.pak
32dd907d1b2f1c4b665e0dce4a6daaa72ec56b44e41257eaacec4d33e19d6c11 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/sw.pak
8f2c02243103542a5837693aa38377969be9af766f860924252ddfa350cd8320 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/ta.pak
78757eb5c60ef50e3d3eb63be29c099affbaafdcf74f1f857ff02911202ebab3 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/te.pak
b357b9bbc4cf5a6e07a29fe04dfa7f180e99e8480028d0e9e92e3e31a3a04b1c : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/th.pak
6a0e478a65e4e14ae383eaca28475ce5e2b0ba39148d492e089f05456b07e89c : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/tr.pak
7d182f2aad8918ae131bb71166e6a7ee1c7224a37929f2a522c8f298427fc676 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/uk.pak
b87da8857851c8ea80f31394917fc0a84b1fc954e9a110d281436e63d572fba7 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/ur.pak
46098d744f46e83e8d7fb5d57ea58c3b4000e749e853433b917da4886f705924 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/vi.pak
7620b59abe13ea5eb13ccf5603a5cc7b779d46e8e995b18051443336228296ec : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/zh-CN.pak
12c26af0015e7d27354bf53f42b9afd8b56dbaa1efde17f5da56ed31eba066d0 : Chromium-stable/Chrome-bin/131.0.6778.205/Locales/zh-TW.pak
44844cf3dde6e80087ae0e6bf0d9326d7ef7d23326d24ac83af0850be26923d2 : Chromium-stable/Chrome-bin/131.0.6778.205/MEIPreload/manifest.json
c6070a157b4e28d16fbccbd233e93846ddb070c85e1a1bc64469b7a5f1424fad : Chromium-stable/Chrome-bin/131.0.6778.205/MEIPreload/preloaded_data.pb
2b64038fd2b04c13f23997e250f131e0f314fde1c906ab8cedcf692ac80d6f67 : Chromium-stable/Chrome-bin/131.0.6778.205/PrivacySandboxAttestationsPreloaded/manifest.json
66d29ce2059cadcb876aa347bbc9826851dbfe23d0950910636637002406ce10 : Chromium-stable/Chrome-bin/131.0.6778.205/PrivacySandboxAttestationsPreloaded/privacy-sandbox-attestations.dat
6783262d7a61d1fde8ba2aee4499b567c2b1daabe644114a0eed5269585b2b49 : Chromium-stable/Chrome-bin/131.0.6778.205/VisualElements/Logo.png
2a0729eadf2d91a4a13b8ee3f5326663cb6b4254a3449f852fc8f0742f67b7e8 : Chromium-stable/Chrome-bin/131.0.6778.205/VisualElements/SmallLogo.png
68e839e1c5e8bc25717cce1b5ac95c0a510c08d17c4ab5cd67ccb6526aa5e60e : Chromium-stable/Chrome-bin/131.0.6778.205/chrome.dll
ec3b3ef9796d1cc05ae268f9c37d2bc6ba6461bb1104c60d79ae3cca05c31630 : Chromium-stable/Chrome-bin/131.0.6778.205/chrome_100_percent.pak
91d39e2365a900d84ff5c5455a8894a94150e98aad900eddfe7cc63794cf6c87 : Chromium-stable/Chrome-bin/131.0.6778.205/chrome_200_percent.pak
796d4ef7e849a82bfae07e4574803eb737534b4201efbe8d358e726456182902 : Chromium-stable/Chrome-bin/131.0.6778.205/chrome_elf.dll
e89ef5aab1b82eafa6de752a5a55702bca1a45fcf7c20c772708349c0bfe66fc : Chromium-stable/Chrome-bin/131.0.6778.205/chrome_pwa_launcher.exe
3ccc9b715859d95da1ae5d45a88423d912b3b4a579fa0e0f2d9c9699cf2fc6de : Chromium-stable/Chrome-bin/131.0.6778.205/chrome_wer.dll
a05d04a270f68c8c6d6ea2d23bebf8cd1d5453b26b5442fa54965f90f1c62082 : Chromium-stable/Chrome-bin/131.0.6778.205/d3dcompiler_47.dll
2e07ceec3fba2899c03ec472baf1d2c294265b9408f67d8ab97e26ecc9ac7615 : Chromium-stable/Chrome-bin/131.0.6778.205/dxcompiler.dll
6c37738cd2fb4d659b0f49dead8311ae75c93b8c6602b991c00e070f7be20bc1 : Chromium-stable/Chrome-bin/131.0.6778.205/dxil.dll
19334e96380377cbeda02f290f2e161d6707b3b7ecdfacad38aedb14581ebcac : Chromium-stable/Chrome-bin/131.0.6778.205/eventlog_provider.dll
9192f5453665fcfde180f1283f2fbccc477f4daa0081e3903ec02d9242721860 : Chromium-stable/Chrome-bin/131.0.6778.205/icudtl.dat
72bfc5d11b8ca9ca1ef48edf7e413d7ee95c1bd357fc351ab8e12861a038016d : Chromium-stable/Chrome-bin/131.0.6778.205/libEGL.dll
d2d4b39fc2ce4db75742d251b0cc94f9c26f15230ead218fba57f12fa86ee0a8 : Chromium-stable/Chrome-bin/131.0.6778.205/libGLESv2.dll
224f9e02dd9209a4dd260120f339862709c280934c5c2e51d750580d3db5051f : Chromium-stable/Chrome-bin/131.0.6778.205/notification_helper.exe
94b91a0a81fc0d24b9bfcae9adacb1b0c8473b2d83eee37a888c7fca8528edd6 : Chromium-stable/Chrome-bin/131.0.6778.205/resources.pak
64fae92b41d8deb303eb0ec68dadd1acee39e3b6104ad371179b9a48d1624577 : Chromium-stable/Chrome-bin/131.0.6778.205/v8_context_snapshot.bin
c1cc6c4e489e1213b35ec7bb520bd91c2224f449f2a1693ebd4db4377c6e6666 : Chromium-stable/Chrome-bin/131.0.6778.205/vk_swiftshader.dll
32d83ff113fef532a9f97e0d2831f8656628ab1c99e9060f0332b1532839afd9 : Chromium-stable/Chrome-bin/131.0.6778.205/vk_swiftshader_icd.json
9e8817c60775485247f750df005b53b7100f679942a247c0a99fc16f050ce162 : Chromium-stable/Chrome-bin/131.0.6778.205/vulkan-1.dll
13627d58d1c816421ad5ae6754a20b8f50d592f294c07838a2ac1913a1e69980 : Chromium-stable/Chrome-bin/chrome.exe
dae83b61f31f57c8b21cff79a67d964a064414b6b2f6e52b54ab2275ce3aa777 : Chromium-stable/Chrome-bin/chrome_proxy.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
431bb34901cfc6aa4aeb320e2739c3f4709c5ea92434487d74fdc3543be05721 : WAPT/control
eb39468140f268f2c4ab888344aaa0c15c79569f0f162d76e798d7ae9594de0c : WAPT/icon.png
84f25295c7afd7931ed316d69e5a7f88ab87eff09281df9ef83935a9ca1cefa2 : luti.json
250442252570c0c9ce172a7c0fd6d9a95d7fda2a6ebb487ddb45013c329343d8 : setup.py
42517609953495ebd559f19f31621de1bfdffdc4da4fcdee91d6ed62c5385c47 : update_package.py