Les paquets PREPROD sont des paquets construits via LUTI.
Ils restent généralement 5 jours en PREPROD, après quoi un scan VirusTotal est effectué.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.
- package: tis-art
- name: ART
- version: 1.25.9-0
- categories: Media
- maintainer: WAPT Team,Tranquil IT,Joffrey Le Piquet
- locale: all
- target_os: windows
- impacted_process: art.exe
- architecture: x64
- signature_date:
- size: 91.39 Mo
package : tis-art
version : 1.25.9-0
architecture : x64
section : base
priority : optional
name : ART
categories : Media
maintainer : WAPT Team,Tranquil IT,Joffrey Le Piquet
description : Cross-platform raw image processing program. ART is a derivative of the popular RawTherapee.
depends :
conflicts :
maturity : PREPROD
locale : all
target_os : windows
min_wapt_version : 2.3
sources : https://github.com/artpixls/ART
installed_size :
impacted_process : art.exe
description_fr : Programme de traitement d'images brutes multiplateforme. ART est un dérivé du populaire RawTherapee.
description_pl : Wieloplatformowy program do przetwarzania surowych obrazów. ART jest pochodną popularnego RawTherapee.
description_de : Plattformübergreifendes Programm zur Bearbeitung von Rohbildern. ART ist ein Derivat des beliebten RawTherapee.
description_es : Programa multiplataforma de tratamiento de imágenes en bruto. ART es un derivado del popular RawTherapee.
description_pt : Programa de processamento de imagens brutas multiplataforma. O ART é um derivado do popular RawTherapee.
description_it : Programma multipiattaforma per l'elaborazione di immagini grezze. ART è un derivato del popolare RawTherapee.
description_nl : Cross-platform raw beeldbewerkingsprogramma. ART is een afgeleide van het populaire RawTherapee.
description_ru : Кроссплатформенная программа для обработки необработанных изображений. ART является производной от популярной программы RawTherapee.
audit_schedule :
editor :
keywords :
licence :
homepage :
package_uuid : 9274e641-4758-4ecb-a6bd-37332f6c5bd9
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 060b0822463b8a8824aab9481e3da229504ed4fac52c278585e90d5579672af5
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2025-09-17T14:37:13.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 : cxdqlxo94oDJ//JwSxUQAwKq0VfFugV2qpKJ4LgKGlbsbG4wb/e540ZhMrnUVbZyh78BHevVv5L+Np7WxNHQ4EMjvrMr/PAtWVmLfMm1mQ/zORxBXlpopuox1xb7dwzmYUy+B90b0rQ/XvucUhueMhUx7eCBhMdXWqq8F8IUgeIaJUXZCFrmiiCnc0dAyNxiXZDAWa4E3yFxFGlipDugDtJUZOwHh5LG8ZtyJvtpgcqjlMrxtTCjNyJKMgb5imYnlAlniFB4iD05p855Sv73ja3kKJequD1NI56g+dgZ2Ct4Ze6kSz5/ChYTWDDvlsGmIXRrT7QhLuct1Px/w0OPXw==
# -*- 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 *
def install():
bin_name = glob.glob("ART_*_Win64.exe")[0]
# Uninstalling older version of the software that can remains
for to_uninstall in installed_softwares(name="ART version"):
if Version(to_uninstall["version"]) < Version(control.get_software_version()):
print(f"Removing: {to_uninstall['name']} ({to_uninstall['version']})")
killalltasks(ensure_list(control.impacted_process))
run(uninstall_cmd(to_uninstall["key"]))
wait_uninstallkey_absent(to_uninstall["key"])
install_exe_if_needed(bin_name, min_version=control.get_software_version(), key=f"ART{control.get_software_version()}_is1")
# -*- 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 *
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
update_dict = {"windows": ".exe"}
api_url = "https://api.github.com/repos/artpixls/ART/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(".exe") and update_dict[control.target_os] in asset["browser_download_url"]:
url_download = asset["browser_download_url"]
latest_bin = url_download.split("/")[-1]
version = releases_dict["tag_name"]
break
# Downloading latest binaries
print(f"Latest version of {control.name} is: {version}")
print("Download URL is: %s" % url_download)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(url_download, latest_bin, proxies=proxies)
else:
print("Binary is present: %s" % 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
2464fef7c3493d12ae834055a85615440d427e80928f6e487e49a289317f2ec9 : ART_1.25.9_Win64.exe
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
df9a9b36747d754f48b025cfa2137b505fa28512413626e59b75071d34f1b052 : WAPT/control
060b0822463b8a8824aab9481e3da229504ed4fac52c278585e90d5579672af5 : WAPT/icon.png
1b8dac87652003bbf9a913194fe6e98c6a1d48dcd7a6061a36a794d209950ec0 : luti.json
34571d20e3d743ea0e51c8e6174bb7c8c260655c086ba124d6a7f1d5090f5622 : setup.py
c68ec82a08e125f21d500123368366926c58fcbfd3faf510a517e9843b7394b4 : update_package.py