tis-tabby icon

Tabby

Paquet d’installation silencieuse pour Tabby

1.0.224-1

  • package: tis-tabby
  • name: Tabby
  • version: 1.0.224-1
  • categories: Utilities
  • maintainer: WAPT Team,Tranquil IT,Pierre COSSON
  • editor: https://github.com/Eugeny
  • licence: MIT
  • locale: all
  • target_os: windows
  • impacted_process: Tabby
  • architecture: x64
  • signature_date:
  • size: 118.68 Mo
  • homepage : https://tabby.sh/

package           : tis-tabby
version           : 1.0.224-1
architecture      : x64
section           : base
priority          : optional
name              : Tabby
categories        : Utilities
maintainer        : WAPT Team,Tranquil IT,Pierre COSSON
description       : Tabby is an infinitely customizable cross-platform terminal app for local shells, serial, SSH and Telnet connections.
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.2
sources           : https://github.com/Eugeny/tabby/releases
installed_size    : 
impacted_process  : Tabby
description_fr    : Tabby est une application de terminal multiplateforme personnalisable à l'infini pour les shells locaux, les connexions série, SSH et Telnet.
description_pl    : Tabby to nieskończenie konfigurowalna, wieloplatformowa aplikacja terminalowa do obsługi powłok lokalnych, połączeń szeregowych, SSH i Telnet.
description_de    : Tabby ist eine unendlich anpassbare, plattformübergreifende Terminal-App für lokale Shells, serielle, SSH- und Telnet-Verbindungen.
description_es    : Tabby es una aplicación de terminal multiplataforma infinitamente personalizable para shells locales, conexiones serie, SSH y Telnet.
description_pt    : Tabby é uma aplicação de terminal multiplataforma infinitamente personalizável para shells locais, ligações série, SSH e Telnet.
description_it    : Tabby è un'applicazione terminale multipiattaforma infinitamente personalizzabile per shell locali, connessioni seriali, SSH e Telnet.
description_nl    : Tabby is een oneindig aanpasbare cross-platform terminal-app voor lokale shells, seriële, SSH- en Telnet-verbindingen.
description_ru    : Tabby - это бесконечно настраиваемое кроссплатформенное терминальное приложение для локальных оболочек, последовательных, SSH и Telnet соединений.
audit_schedule    : 
editor            : https://github.com/Eugeny
keywords          : terminal,ssh,powershell,cmd
licence           : MIT
homepage          : https://tabby.sh/
package_uuid      : 01563960-b6c2-4d6b-becd-d0ab346bd366
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://github.com/Eugeny/tabby/releases
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 0a9045ae61b2640b097348fd3a3ef0af49fecb4230ab14650b7e7d24fa1e5c47
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-08-13T08:09:21.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         : Wc7oHxpdTbzLPoJcJxOH8LzqS+EmVagXOyyYH4On77XAUd+L95++3zZeZtb+MM9RUbIbu0YkU5zcMP3178vgfd0wT6knjwOrTYdw99kL1mes4Ke+4/cXbKyDY/KI4iuV+7sz4iTHWE8kTFDFzlF5b8TnXF5Bf3J0sT3hM2COwSPqqxw5G5dAxU7KGasqOYdAEqoPOiAuRSki7WmSTAyerJDpzuiv17QLeKPtRkUYTwLeCkl0ioaov9jVKFlbZ4pBIbXAIDwt3vpANx0lGoTtMuvFfsxoll2ATLUs9AvvBB4913KZJ4fhOzjyixm7RpdeOo5VxxVHkEZ2LWEMwclE9Q==

# -*- coding: utf-8 -*-
from setuphelpers import *


def install():
    install_exe_if_needed(
        glob.glob("tabby*-setup-x64.exe")[0],
        silentflags="/S /allusers ",
        name="Tabby",
        min_version=control.get_software_version(),
    )

# -*- coding: utf-8 -*-
from setuphelpers import *
import json


def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    api_url = "https://api.github.com/repos/Eugeny/tabby/releases/latest"
    os_dict = {
        "windows-x64": "setup-x64.exe", 
        "debian_based-x64": "-linux-x64.deb", 
        "redhat_based-x64": "-linux-x64.rpm", 
        "darwin-x64": "-macos-x86_64.dmg",
        "darwin-arm": "-macos-arm64.dmg",
    }
    os_type = control.target_os + "-" + ensure_list(control.architecture)[0]

    # Getting latest version information from official sources
    print("API used is: %s" % api_url)
    json_load = json.loads(wgets(api_url, proxies=proxies))
    for to_download in json_load["assets"]:
        if os_dict[os_type] in to_download["name"]:
            download_url = to_download["browser_download_url"]
            version = json_load["tag_name"].split("-")[-1].replace("v", "")
            latest_bin = to_download["name"]
            break

    # Downloading latest binaries
    print("Latest %s version is: %s" % (control.name, version))
    print("Download URL is: %s" % download_url)
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(download_url, latest_bin, proxies=proxies)
    else:
        print("Binary is present: %s" % latest_bin)

    # Checking version from file
    version_from_file = get_version_from_binary(latest_bin).split("-")[0]
    # if not version_from_file.startswith(version) and version_from_file != '':
    if Version(version_from_file) != Version(version) and version_from_file != "":
        print("Changing version to the version number of the binary")
        os.rename(latest_bin, latest_bin.replace(version, version_from_file))
        version = version_from_file
    else:
        print("Binary file version corresponds to online version")

    # Changing version of the package
    if Version(version) > Version(control.get_software_version()):
        print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
        package_updated = True
    else:
        print("Software version up-to-date (%s)" % Version(version))
    control.set_software_version(version)
    control.save_control_to_wapt()

    # Deleting outdated binaries
    remove_outdated_binaries(version)

    # Validating update-package-sources
    return package_updated

38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
f05c7523d0224bc721db20cc4a30a7146d8740d44fbf4fb3c7698f87fe4c4c0f : WAPT/control
0a9045ae61b2640b097348fd3a3ef0af49fecb4230ab14650b7e7d24fa1e5c47 : WAPT/icon.png
1f0a655e85116ab191ac0598c7783447edd4ed01750dd8163dc1992d335a9856 : luti.json
6bb4371d15dcc0f2cc2aea88b443cdcc9653f1ba1e679dc5c1c8dfba71c41693 : setup.py
2842f1ff3d0f6f5601146d7b026992d279d403343282a4571afd95c670cc56eb : tabby-1.0.224-setup-x64.exe
1cbf27f48e6908870838decb51bf74711cd076fbdf7e4e2db49351071f9ee52b : update_package.py