tis-teraterm

5.2
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
tis-teraterm icon
  • package : tis-teraterm
  • name : Tera Term
  • version : 5.2
  • 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 : 2024-07-30 17:01
  • size : 8.77 Mo
  • installed_size : 18.75 Mo
package           : tis-teraterm
version           : 5.2
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      : 1831c405-b77e-467c-a48b-a82cfceeaaae
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : f1b604652fecc80b2300cf76edff81673e6bc1c23467e3b062f228c061bcf2ad
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : ig2NtFl30NGOqUWACMbDi6SvjfzBIpvU73Qld6WlRL4KiH4d4tiDQEMdrWFB/VHt3/tQNkxZPoXsRCjFqhwPGpxfDSzHxNTEJbKIjwJdR9uXUHRYrybHxpH9Uir/hvbFCDdxFR/AZtpICX0yRmRs9i/rzYgWUt/85PLI9/oZYG08Lt/dVyrRfT3UvdXg9cHHFoclXUyOg9/mwS3mARIb4vNS9rDLtZ2/Aipdim7cdoBZky2CIbHx8VIjTECWc8vtlP5UebAzRWiRJN8E0G375Y3tRigfFhLY9qbjvOs2jAL24opI1/jtMC7ag/0D8FJaoiyb+dfhRWFO+P8HyeBy0A==
signature_date    : 2024-07-30T17:01:56.967128
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
# -*- 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 *
import re


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)

    version = get_version_from_binary(latest_bin)

    control.set_software_version(version)
    control.save_control_to_wapt()
fcd4a8232d3777770270b42f24db9564b4a048ba434bcb17528b6d05238d3ebc : setup.py
 : __pycache__
2ffa22571b93f5f2ba03a41fce6c9f8cb9b5d1d429ae48242128481ac4a81718 : teraterm-5.2.exe
ceae7abef84c5faf1aa4378db856efc7c9d5a002159375593d26dfa861794438 : update_package.py
f1b604652fecc80b2300cf76edff81673e6bc1c23467e3b062f228c061bcf2ad : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
9cf31a69837e7da53ac9e758e10bb42065c65b046c3846f2abe21b77ff4f45c2 : luti.json
08cc3a88b0bb6736ea2a306c827259d730aff21582c773126ef23f951d39300b : WAPT/control