- package: tis-tabby
- name: Tabby
- version: 1.0.219-0
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,Pierre COSSON
- editor: https://github.com/Eugeny
- licence: MIT
- locale: all
- target_os: ubuntu,debian(>=10)
- architecture: x64
- signature_date:
- size: 99.82 Mo
- homepage : https://tabby.sh/
package : tis-tabby
version : 1.0.219-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 : ubuntu,debian(>=10)
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 : 95481259-977d-4f31-b216-b05312209c34
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-01-15T16:17:49.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 : iHpe0hbFyb0amvvz2i2pscOaJyfZclv1gaJwbYJ8lkoYaU9iCI2s4I8FOsm2+Xfev5zeEXy6R8yJR2Sr2Re5VJLT+lG8wumwnFGTXn1BnW2yUcfvppvMqDhhe2TInbeWvNGcWW78PFeaSz2WUkeNZZAmwlbqkY6DWvOPOS5xgd6YcqcXw0pFKp1b9fHim+oj6Deb6QMRAe/HL51P5d+HpQgBvY1s9VzqA35gRVHLWMpHAYPFvZuvUkhTS+cFWO4DlJ3NDojy1jq5u1pOMQGzYu025ECMha7ark1VOIyT+MZw0vi5R7CbkPvheBOZUveyyjHbc2+MNinapEjnz2xWtg==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
install_deb(
glob.glob("tabby*-linux-x64.deb")[0],
)
def uninstall():
uninstall_apt("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"]:
key = control.target_os.split(",")[1].strip("(>=10)") + "_based"
if os_dict[key] 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
741f9dcb6db016f1ef24d1c561e14f967ef32ae2957ac634991d8a8c89c89f82 : WAPT/control
0a9045ae61b2640b097348fd3a3ef0af49fecb4230ab14650b7e7d24fa1e5c47 : WAPT/icon.png
b1ec8c763ce0eb6b6cbfc2c4f06d8bb01d3c517a368418212544f1ac4e1978fb : luti.json
8f7afae7d91c3e5f81c3c3d7c60f27f1ba58777a3d58f42045ad8b59584df08a : setup.py
46c7e45df60d3ac2aef85610db811feda71e6079a5f1c0b0ac6e419684554f13 : tabby-1.0.219-linux-x64.deb
8a05b29f0e7a8d0d5c61512376f16ae0071e1a77da6970bed1ca3041f41f6585 : update_package.py