tis-text-expander icon

TextExpander

Paquet d’installation silencieuse pour TextExpander

254.8.4.8-1

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-text-expander
  • name: TextExpander
  • version: 254.8.4.8-1
  • maintainer: WAPT Team,Tranquil IT,Amel FRADJ
  • licence: © 2020 SmileOnMyMac, LLC dba TextExpander. TextExpander is a registered trademark of Smile.
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 473.40 Ko
  • homepage : https://textexpander.com/

package           : tis-text-expander
version           : 254.8.4.8-1
architecture      : x64
section           : base
priority          : optional
name              : TextExpander
categories        : 
maintainer        : WAPT Team,Tranquil IT,Amel FRADJ
description       : TextExpander lets you instantly insert snippets of text from a repository of emails, boilerplate and other content, as you type – using a quick search or abbreviation
depends           : 
conflicts         : 
maturity          : PREPROD
locale            : 
target_os         : windows
min_wapt_version  : 
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : TextExpander vous permet d'insérer instantanément des bribes de texte à partir d'un référentiel d'e-mails, de documents standard et d'autres contenus, au fur et à mesure que vous tapez - en utilisant une recherche rapide ou une abréviation
description_pl    : TextExpander umożliwia natychmiastowe wstawianie fragmentów tekstu z repozytorium wiadomości e-mail, szablonów i innych treści podczas pisania - przy użyciu szybkiego wyszukiwania lub skrótów
description_de    : Mit TextExpander können Sie während der Eingabe sofort Textabschnitte aus einer Sammlung von E-Mails, Standardtexten und anderen Inhalten einfügen - mit einer schnellen Suche oder einer Abkürzung
description_es    : TextExpander le permite insertar instantáneamente fragmentos de texto de un repositorio de correos electrónicos, textos repetitivos y otros contenidos, a medida que escribe, utilizando una búsqueda rápida o una abreviatura
description_pt    : O TextExpander permite-lhe inserir instantaneamente fragmentos de texto a partir de um repositório de mensagens de correio eletrónico, modelos e outros conteúdos, à medida que escreve - utilizando uma pesquisa rápida ou uma abreviatura
description_it    : TextExpander consente di inserire istantaneamente frammenti di testo da un archivio di e-mail, boilerplate e altri contenuti, durante la digitazione, utilizzando una ricerca rapida o un'abbreviazione
description_nl    : Met TextExpander kun je tijdens het typen direct tekstfragmenten invoegen uit een verzameling e-mails, boilerplate en andere inhoud - met een snelle zoekopdracht of afkorting
description_ru    : TextExpander позволяет мгновенно вставлять фрагменты текста из хранилища электронных писем, шаблонов и другого контента по мере набора - с помощью быстрого поиска или сокращений
audit_schedule    : 
editor            : 
keywords          : 
licence           : © 2020 SmileOnMyMac, LLC dba TextExpander. TextExpander is a registered trademark of Smile.
homepage          : https://textexpander.com/
package_uuid      : 2a81a5de-a07f-4258-8ee5-969fe1262926
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 10.0
max_os_version    : 
icon_sha256sum    : 29a69cf8bded4357fcae7f998da88b0860c32c55a930a702b1a844a5f2dbb0e1
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2025-11-04T08:26:51.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         : bke/tkG+DeuFKHKXFbd+K6rimuSG2eup/gKLiuL1iAPgSLpI4OnZZiyCzMoA5NY9sCpN/SGpc3ASYb3VtSU0sp2EO68MRPf+5NW5Xdm7uN049jBIJAhwd/Yw2/GbEFjHQ7uFibliuXigBPjYvcKH7uvoJ+bXg4/XWVbksQI8YGDWBY9uQdPys3iGPHzrTcOV+zkwgLyGUgg6Mc0n662GBPnqOk0iG20SZLwMkwOPiEoZxhWQfuTu/XX4BvUgqL/FSYSZ7flcmcszdLqdU9OyfdGvxub7fBb/htqsrvKbLWqRrsrq58SyjUEr5yDwI062hOI+1X/iPDOllavQUryHeg==

# -*- coding: utf-8 -*-
from setuphelpers import *

r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()

"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls


def install():
    # Declaring local variables
    bin_name = glob.glob('TextExpanderSetup-*.exe')[0]
    # Installing the software

    install_exe_if_needed(bin_name,
        silentflags='/install /q',
        min_version=control.get_software_version(),
    )

def uninstall():

    # Uninstalling the additionnal softwares
    to_uninstall_soft = installed_softwares("TextExpander")
    for to_uninstall in to_uninstall_soft:
        print("Removing: %s (%s)" % (to_uninstall["name"], to_uninstall["version"]))
        killalltasks(ensure_list(control.impacted_process))
        run(uninstall_cmd(to_uninstall["key"]))
        wait_uninstallkey_absent(to_uninstall["key"])

# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import glob



def update_package():
    # Declaring local variables
    package_updated = False
    
    proxies = get_proxies_from_wapt_console()
    if not proxies:
        proxies = get_proxies()
    
    # URL de base pour Pale Moon
    data = requests.get('https://rest-prod.tenet.textexpander.com/download?platform=windows',allow_redirects=True,proxies=proxies)
    download_url = data.url 
    latest_bin = download_url.split('/')[-1]
    version = download_url.split('/')[4]

    # 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('*.exe'):
        if f != latest_bin:
            remove_file(f)

           
    version = get_version_from_binary(latest_bin)
    # Mettre à jour le package
    control.set_software_version(version)
    control.save_control_to_wapt()    
        

4bf3fdeed84ad5d48c9cd545cff688d4bbe75040a41bdace5769f39dd25419a3 : TextExpanderSetup-8.4.exe
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
ad1bc6e5b551e47b61ebde08cb5c4f6d8997236ca0da125082a69181b6a29e83 : WAPT/control
29a69cf8bded4357fcae7f998da88b0860c32c55a930a702b1a844a5f2dbb0e1 : WAPT/icon.png
d27830d25a5c3f054b46b551aef45323f4d2c17511478c0365482a0047c52e42 : luti.json
ae56f914a3ed6b8e6cafe2ea299771f92b2dc147634c3f64fd2ba77526738a73 : setup.py
b711b5c00266dd99e9ef869f1c89713d41fa59b3119bcf63f9383a6029805224 : update_package.py