tis-teraterm
5.3-1
Tera Term is a terminal emulator program. It emulates different types of computer terminals, it supports Telnet, SSH 1 & 2 and serial port connections
543 downloads
Download
See build result See VirusTotal scan

- package : tis-teraterm
- name : Tera Term
- version : 5.3-1
- categories : System and network
- maintainer : WAPT Team,Tranquil IT,Ingrid TALBOT
- editor :
- licence : opensource_free,cpe:/a:gnu:gpl_v2,wapt_public
- locale : all
- target_os : windows
- impacted_process : ttermpro
- architecture : x64
- signature_date : 2025-01-07 10:09
- size : 9.78 Mo
- installed_size : 18.75 Mo
package : tis-teraterm
version : 5.3-1
architecture : x64
section : base
priority : optional
name : Tera Term
categories : System and network
maintainer : WAPT Team,Tranquil IT,Ingrid TALBOT
description : Tera Term is a terminal emulator program. It emulates different types of computer terminals, it supports Telnet, SSH 1 & 2 and serial port connections
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.3
sources :
installed_size : 18745845
impacted_process : ttermpro
description_fr : Tera Term est un programme d'émulation de terminal. Il émule différents types de terminaux d'ordinateur, supporte Telnet, SSH 1 & 2 et les connexions par port série
description_pl : Tera Term to emulator terminala. Emuluje różne typy terminali komputerowych, obsługuje połączenia Telnet, SSH 1 i 2 oraz port szeregowy
description_de : Tera Term ist ein Terminal-Emulator-Programm. Es emuliert verschiedene Arten von Computerterminals, es unterstützt Telnet, SSH 1 & 2 und serielle Schnittstellenverbindungen
description_es : Tera Term es un programa emulador de terminales. Emula diferentes tipos de terminales de ordenador, soporta Telnet, SSH 1 y 2 y conexiones de puerto serie
description_pt : O Tera Term é um programa emulador de terminal. Ele emula diferentes tipos de terminais de computador, suporta Telnet, SSH 1 & 2 e conexões de porta serial
description_it : Tera Term è un programma di emulazione di terminale. Emula diversi tipi di terminali di computer, supporta le connessioni Telnet, SSH 1 e 2 e la porta seriale
description_nl : Tera Term is een terminal emulator programma. Het emuleert verschillende soorten computerterminals en ondersteunt Telnet, SSH 1 & 2 en seriële poortverbindingen
description_ru : Tera Term - это программа-эмулятор терминала. Она эмулирует различные типы компьютерных терминалов, поддерживает Telnet, SSH 1 & 2 и соединения с последовательным портом
audit_schedule :
editor :
keywords :
licence : opensource_free,cpe:/a:gnu:gpl_v2,wapt_public
homepage :
package_uuid : ec88f7d0-16d8-4f3d-8d96-e768f567ea23
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : f1b604652fecc80b2300cf76edff81673e6bc1c23467e3b062f228c061bcf2ad
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-01-07T10:09:35.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 : xPXrnlMeMhZmG69cRNJAiW6hqZdnUMPL/Fn3gUrkPQjCGb6rbjn/Z63swlTINwsZ4y/8ZC4NWrGl32wwUsJcoNWORYrPa+W46Oj1NqeVunOFlaYWAKQlE4KgbBPUYpBNn/KG0yUcY33UXm1g1WO/5w1P0et81TlKUQFDm3TnMoTShshh7xDShuahoCl7hdkfuY7tVS1DfJAwqQYysHidFJwafG7DOdrRFtaICtu1truPvRVRyy9oQtepiGFZfELOX3561kBC+A4icQu641Cln1GnvmqPpyXjQmUDf5D1ViUEB9Cug5Ap6RGh5XDMtYi8CBAJaPmsSFM3rKOg1xlwIQ==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob("teraterm-*.exe")[0]
install_exe_if_needed(
bin_name,
silentflags="/VERYSILENT /SUPPRESSMSGBOXES /NORESTART",
key="{07A7E17A-F6D6-44A7-82E6-6BEE528CCA2A}_is1",
min_version=control.get_software_version(),
)
# -*- coding: utf-8 -*-
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/TeraTermProject/teraterm/releases/latest"
# Get data from API
releases_dict = json.loads(wgets(api_url, proxies=proxies))
exe_found = False # Flag pour indiquer la découverte d'un fichier .exe
for release in releases_dict:
if exe_found:
break
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["name"].split(" ")[2]
exe_found = True # Mettre à jour le flag pour indiquer qu'un exe a été trouvé
break
# Deleting binaries
for f in glob.glob("*.exe"):
if f != latest_bin:
remove_file(f)
# Downloading latest binaries
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)
control.set_software_version(version)
control.save_control_to_wapt()
return package_updated
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
034726ca43e4d8a3b4db76c28e6648ad0122190c3fd581c42cd45327bdde734a : WAPT/control
f1b604652fecc80b2300cf76edff81673e6bc1c23467e3b062f228c061bcf2ad : WAPT/icon.png
8586db1d4091c67d9485ae07b26635ac8c5ee7af15c5a3d008e284e2bd3dd9f8 : luti.json
fcd4a8232d3777770270b42f24db9564b4a048ba434bcb17528b6d05238d3ebc : setup.py
b6ccb23a8c42c83cdf57478637b11f5df8dbad086d1b4ee85ca8f483ba9f0112 : teraterm-5.3.exe
3b77b6ca4ac03981b4399885983628185ee6ccc685dabe1f385c612bd17a3e87 : update_package.py