
Les paquets PREPROD sont des paquets construits via LUTI.
Ils restent généralement 5 jours en PREPROD, après quoi un scan VirusTotal est effectué.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.
- package: tis-tablacus-portable
- name: Tablacus Explorer
- version: 25.9.7-1
- categories: Office
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ
- licence: opensource_free,wapt_public
- target_os: windows
- architecture: x64
- signature_date:
- size: 969.02 Ko
- homepage : https://tablacus.github.io/explorer_en.html
package : tis-tablacus-portable
version : 25.9.7-1
architecture : x64
section : base
priority : optional
name : Tablacus Explorer
categories : Office
maintainer : WAPT Team,Tranquil IT,Amel FRADJ
description : Tablacus is an alternative of file explorer which provides simple tabbed view and plugin extensibility
depends :
conflicts :
maturity : PREPROD
locale :
target_os : windows
min_wapt_version : 2.3
sources :
installed_size :
impacted_process :
description_fr : Tablacus est une alternative à l'explorateur de fichiers qui offre une vue simple par onglets et une extensibilité par plugins
description_pl : Tablacus to alternatywa dla eksploratora plików, która zapewnia prosty widok w kartach i rozszerzalność wtyczek
description_de : Tablacus ist eine Alternative zum Datei-Explorer, die eine einfache Registerkartenansicht und Plugin-Erweiterbarkeit bietet
description_es : Tablacus es una alternativa al explorador de archivos que ofrece una vista por pestañas sencilla y extensibilidad mediante plugins
description_pt : O Tablacus é uma alternativa ao explorador de ficheiros que oferece uma visualização simples por separadores e extensibilidade de plug-ins
description_it : Tablacus è un'alternativa a File Explorer che offre una semplice visualizzazione a schede e l'estensibilità dei plugin
description_nl : Tablacus is een alternatief voor de bestandsverkenner dat een eenvoudige weergave met tabbladen biedt en uitbreidbaar is met plugins
description_ru : Tablacus - это альтернатива файловому проводнику, которая обеспечивает простой вид с вкладками и расширяемость плагинов
audit_schedule :
editor :
keywords :
licence : opensource_free,wapt_public
homepage : https://tablacus.github.io/explorer_en.html
package_uuid : 9a834b88-4d61-44a0-b798-f38575fe2468
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : d3d3e50ba43f34e6533d25601aeea8589118b07e9eefd1cd359b232897b2e6fd
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2025-09-16T13:12:26.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 : r8aUalzOakfwKe5pPz1yiWXraXy75BtIFHpmGxbFP22jFE186LItDxB/ytzkigzOLZ0j8hdizWPf+ubFkm8x0hkj85nTg5cJFCTq4Ls2DOIPz88q+E1pmZn+dtSjPr17m7rLeUZYTC5ZnebuDWJgL9C1F2Bcum7r/Py7opeL88Yv8Lyk10BdL2H2V1VFATdCn34w0w/bRBBSaYLMJLfGT8iNbtN1ZOY/lsCnyweTOqBqtv83ldQXrxKw/9WvfzT3CIGuBcxHZlE4asfcSxDZrZD8S9p/hbmoJJErRr05VNnJTbYvui8cH3yYooOenM0txBRxK4V0aIsjGC2+XSfMrA==
# -*- coding: utf-8 -*-
from setuphelpers import *
"""
"""
app_name = "Tablacus Explorer "
editor_dir = makepath(programfiles, "Tablacus Explorer")
app_dir = makepath(editor_dir, "Tablacus Explorer")
app_path = makepath(app_dir, "TE64.exe")
#icon_path = makepath(app_dir, "resources", "app", "build", "crushee.ico") #tis-crushee\windows\crushee\resources\resources\build
audit_version = False
def get_installed_version(app_path):
return get_file_properties(app_path).get("FileVersion", "")
def install():
# Declaring local variables
zip_name = glob.glob(f"te*.zip")[0]
unzipped_dir = "Tablacus Explorer"
# Installing software
killalltasks(ensure_list(control.impacted_process))
if isdir(app_dir) and force:
remove_tree(app_dir)
mkdirs(app_dir)
print("Extracting: %s to: %s" % (zip_name, unzipped_dir))
unzip(zip_name, unzipped_dir)
print('Copy Tablacus Explorer to %s' % app_dir)
copytree2(unzipped_dir, app_dir, onreplace=default_overwrite)
# Creating custom shortcuts
create_desktop_shortcut(app_name, target=app_path)
create_programs_menu_shortcut(app_name, target=app_path)
def audit():
# Auditing software
audit_status = "OK"
installed_version = get_installed_version(app_path)
if Version(installed_version) < Version(control.get_software_version()) and audit_version:
print("%s is installed in version (%s) instead of (%s)" % (app_name, installed_version, control.get_software_version()))
audit_status = "WARNING"
elif isdir(app_dir) and not dir_is_empty(app_dir):
print("%s (%s) is installed" % (app_name, installed_version))
audit_status = "OK"
else:
print("%s is not installed" % app_name)
audit_status = "ERROR"
return audit_status
def uninstall():
# Uninstalling software
killalltasks(ensure_list(control.impacted_process))
if isdir(app_dir):
remove_tree(app_dir)
if dir_is_empty(editor_dir):
remove_tree(editor_dir)
# Removing shortcuts
remove_desktop_shortcut(app_name)
remove_programs_menu_shortcut(app_name)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import glob
import json
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def update_package():
result = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
git_repo = "tablacus/TablacusExplorer"
url_api = "https://api.github.com/repos/%s/releases/latest" % git_repo
# Getting latest version information from official sources
print("API used is: %s" % url_api)
json_load = json.loads(wgets(url_api, proxies=proxies))
version = json_load["tag_name"].replace("v","")
for download in json_load["assets"]:
if download["browser_download_url"].endswith('.zip') :
download_url = download["browser_download_url"]
latest_bin = download["name"]
break
# Downloading latest binaries
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
package_updated = True
else:
print("Binary is present: %s" % latest_bin)
# Deleting outdated binaries
for f in glob.glob('*.zip'):
if f != latest_bin:
remove_file(f)
# Mettre à jour le package
control.set_software_version(version)
control.save_control_to_wapt()
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
95ae81bdadc46af5abc4ab417cb751f4611fff0cb86475d50f0a98cde321f977 : WAPT/control
d3d3e50ba43f34e6533d25601aeea8589118b07e9eefd1cd359b232897b2e6fd : WAPT/icon.png
e46e01df3c6a65ca3d0c7620b04bf20f9058a7e459dc99eab8752d57471a16a2 : luti.json
0bbfbe627636cecaeb8b70fba32ec4deee88008d1aa69a64578f37b363cd3114 : setup.py
224793a53925a8a6086117afb86a3ed242ca3bd9d1c9c03bf3dc60081aee6179 : te250907.zip
465a9c52935da69c2cd770229d899327b73069b5c847b03be1a8e18410731568 : update_package.py