XnConvert
Paquet d'installation silencieuse pour XnConvert
1.114.0.0-2
Media
Media
- package: tis-xnconvert
- name: XnConvert
- version: 1.114.0.0-2
- categories: Media
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ
- editor: Pierre-e Gougelet
- licence: opensource_free,wapt_public
- target_os: windows
- impacted_process: xnconvert
- architecture: x64
- signature_date:
- size: 27.94 Mo
package : tis-xnconvert
version : 1.114.0.0-2
architecture : x64
section : base
priority : optional
name : XnConvert
categories : Media
maintainer : WAPT Team,Tranquil IT,Amel FRADJ
description : XnConvert is a powerful, free, cross-platform batch processor that lets you combine more than 80 actions
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version : 2.3
sources :
installed_size :
impacted_process : xnconvert
description_fr : XnConvert est un puissant processeur d'images par lots multiplateforme gratuit, vous permettant de combiner plus de 80 actions
description_pl : XnConvert to potężny, darmowy, wieloplatformowy procesor obrazu, który pozwala łączyć ponad 80 działań
description_de : XnConvert ist ein leistungsstarker, plattformübergreifender, kostenloser Stapelbildprozessor, mit dem Sie über 80 Aktionen kombinieren können
description_es : XnConvert es un potente procesador de imágenes por lotes gratuito y multiplataforma que te permite combinar más de 80 acciones
description_pt : O XnConvert é um poderoso processador de imagens em lote gratuito e multiplataforma que permite combinar mais de 80 acções
description_it : XnConvert è un potente elaboratore di immagini in batch multipiattaforma gratuito che consente di combinare più di 80 azioni
description_nl : XnConvert is een krachtige gratis cross-platform batch-afbeeldingsprocessor waarmee je meer dan 80 acties kunt combineren
description_ru : XnConvert - мощный бесплатный кроссплатформенный пакетный процессор изображений, позволяющий объединять более 80 действий
audit_schedule :
editor : Pierre-e Gougelet
keywords :
licence : opensource_free,wapt_public
homepage :
package_uuid : df046c5a-ff33-4746-b6e1-c5f268cfe1e5
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 07e300b1dc5d89665f43190c4e69a2b652eb55ef69f4107b1fb8ae8b34d3c2a1
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-08-09T17:00:33.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 : d5wTsFgSuvskNh9kpa61wcYAxd7IMtWQ9eWMXG01WB4rnOHlwvUnJ4UQVepbfsKZu0tlHUEFwn/yAUEGrfS1s4NcbgVApT9wVFVU4lUQa4qhsf699b/L4XVNxUH0MGE4P7oGvDrnVZwa4l4Gc8bysq9Q5a4F41V83q3UEpzLvzKcVgPvF/s0rpg7RXupzbsv+SXNPk+36rloMubQqavcIjkRV9HQseiTt2QWYxoKrVgA+o0BbIOdA9Bc3FfyEdbKpl/i5vLJxZl++WMEskV1ZOOp0FwvSB8GCb5WQEsxHhHEazv7wDcVOlr0r1vfe1uh1i/jNCdFcApZyRgClkq+7w==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def install():
# Declaring local variables
# Installing the software
install_exe_if_needed('XnConvert-win-x64.exe',
silentflags='/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-',
key='XnConvert (x64)_is1',
min_version=control.get_software_version(),
)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import waptlicences
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
download_url = "https://download.xnview.com/XnConvert-win-x64.exe"
latest_bin = download_url.split("/")[-1]
latest_bin_extension = latest_bin.rsplit('.', 1)[-1]
# Downloading latest binaries
print(f"Download URL is: {download_url}")
if not isfile(latest_bin):
print(f"Downloading: {latest_bin}")
wget(download_url, latest_bin, proxies=proxies)
else:
print(f"Binary is present: {latest_bin}")
version = get_version_from_binary(latest_bin)
expected_issuer = "GOUGELET PIERRE-EMMANUEL"
sign_name = waptlicences.check_msi_signature(latest_bin)[0]
if sign_name != expected_issuer:
error(f'Bad issuer {sign_name} != {expected_issuer} ')
# 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)})")
for f in glob.glob(f'*.{latest_bin_extension}'):
if f != latest_bin:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
return package_updated
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
899a752f9a932f2469f59b540571d07b9c486eff83e55203770d8c1522908199 : WAPT/control
07e300b1dc5d89665f43190c4e69a2b652eb55ef69f4107b1fb8ae8b34d3c2a1 : WAPT/icon.png
5d8d49122d4a2ad001a3329acd60695beb5e0e9fb5adb74a65cfc41b012ee5b8 : XnConvert-win-x64.exe
c13c5ac75b19b8794427e0a13557bb1cd6d0a5261c51f63bf118d02792c2fd19 : luti.json
38477da36a3bc5a0469a7591ad53de6ce5385166be24ad97c1e69884af874b6f : setup.py
c08b56b64734fd1619dada0582631586c48dfbf5692eac8aa30dfc9fc346b1cf : update_package.py