Trillian
Silent install package for Trillian
6.6.14-1
Preprod packages are packages built on LUTI.
They remain in PREPROD usually for 5 days, after which a second VirusTotal scan is performed to verify that the status has not changed.
If the package passes this last check, it is promoted to PROD and published on the store.
- package: tis-trillian
- name: Trillian
- version: 6.6.14-1
- maintainer: Administrator
- licence: Freemium
- target_os: windows
- architecture: all
- signature_date:
- size: 33.48 Mo
- homepage : https://trillian.im/
package : tis-trillian
version : 6.6.14-1
architecture : all
section : base
priority : optional
name : Trillian
categories :
maintainer : Administrator
description : Trillian is modern and secure instant messaging for people, business and healthcare
depends :
conflicts :
maturity : PREPROD
locale :
target_os : windows
min_wapt_version :
sources :
installed_size :
impacted_process :
description_fr : Trillian est une messagerie instantanée moderne et sécurisée pour les particuliers, les entreprises et le secteur de la santé
description_pl : Trillian to nowoczesny i bezpieczny komunikator internetowy dla ludzi, firm i służby zdrowia
description_de : Trillian ist modernes und sicheres Instant Messaging für Menschen, Unternehmen und das Gesundheitswesen
description_es : Trillian es un servicio de mensajería instantánea moderno y seguro para particulares, empresas y sanidad
description_pt : O Trillian é um serviço de mensagens instantâneas moderno e seguro para pessoas, empresas e serviços de saúde
description_it : Trillian è la messaggistica istantanea moderna e sicura per le persone, le aziende e l'assistenza sanitaria
description_nl : Trillian is moderne en veilige instant messaging voor mensen, bedrijven en de gezondheidszorg
description_ru : Trillian - это современный и безопасный обмен мгновенными сообщениями для людей, бизнеса и здравоохранения
audit_schedule :
editor :
keywords : A4F8B230-B180-4CD8-90EB-C16FB3544E4F
licence : Freemium
homepage : https://trillian.im/
package_uuid : da5ff6df-aeb2-43dc-a7e4-6153fba4c25d
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 059c0858b6f8b9779dc7910b2370eaa19bdec15aba2b0d66dba799a5460f684b
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2026-03-06T15:53:46.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 : I55S1nl9YRzPGC4tfcd0unGKmo+rljSHDEQ0m5uoxApJ1KcgfB4VZFa3AnCqn3/Up33FN/nWsnh1NnoosL994IPANt/8lP4xvIPFLXKTmGrf1bBNgaF+UbltiDTvJDU15TwTSB1aXIgTaBKT/iDBYfjbJG/lTmYwaHT+yBxSzLY4KFU6lx0KChfLI/OiIzh5jPkVYjhUI/vcQTCU43H+bNo7yNUYFoQk/NJ44kM5oIDb/VWK0SoPabDNgc7vSUIazv8Va+MQbFJp0YD3g7Qo3r757ZW2l672lqOCRV0pQ8pilJMLtxQG1uF+n++L8K1Qet+tU5HyviyvXMTbihcxjQ==
# -*- 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
sofware_name = "trillian"
def install():
# Declaring local variables
bin_name = glob.glob("trillian-*.msi")[0]
# Installing the software
install_msi_if_needed(
bin_name,
)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import requests
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
download_url = "https://trillian.im/get/windows/msi/"
# Getting latest version information from download url
requests_result = requests.head(download_url, proxies=proxies, allow_redirects=True)
latest_bin = requests_result.url.split("/")[-1]
# Deleting binaries
for f in glob.glob('*.msi'):
if f != latest_bin:
remove_file(f)
# 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)
latest_version = get_msi_properties(latest_bin)["ProductVersion"]
# Updating the package
control.set_software_version(latest_version)
control.save_control_to_wapt()
return package_updated
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
8b974119f6c8e1e36d972a8d3a6459dc851aceed72db8aa587d8e2298d7637ec : WAPT/control
059c0858b6f8b9779dc7910b2370eaa19bdec15aba2b0d66dba799a5460f684b : WAPT/icon.png
b3df38cd786763c56e24f9156973f97957ae8db765753009eb4b0e696b92c0c3 : luti.json
5977c24b4a48821e05ef47f5ea2b4739282207da0ccfb54f77c2c1034b848be9 : setup.py
df118389c625b8887001318168cf4c7df04944d8fe6760b51a150ffbb230c260 : trillian-v6.6.0.14.msi
d9a7f1617a42aaf6192e15867dcc9840feba016695b88bddf7c941c01456187a : update_package.py