- package: tis-dozzzaqueux
- name: Dozzzaqueux
- version: 3.53-1
- categories: Education
- maintainer: WAPT Team,Tranquil IT,Joffrey Le Piquet
- licence: proprietary_free
- locale: fr
- target_os: windows
- impacted_process: dozzzaqueux
- architecture: all
- signature_date:
- size: 1.72 Mo
- homepage : http://jeanmarie.biansan.free.fr/dozzzaqueux.html
package : tis-dozzzaqueux
version : 3.53-1
architecture : all
section : base
priority : optional
name : Dozzzaqueux
categories : Education
maintainer : WAPT Team,Tranquil IT,Joffrey Le Piquet
description : Free software for simulating dosing curves in aqueous solutions
depends :
conflicts :
maturity : PROD
locale : fr
target_os : windows
min_wapt_version : 2.3
sources : http://jeanmarie.biansan.free.fr/dozzzaqueux.html
installed_size :
impacted_process : dozzzaqueux
description_fr : Logiciel libre et gratuit de simulation de courbes de dosage en solution aqueuse
description_pl : Darmowe oprogramowanie do symulacji krzywych dozowania w roztworach wodnych
description_de : Freie und kostenlose Software zur Simulation von Dosierungskurven in wässrigen Lösungen
description_es : Software gratuito para simular curvas de dosificación en soluciones acuosas
description_pt : Software gratuito para simular curvas de dosagem em soluções aquosas
description_it : Software gratuito per la simulazione di curve di dosaggio in soluzioni acquose
description_nl : Gratis software voor het simuleren van doseercurves in waterige oplossingen
description_ru : Бесплатное программное обеспечение для моделирования кривых дозирования в водных растворах
audit_schedule :
editor :
keywords :
licence : proprietary_free
homepage : http://jeanmarie.biansan.free.fr/dozzzaqueux.html
package_uuid : 93e2118a-b437-4cc3-ade9-43751386ce5e
valid_from :
valid_until :
forced_install_on :
changelog : http://jeanmarie.biansan.free.fr/telechargement/lazarus/dozzzaqueux/3.53/historique.html
min_os_version : 10
max_os_version :
icon_sha256sum : 3836780f808c3d1ceacfd2a3cd911a44e0b77aa67f5ea568786014894bc3d70b
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-06-07T10:00:12.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 : qDVCZRi2Li5LhI5/Lg//pf7zXhA1S34OL1uNWzqGxE5adaZKcv4sKpmjiT3CdiMcg90cnqvJ+55VFSksylDG2AT9Iwcx3EbEhbEsJCaKLRV+9rLqky3+Q5i+clApydOETIZOVflwSKqv5wLRtW0PCz9GN2rWySxtJ1o9Jv+nzfB5ooYwMktzn8lxkfjXHKnOlEyFFb9FkBgHEFiOBDbO4kFFVwdC81Z6yxKmP+2UygdIt4G7xYReJiXd/nCw/SMYNBjj5fmYjcBpojieSa6ckNvZbkxwqxuB5APdT0vTN+8KjVuIXtbjflpyqD2GegUsgm+ZQ2l/2tzHpYI1njb4KQ==
# -*- 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]
# Installing the software
install_exe_if_needed(bin_name,
silentflags=f'/VERYSILENT /SUPPRESSMSGBOXES /NORESTART"',
key="{24511979-D8F0-483E-9333-607E5653CA90}_is1",
get_version=get_installed_version,
min_version=control.get_software_version()
)
def get_installed_version(key):
return key["name"].split(" ")[-1]
# -*- 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 = "http://jeanmarie.biansan.free.fr/dozzzaqueux.html"
url_base = "http://jeanmarie.biansan.free.fr/"
# Getting latest version from official sources
for bs_search in bs_find_all(url, "a", "href", proxies=proxies):
if bs_search['href'].endswith(".exe"):
download_url = url_base + bs_search["href"]
latest_bin = bs_search["href"].split("/")[-1]
version = latest_bin.rsplit("_",1)[-1].replace(".exe","")
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
control.set_software_version(version)
control.save_control_to_wapt()
# Validating or not update-package-sources
return result
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
fde872467bc8b1bb389ce683db97adbe718b38a6b294e5ae3482b91276e836b5 : WAPT/control
3836780f808c3d1ceacfd2a3cd911a44e0b77aa67f5ea568786014894bc3d70b : WAPT/icon.png
6d20dff65c0031c6f4163fb5a86030884dc025b0150143fa54a5a59396e67087 : installateur_dozzzaqueux_windows_3.53.exe
26dd1b6e214e768ae5647111b2288c2ed6b3fcd0080a8ab5a469eea01df2e138 : luti.json
ad2b27d71e08d9e43540a4c293c91b8274b8e0cff817da19e728c36265741a7d : setup.py
7ee984832150116ba7754b20f9d43e296d121bf49bfed592702d0577907de4d5 : update_package.py