- package: tis-tabby
- name: Tabby
- version: 1.0.224-2
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,Pierre COSSON
- editor: https://github.com/Eugeny
- licence: MIT
- locale: all
- target_os: darwin
- impacted_process: Tabby
- architecture: arm
- signature_date:
- size: 144.37 Mo
- homepage : https://tabby.sh/
package : tis-tabby
version : 1.0.224-2
architecture : arm
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 : darwin
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 : 75b9e668-e1be-4dd1-ac2e-e5f9be20cef3
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:11:25.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 : LqADEgspxszlWy/CN2VBEGOoR2Zsd698vlfWRtzNeUcCmgw9tQ+ZQnLso1VTnqP9jUQV6YJbTsOoWQ4wJcG+EA6cNYdy9TMY65ajs7Lj1K4Dta9M6pVdEbiQAdDhnaaQzsq2GxUbtmqI4KQA7rtuf/8gzw3paOcFcea4cdqLr/hWmXXOAoN3/8TsaqVvcyplemab5npqZpk6F+e02Z5044NRL+Bk/cCei8MQN64W8AqixzMdgMRJctSCJJ0NSPMy+gLcwv2onI0lqrfrhh041FA7c8tVPUhMqjbSl5Xo1cjR1/MZ0mpiEJUlCXKCb2phQ30zZHlLjiG+UAeRCA2Gwg==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob("tabby*-macos-arm64.dmg")[0]
install_dmg(
bin_name,
key="/Applications/Tabby.app",
min_version=control.get_software_version(),
)
def uninstall():
uninstall_app("Tabby.app")
uninstall_pkg('org.tabby')
# -*- 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)
# 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
d26d45bd1068c8558e66c5bf9aefa3313456b0584014329ab950ec4f5624c8bb : WAPT/control
0a9045ae61b2640b097348fd3a3ef0af49fecb4230ab14650b7e7d24fa1e5c47 : WAPT/icon.png
1326245528111cd2983665f77fc383d131f4a81b6ddaa3fb53505287b96ba367 : luti.json
db14d1da0665e416469d3ed4d938412e026859850c02cffea42f06ed0d7015cb : setup.py
9b21212d94957a7846c7b3cd4f49d0fb2636f91f54776af754191ac6f5defbd3 : tabby-1.0.224-macos-arm64.dmg
0acb01157985e7069c5a42707ccbaf64f61283898a74b27c16d329e54de2f5b2 : update_package.py