
TextExpander
Paquet d’installation silencieuse pour TextExpander
254.8.2.204-1
- package: tis-text-expander
- name: TextExpander
- version: 254.8.2.204-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.58 Ko
- homepage : https://textexpander.com/
package : tis-text-expander
version : 254.8.2.204-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 : 1cbafd20-1362-4de3-b030-f5b35e5a2469
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 : 2025-02-17T18:00:12.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 : N9xZoW1CMv5aHgf1Dl50lJdX5BWO1b85nnsfR0PTEe5ewGz5MA79o45ZqMHxmBRCee/Pqww90Z0KLmRt3nHucxs1nBWOXiqs5d9dVha75jSzbqk54jWaYr8W8qwPZ814YxW9RqOeC6hv/2A8iuGI9OFJwJciTLNoRWaZPIm/lPv1xdop5XXpmmBjFYtcPNI9K69fEGyRN2Mmt67qCulPGv8ujoz51ZdxhUTBTHfpLzAwnuRf2h95yWR0rZElvJNVFntJ/H1gr0kaesmwF8OLiH0i5l5i2djiP+Kzizvp8LfDeD/BVCkDoLeZg8ZejQHhF3cYSx1ZDrI21PhJwgHrIA==
# -*- 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()
1bd69ada317732e504b0dec65c2c0e4a1601793c4b16c1d77917df12938eab4d : TextExpanderSetup-8.2.2.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
dd90426d92cf090fed092bb0f00f72d2092febe76cc29e5bcbdca3e97b38bea0 : WAPT/control
29a69cf8bded4357fcae7f998da88b0860c32c55a930a702b1a844a5f2dbb0e1 : WAPT/icon.png
c7b7edbd1e6ea6ae83686b01db76dbaa209a419e2c808d672aa23f6c3e35dbc4 : luti.json
ae56f914a3ed6b8e6cafe2ea299771f92b2dc147634c3f64fd2ba77526738a73 : setup.py
b711b5c00266dd99e9ef869f1c89713d41fa59b3119bcf63f9383a6029805224 : update_package.py