
- package: tis-dys-mot
- name: Dys Mot
- version: 1-1
- categories: Education, Utilities
- maintainer: WAPT Team,Tranquil IT,Joffrey Le Piquet
- licence: proprietary_free
- locale: fr
- target_os: windows
- impacted_process: Dys-Mot
- architecture: x86
- signature_date:
- size: 55.97 Mo
- homepage : https://www.dyslogiciel.fr/
- depends:
package : tis-dys-mot
version : 1-1
architecture : x86
section : base
priority : optional
name : Dys Mot
categories : Education, Utilities
maintainer : WAPT Team,Tranquil IT,Joffrey Le Piquet
description : Software to compensate for dyslexia and dyspraxia With voice synthesis in French only
depends : tis-microsoft-server-speech-text-to-speech-voice-fr-fr-hortense,tis-microsoft-server-speech-platform-runtime
conflicts :
maturity : PROD
locale : fr
target_os : windows
min_wapt_version : 2.3
sources :
installed_size :
impacted_process : Dys-Mot
description_fr : Logiciel de compensation des troubles dys ( dyslexie, dyspraxie ) Avec synthèse vocale en Français uniquement
description_pl : oprogramowanie kompensujące dysleksję i dyspraksję z syntezą głosu tylko w języku francuskim
description_de : Software zur Kompensation von Dysstörungen ( Dyslexie, Dyspraxie ) Mit Sprachsynthese nur auf Französisch
description_es : software para compensar la dislexia y la dispraxia Con síntesis de voz sólo en francés
description_pt : software para compensar a dislexia e a dispraxia Com síntese vocal apenas em francês
description_it : Software per la compensazione della dislessia e della disprassia Con sintesi vocale solo in francese
description_nl : software om dyslexie en dyspraxie te compenseren Alleen met spraaksynthese in het Frans
description_ru : Программное обеспечение для компенсации дислексии и диспраксии С синтезом голоса только на французском языке
audit_schedule :
editor :
keywords :
licence : proprietary_free
homepage : https://www.dyslogiciel.fr/
package_uuid : 33567ea7-81ad-43c7-8803-b0494491c91c
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : cd4a09c1380ac94df7c44299dd6e491d7ca9c944e594183cfd99bead7ed432d4
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-05-28T10:47:32.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 : Mrmf8S6dt4ZuY9CV644tI81DZNWXqkqeQ5naO5OkjwAoAKoGVGgn3roVlRdQff939C0kz58oyOBm0SwEq4lmVUak5c17vq7JVncbJkblidjx5sqmzJj1azzQxRh5aq0apEsNW5X54aOTwNhRj6/QwiXi68li+VSSKyhpkYDMbURgpDV9a+wP3zmtIGeXpmSCxA9y2k+GWlUV5kO4uvZjC+vhwbuhDeId0kCPiAmNOqLTUqax4fX1KNHtYb7km0JMYwfjfmINtlqmWnCILr2U+xJh8duLqOz+bIgPHEY+gnt7b8yc8y/wK3JN1dFZCJ1Y2WgHCAAkLTPkI576VtdOqg==
# -*- coding: utf-8 -*-
##################################################
# This file is part of WAPT Enterprise
# All right reserved, (c) Tranquil IT Systems 2024
# For more information please refer to
# https://wapt.tranquil.it/store/licences.html
##################################################
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('*.exe')[0]
install_dir = makepath(programfiles,"Dys-Mot")
# Installing the software
install_exe_if_needed(bin_name,
silentflags=f'/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /DIR="{install_dir}"',
key="{F5D005D7-6674-46C4-893F-DB26112B7D47}_is1",
min_version='1.0'
)
# -*- coding: utf-8 -*-
##################################################
# This file is part of WAPT Enterprise
# All right reserved, (c) Tranquil IT Systems 2024
# For more information please refer to
# https://wapt.tranquil.it/store/licences.html
##################################################
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()
download_url = "https://dyslogiciel3.fr/public_html/Installation-de-Dys-Mot.exe"
latest_bin = download_url.split("/")[-1]
version = "1"
# 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)
# Mettre à jour le package
control.set_software_version(version)
control.save_control_to_wapt()
return package_updated
bb37e4141f8438eeb5f4554bdda981888fd5eb4a983628be5cf799dd5e95c260 : Installation-de-Dys-Mot.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
9612669cd8b8489f0e2f1e301c900394504d2987ecc842b99e9714a7b1ceaa47 : WAPT/control
cd4a09c1380ac94df7c44299dd6e491d7ca9c944e594183cfd99bead7ed432d4 : WAPT/icon.png
a27f6d54b99565d2ee36f8f319646cd6a9677ab859c0573e26bc3f2e7e9b2271 : luti.json
e54766800811c67259a6978055db73dc63d473946e6aa8991d422b8e5092253c : setup.py
0dc2f0bbfa605f3dd31d10f1c05db5e7ecf5a79ba27d159c62f8aaa212f0f64b : update_package.py