- package: tis-zoomtext
- name: ZoomText
- version: 2025.2508.35.400-0
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,Ingrid TALBOT
- licence: proprietary_restricted,wapt_private
- locale: all
- target_os: windows
- impacted_process: AiSquared.ZoomText.UI
- architecture: x64
- signature_date:
- size: 14.68 Mo
- installed_size: 298.06 Mo
package : tis-zoomtext
version : 2025.2508.35.400-0
architecture : x64
section : base
priority : optional
name : ZoomText
categories : Utilities
maintainer : WAPT Team,Tranquil IT,Ingrid TALBOT
description : ZoomText Magnifier/Reader is a fully integrated magnification and reading program tailored for low-vision users
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.3
sources :
installed_size : 298057411
impacted_process : AiSquared.ZoomText.UI
description_fr : ZoomText Magnifier/Reader est un programme de lecture et d agrandissement entièrement intégré, conçu pour les utilisateurs malvoyants
description_pl : ZoomText Magnifier/Reader to w pełni zintegrowany program do powiększania i czytania dostosowany do potrzeb osób słabowidzących
description_de : ZoomText Magnifier/Reader ist ein vollständig integriertes Vergrößerungs- und Leseprogramm, das speziell auf sehbehinderte Benutzer zugeschnitten ist
description_es : ZoomText Magnifier/Reader es un programa de ampliación y lectura totalmente integrado y adaptado a usuarios con baja visión
description_pt : O ZoomText Magnifier/Reader é um programa de ampliação e leitura totalmente integrado, concebido para utilizadores com baixa visão
description_it : ZoomText Magnifier/Reader è un programma di ingrandimento e lettura completamente integrato, pensato per gli ipovedenti
description_nl : ZoomText Magnifier/Reader is een volledig geïntegreerd vergrotings- en leesprogramma op maat van slechtziende gebruikers
description_ru : ZoomText Magnifier/Reader - это полностью интегрированная программа для увеличения и чтения, предназначенная для слабовидящих пользователей
audit_schedule :
editor :
keywords :
licence : proprietary_restricted,wapt_private
homepage :
package_uuid : 3a654e9d-f88c-40a5-8da5-a79662e337d3
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10.0
max_os_version :
icon_sha256sum : 36898249b1e8248184ec77839d13e05f914b52eaaa60be9e0d2d0465d050e1f3
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-09-13T11:16:57.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 : ylohw8xy7illjgOgukz7ms3SXGU8OaHch9pe/yZMkedoDYvIgje0fEy9cdN5FnpOL0aOsXN8we/bDh4QV7pDqKoINBqeXXZnaQoQzymZL0CMnymRziLiWS5+4nKgvxkuyxC5rhzh3SYkhcDCEXlJkmSpBQGlmcJrvoMkECAMJfKAw8H6hWHtAEfz2OL8nHcp5QxqHre+ATndNp4v+O8O6QDE+NWq2holo2/lVC07NFS8kZNtPXdLf9PrzUIjWjpRXFMlMx4vZbOBFLEa759mMeBCswCnTJPgz9KEedE0v6MVgHwY+eASBC1j2VO8P4RKhhOtStvWDlq4Mk9M3AtaFA==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
# Installing the software
print("Installing ZoomText")
bin_name = glob.glob("ZT*.exe")[0]
install_exe_if_needed(bin_name,
silentflags='/SILENT',
name="^Freedom Scientific ZoomText",
min_version= control.get_software_version()
)
def uninstall():
for to_uninstall in installed_softwares(name="^Freedom Scientific ZoomText"):
if Version(to_uninstall["version"]) == Version(control.get_software_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 *
import waptlicences
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
update_dict = {"windows": ".exe", "macos": ".dmg"}
url = "https://support.freedomscientific.com/Downloads/ZoomText"
user_agent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0"
# Getting latest version from official sources
print("URL used is: %s" % url)
for bs_search in bs_find_all(url, "ul","id","ulNormalReleases", proxies=proxies, user_agent= user_agent):
if bs_search.find_next("a"):
download_url = bs_search.find_next("a")["href"]
latest_bin = download_url.split("/")[-1]
version = latest_bin.replace("ZT", "").rsplit(".",1)[0]
break
# Downloading latest binaries
print(f"Latest version of {control.name} is: {version}")
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
else:
print("Binary is present: %s" % latest_bin)
expected_issuer = "Freedom Scientific Inc."
sign_name = waptlicences.check_msi_signature(latest_bin)[0]
if sign_name != expected_issuer:
error(f'Bad issuer {sign_name} != {expected_issuer}')
# Changing version of the package
if Version(version) > Version(control.get_software_version()):
print(f"Software version updated (from: {control.get_software_version()} to: {Version(version)})")
package_updated = True
else:
print(f"Software version up-to-date ({Version(version)})")
# Deleting binaries
for f in glob.glob("*.exe"):
if f != latest_bin:
remove_file(f)
version = get_version_from_binary(latest_bin)
control.set_software_version(version)
control.save_control_to_wapt()
return package_updated
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
df08fbdef137b2fe75a4b24ba2fadcb2bfe016d0b7a68aae58af55c90ab188fb : WAPT/control
36898249b1e8248184ec77839d13e05f914b52eaaa60be9e0d2d0465d050e1f3 : WAPT/icon.png
e6a0d3bbe9e9a44973eb545c7f397c3cb3d045ff6a0d8e2d2e4a76bea2b3a06e : ZT2025.2508.35.400.exe
4676164df8c86e6285e0b8975b5e9ecc67cb88350640c9c5ae59c3bc30a2b352 : luti.json
e3a992c62b33153fe729e3c176602da359f935844c52a4c57d832a23fadfdc81 : setup.py
5fd24da635d1072c32e3ea03e8518fa408b80f6234c08a956ed35ce2f5ae699a : update_package.py