tis-tablacus-portable icon

Tablacus Explorer

Silent install package for Tablacus Explorer

25.9.7-1

Preprod packages are packages built on LUTI. They remain in PREPROD usually for 5 days, after which a new VirusTotal scan is performed.
If the package passes this last check, it is promoted to PROD and published on the 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: x86
  • signature_date:
  • size: 969.02 Ko
  • homepage : https://tablacus.github.io/explorer_en.html

package           : tis-tablacus-portable
version           : 25.9.7-1
architecture      : x86
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      : 2ea4d113-9095-4190-be94-34708492d29b
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-16T14:02:58.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         : itXq4jbnkM3HIeHsWg5wmIWdhjrzJU96AhlTiZkpKBpCVWxfKy4WtWeYpzlXcP4ZZLIUYWq5whIE3y4kNw2VB0me+QRM+O8B0d5q0JM/wZoiGsnLCrZjpXAsku/HDMBQsTNU8yD1iJviVdOv5GYvJsn8ryjp5tn42PHeQ4ku0KxoXAJjN5fRQ1i9gKtPfc3HYmj1YUmXYnQiOZ0ptPpAH9k4NSkKa6DToqtz9vgTIUB+uEq5uFpP9+Fxk4PjnwjxBDcAQEV65dW2fEEXxp60zVoTuOQhtzXuT3PQJVvuUiJrl7FsAEfHih5jAV+iARInsTffeIdHw5yK1nOpukPuRg==

# -*- 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, "TE32.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
b5cc91a629ff52127b2b92457fa3c6441df57efcbe0bdeb6804d2e38eeae2a8d : WAPT/control
d3d3e50ba43f34e6533d25601aeea8589118b07e9eefd1cd359b232897b2e6fd : WAPT/icon.png
d09f20cae3d2ea64fb693786095a9e9e88485eb0c9561769461e3c86ee8cd79b : luti.json
d411502c059816e27f318aef7a77faf29e2f4896b642b02803d6da26aa2006eb : setup.py
224793a53925a8a6086117afb86a3ed242ca3bd9d1c9c03bf3dc60081aee6179 : te250907.zip
465a9c52935da69c2cd770229d899327b73069b5c847b03be1a8e18410731568 : update_package.py