TextExpander
Silent install package for TextExpander
254.8.4.209-1
- package: tis-text-expander
- name: TextExpander
- version: 254.8.4.209-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: 472.28 Ko
- homepage : https://textexpander.com/
package : tis-text-expander
version : 254.8.4.209-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 : PROD
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 : 7b139985-95f5-4f33-b095-c18cbf4aaffd
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10.0
max_os_version :
icon_sha256sum : 29a69cf8bded4357fcae7f998da88b0860c32c55a930a702b1a844a5f2dbb0e1
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-03-22T17:26:55.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 : cMqa/YVhAxBLSbG9PPv+8un/DItymhHkloUf1NYeA1CGJVx+JnVfynUiNUgqP2i/t6e2g46ozX73uRg8ZwY8YfyYd7w0ENPg0Q/OLtV9fXVUDqX/EqA23b7ti6LVCH7+3JU2IDKvPmTSqQL7MNTbRmMVoSgzKDv/yboPSNsM0gIsn6RphOiL+0FQOi0h7HnbroWmavexRjjyQQWdEZBt+Pnb5kgJKgW5/MQa7BsuLIxqhJfEtqVYAWWIq/NKeY7+ZJrtZu+3NPH1TrDq5ZR8A9n3zQJogjsV2yZcBc9TfPxijhiF+ERqG0asCxtmYp4pAF+1VxD8/wpNs+eVe45Diw==
# -*- 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()
39beb0e49b32d116478fad7cf0caea2681d74e6403adce2f37b892a95b1e8955 : TextExpanderSetup-8.4.2.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
42633965f83b6119036e1c1d5b21c79ba95f030c4ba2c7f30168581e23d64a1f : WAPT/control
29a69cf8bded4357fcae7f998da88b0860c32c55a930a702b1a844a5f2dbb0e1 : WAPT/icon.png
4f8311ab40f3fdf7d89392b5e8c70226aa62f76f9177b9c66d1e30149283f7b7 : luti.json
ae56f914a3ed6b8e6cafe2ea299771f92b2dc147634c3f64fd2ba77526738a73 : setup.py
b711b5c00266dd99e9ef869f1c89713d41fa59b3119bcf63f9383a6029805224 : update_package.py