tis-art icon

ART

Silent install package for ART

1.25.8-0

  • package: tis-art
  • name: ART
  • version: 1.25.8-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: 88.77 Mo

package           : tis-art
version           : 1.25.8-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          : PROD
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      : 27fc6d8c-a57a-499f-ad43-fb020765f10d
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 060b0822463b8a8824aab9481e3da229504ed4fac52c278585e90d5579672af5
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-08-09T12:05:19.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         : qngQTJ+p5p9IYrdFgJSmtViuVXzGDeXprBMfwtnDWJbrK0i1S4QybdZlp9epJsOeljiMg1s/1gp6CVBy6auy7UpLAaKvvaK5NOzw78gDu4Ug1Gk0gRtaPTQg+B5tqC8QyDwF2rtsh7OIEHBDbBcOz/yOcTOtTFMTtxeeV1Zd82k8rx6LD/5agjbEREb6m3bZQVcUHCc8DWKYk+i72W5oI3p+jV/pRjRmmuzfjKbZxy2tKOupaVzQIES263qA2IoDXx3j+ExeTRAGtZIwQ556xVTLm3y8/5uc7qnfV8dRu5eFNYBdNAdrb8R0ddYzWoEKGPS6aNtSX/RiSf6ClzRqaQ==

# -*- 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

5b90ab4a34ef4933de766a3b3bdb5b269ca3dcdf43614ac14817dd1601a64dfe : ART_1.25.8_Win64.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
8bbdaf2a2d2a171ed52bf204956c9c7e1bdaa8de73164e150f810dac23f03cb5 : WAPT/control
060b0822463b8a8824aab9481e3da229504ed4fac52c278585e90d5579672af5 : WAPT/icon.png
b017dead99f174d9e91a78c563e110cb38cb19630d8ae1b374a689830819002b : luti.json
34571d20e3d743ea0e51c8e6174bb7c8c260655c086ba124d6a7f1d5090f5622 : setup.py
c68ec82a08e125f21d500123368366926c58fcbfd3faf510a517e9843b7394b4 : update_package.py