- package: tis-dicom
- name: Dicom
- version: 1.3-1
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT, Joffrey Le Piquet
- editor: ICOM Provence
- locale: all
- target_os: windows
- impacted_process: DictionnaireICOM
- architecture: all
- signature_date:
- size: 1.46 Mo
- homepage : https://icomprovence.net/logiciels-accessibilite/
package : tis-dicom
version : 1.3-1
architecture : all
section : base
priority : optional
name : Dicom
categories : Utilities
maintainer : WAPT Team,Tranquil IT, Joffrey Le Piquet
description : Word prediction software to help with data entry
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.0
sources : https://icomprovence.net/logiciels-accessibilite/
installed_size :
impacted_process : DictionnaireICOM
description_fr : Logiciel de prédiction de mots pour aider à la saisie
description_pl : Oprogramowanie do przewidywania słów ułatwiające pisanie
description_de : Wortvorhersagesoftware zur Unterstützung der Eingabe
description_es : Software de predicción de palabras para facilitar la mecanografía
description_pt : Software de previsão de palavras para ajudar a escrever
description_it : Software di predizione delle parole per aiutare la digitazione
description_nl : Woordvoorspellingssoftware om te helpen typen
description_ru : Программа для предсказания слов, помогающая набирать текст
audit_schedule :
editor : ICOM Provence
keywords :
licence :
homepage : https://icomprovence.net/logiciels-accessibilite/
package_uuid : 10f485c0-475c-4810-aee7-0f97b2c38058
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 6.1
max_os_version :
icon_sha256sum : 41a07a88fd6f697d865f82672a6f1eaa1dbf8c6558321b49d0369a4d87f9888c
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-05-28T08:21:52.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 : gGa6uJdo8+4+7wKtFaRUbPhBzDio5Xvc+uQL8WRKjS/y7djoxvVItpK6VTi5388FbcxkELC8tmVG6K+E2Ud41B5WB8WzuaKhdX9hzdpJeXAwhmCZMUlcwoKrUjhnpze6x9dIlLsNEA+WXeYkUMJkRRMXRafs7MRZ1mgaeo9CJZwHUNEjueJ4hNoJeDSQV3AJmWya7mzSSkIfFdSQWAL2ZYIhYi2HubZD2DlAcSGVC6KNSRJV9H46vrqqhD1t7iatUnZHo8KFoTWZYTO57YhcSnhZF4x1R48u9bzOa6gQvNvB+AQ89J2rUiAb39d1S+l7hdvZN8ztHWCXpbjkXv+Qvw==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = "setup-dicom-1.3.exe"
install_dir = makepath(programfiles,'DICOM')
install_exe_if_needed(
bin_name,
f'/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /DIR="{install_dir}"',
key="{4EC7D986-5BBA-4BF8-8ECD-710BB9281ADD}_is1",
min_version=control.get_software_version()
)
# -*- coding: utf-8 -*-
from setuphelpers import *
def update_package():
# Declaring local variables
result = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
url = "https://icomprovence.net/logiciels-accessibilite/"
# Getting latest version from official sources
for bs_search in bs_find_all(url, "a", "href", proxies=proxies):
if "dicom" in bs_search['href']:
download_url = bs_search["href"]
latest_bin = bs_search["href"].split("/")[-1]
version = latest_bin.rsplit(".", 1)[0].split("-")[-1]
break
if (not isfile(latest_bin)) or (Version(version) > contol.get_software_version()):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
result = True
unzip(latest_bin,basedir)
remove_file(latest_bin)
control.set_software_version(version)
control.save_control_to_wapt()
# Validating or not update-package-sources
return result
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
177cfd3a8261d72fc5edb5111a67eeab3aaab4e8ad79f907c07e223b5d6907db : WAPT/control
41a07a88fd6f697d865f82672a6f1eaa1dbf8c6558321b49d0369a4d87f9888c : WAPT/icon.png
cda6a8141d08e89a0d08957a9fd0a72e562a300e9e3a2a9d2e44a47b2e480a72 : luti.json
31d203893afab36bb0d94c2595d69ed4872254cb872839df2aeb87e4445ab3a7 : setup-dicom-1.3.exe
5aa97a87ac03b790229811237bb50ca586d7853059a38d11faafd4102f2dd8d0 : setup.py
e90ce404c72264cf9232ba68cd50125a274cfac8a14ca789d60610d5d5c22690 : update_package.py