- package: tis-zoomtext
- name: ZoomText
- version: 2025.2506.86.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.66 Mo
- installed_size: 298.06 Mo
package : tis-zoomtext
version : 2025.2506.86.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 : 97bd0236-8f8e-491e-beba-177527a19ee3
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-07-13T11:00:17.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 : Li/7UN/YG8CgK7+WQCjCYv3rkTylsyjBOp0C1EFzHgez3q21lI9aZcY9zo9lkVmhWvKVlbHUbWyr5ZEfp3heCd3u6nqe1jwfi8FgbeoyLZy0UF065DN0dYadpEBwUWr/ekU7XFrE6yvSGDDykt661RsjzDNnXtFu6eLQlwbqhj28bu9KgXZlgizghDpN0eVfVrTuCmmo0aipSdItgymZYU8373BTZaI8r5Nm9mDcwi0sYLRrbDc9GCh0cJy4IAhZleOapdLa5uvoplZvW0kWzC3JJZJ18+jO60cGgX30rRVStxmHieBju0LWNn780yAiJXEwGzMA/gM4KbyR7jIrWA==
# -*- 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
417dfe71d9b71562c900631adb76e1d78c68eaf69950779ac2dd4a61deb8cd1b : WAPT/control
36898249b1e8248184ec77839d13e05f914b52eaaa60be9e0d2d0465d050e1f3 : WAPT/icon.png
7625d2cf6cfc9f0b8bcfeaf8022874a1dd5c0308c3581b5018c07bdc937e9bfd : ZT2025.2506.86.400.exe
8a20bf68bc041dc82b2f0438768ce2a841192820d04122013c32954814f71eb2 : luti.json
e3a992c62b33153fe729e3c176602da359f935844c52a4c57d832a23fadfdc81 : setup.py
5fd24da635d1072c32e3ea03e8518fa408b80f6234c08a956ed35ce2f5ae699a : update_package.py