Tabby
Paquet d’installation silencieuse pour Tabby
1.0.229-0
Utilities
Utilities
- package: tis-tabby
- name: Tabby
- version: 1.0.229-0
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,Pierre COSSON
- editor: https://github.com/Eugeny
- licence: MIT
- locale: all
- target_os: redhat_based
- architecture: x64
- signature_date:
- size: 105.41 Mo
- homepage : https://tabby.sh/
package : tis-tabby
version : 1.0.229-0
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 : redhat_based
min_wapt_version : 2.2
sources : https://github.com/Eugeny/tabby/releases
installed_size :
impacted_process :
description_fr :
description_pl :
description_de :
description_es :
description_pt :
description_it :
description_nl :
description_ru :
audit_schedule :
editor : https://github.com/Eugeny
keywords : terminal,ssh,powershell,cmd
licence : MIT
homepage : https://tabby.sh/
package_uuid : 1370a7fb-bf94-4741-8101-cd8b82842b98
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-11-16T16:07:29.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 : qyg3L2CqLgV+Lhm1y0CNV4pzQb0KqSn53f0K0QcMx9gLkmOCbF2TuYjcps24pMoEwVoDnT9jQDoH+mjg4Irs38EcBtaPs1SiohfLi8pAYm3TvN/lFOcbAE2Y83mcwL1xZfeOuneYl8k0hLtZzBQswndf6monuRL12JAVftKVKLNkKV8MX5dVNtQ1w1B4sGTYEmxuBMNIXXk+1hFugXpDxav2C1tvE4zUhiMGXW5pVwUxXY0dMorjFxqi7KLK0r8Nv2QOJ9Yx21U1y1gNka9qf/3krWf8In6y+AVddMNMcFQQzi2/ka0aY+ozKsNEsEABBfjFFStiyeG9z2MTdZLb4A==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
install_yum(
glob.glob("tabby*-linux-x64.rpm")[0],
)
def uninstall():
uninstall_yum("tabby-terminal")
# -*- 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": "setup-x64.exe", "debian_based": "-linux-x64.deb", "redhat_based": "-linux-x64.rpm", "darwin": "-macos-x86_64.pkg"}
arch_dict = {"x64": "setup-x64.exe", "x86": "win32.exe"}
# 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[control.target_os] 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)
# 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
a1f51a66b20eef5c0ccb072adda9c2f59d2a98d59a43368784cb7183620ddf6e : WAPT/control
0a9045ae61b2640b097348fd3a3ef0af49fecb4230ab14650b7e7d24fa1e5c47 : WAPT/icon.png
0e5de77ca2af07cd1a6c2732a0631256df453ee95cc679cd901fce761be4026e : luti.json
0e3a1860e4fc83a419d56cbcec665df9d135f40d6e8a1bd585540348717d23ed : setup.py
555d56a0200fcdb4202247c17d8da2cbf453852a8d9bfbd7e286a147c1fd6d1a : tabby-1.0.229-linux-x64.rpm
4e83483bd8c6d918d3a2410bf7057ebb3bb0506694decfc866ba5091939d59d6 : update_package.py