extratermqt
Paquet d'installation silencieuse pour extratermqt
0.82.0-1
Drivers
Drivers
- package: tis-extratermqt
- name: extratermqt
- version: 0.82.0-1
- categories: Drivers
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ
- licence: opensource_free,wapt_public
- target_os: windows
- architecture: all
- signature_date:
- size: 42.06 Mo
- homepage : https://extraterm.org/
package : tis-extratermqt
version : 0.82.0-1
architecture : all
section : base
priority : optional
name : extratermqt
categories : Drivers
maintainer : WAPT Team,Tranquil IT,Amel FRADJ
description : Extraterm is an open-source terminal emulator that aims to add a host of new features to bring the traditional terminal into the modern age
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version : 2.3
sources :
installed_size :
impacted_process :
description_fr : Extraterm est un émulateur de terminal open source qui vise à ajouter de nombreuses nouvelles fonctionnalités pour amener le terminal traditionnel dans l'ère moderne
description_pl : Extraterm to emulator terminala o otwartym kodzie źródłowym, który ma na celu dodanie wielu nowych funkcji, aby wprowadzić tradycyjny terminal w nowoczesną erę
description_de : Extraterm ist ein Open-Source-Terminalemulator, der darauf abzielt, viele neue Funktionen hinzuzufügen, um das traditionelle Terminal in das moderne Zeitalter zu bringen
description_es : Extraterm es un emulador de terminal de código abierto que pretende añadir una serie de nuevas funciones para llevar el terminal tradicional a la era moderna
description_pt : Extraterm é um emulador de terminal de código aberto que tem como objetivo adicionar uma série de novas funcionalidades para trazer o terminal tradicional para a era moderna
description_it : Extraterm è un emulatore di terminale open source che mira ad aggiungere una serie di nuove funzionalità per portare il terminale tradizionale nell'era moderna
description_nl : Extraterm is een open source terminalemulator die een groot aantal nieuwe functies wil toevoegen om de traditionele terminal in het moderne tijdperk te brengen
description_ru : Extraterm - это эмулятор терминала с открытым исходным кодом, который призван добавить множество новых функций, чтобы перенести традиционный терминал в современную эпоху
audit_schedule :
editor :
keywords :
licence : opensource_free,wapt_public
homepage : https://extraterm.org/
package_uuid : d5c17038-9b7f-4400-9bbf-64330bc0b298
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 79f14239b771147e531e933f6f0ca584435c03c41eec929e6f714957625552ee
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-05-15T14:03: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 : Fe4EHtIIlBfrPbzM8n2iQkec11mB3mGtW72vgNUrKuHXMsxfUP/KjjB0Xmal1lvCbUlDChI3smSV+GFp3o4SLOtrl9StafcFV7FJ4aShAgbligXo1bT45QNcRjf/ltm1lDncuJptBZbXumUoC7r4w1jcucoe64TVzud1wSJfSnjYUqd4ztY44tzFoC5y8rdth9xwqXChIjfCL4jm91amB/wa6tMc+hitLf3X4X/9txMbYuFzm4zcTPFtP/wzeMjqaMlniu85Wum/jRPtsF79J4uVdEyRbZOw6c7jvJWPR20xc7jzF4BtW+Yo0VwrNd8MoUF2kfdvgKrP+iKY8UWFTQ==
# -*- 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
bin_name = glob.glob('extratermqt-setup-*.exe')[0]
# Installing the software
install_exe_if_needed(bin_name,
silentflags='/S',
key='extratermqt',
min_version=control.get_software_version(),
)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import json
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def update_package():
result = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
git_repo = "sedwards2009/extraterm"
url_api = "https://api.github.com/repos/%s/releases/latest" % git_repo
# Getting latest version information from official sources
print("API used is: %s" % url_api)
json_load = json.loads(wgets(url_api, proxies=proxies))
for download in json_load["assets"]:
if download["browser_download_url"].endswith('.exe') :
url_dl = download["browser_download_url"]
version = json_load["tag_name"].replace("v","")
filename = download["name"]
break
if not isfile(filename):
package_updated = True
wget(url_dl,filename,proxies=proxies)
#nettoyer les fichiers temporaires
for f in glob.glob('*.exe'):
if f != filename:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
f05abd0020109e58d2ba75f671222799d84d8d294759237fffd76728b56214e9 : WAPT/control
79f14239b771147e531e933f6f0ca584435c03c41eec929e6f714957625552ee : WAPT/icon.png
edca880140bc8858e75d2a7395cd45e57149558a55b7d4d102448258fddc3046 : extratermqt-setup-0.82.0.exe
51270530ffce637b9c804a18673628f7e2b1b4f68295504b3cc7797f08bc2e65 : luti.json
c72f0edd43b96553e3d98b63f3eee77b6b7120ae05676c795bbf974131101d5f : setup.py
90ee84732abc21395d223ad1f28e415f3f96fdba159ea4ab5894465085ab5fd6 : update_package.py