tis-drawio
21.7.5-1
Draw.io est un logiciel gratuit de création de diagrammes pour la création d’organigrammes, de diagrammes de processus, d’organigrammes, de diagrammes UML, ER et de réseaux.
51697 téléchargements
Télécharger
Voir le résultat de la construction Voir l'analyse de VirusTotal

- package : tis-drawio
- name : Draw.IO
- version : 21.7.5-1
- categories : Utilities
- maintainer : WAPT Team,Tranquil IT,Simon Fonteneau,Pierre COSSON
- editor : JGraph
- licence : Apache-2.0 license
- locale : all
- target_os : windows
- impacted_process : draw.io.exe
- architecture : x86
- signature_date : 2023-09-19 22:02
- size : 99.12 Mo
- homepage : http://www.draw.io
package : tis-drawio
version : 21.7.5-1
architecture : x86
section : base
priority : optional
name : Draw.IO
categories : Utilities
maintainer : WAPT Team,Tranquil IT,Simon Fonteneau,Pierre COSSON
description : Draw.io is free diagram software for making flowcharts, process diagrams, org charts, UML, ER and network diagrams.
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.0
sources : https://api.github.com/repos/jgraph/drawio-desktop/
installed_size :
impacted_process : draw.io.exe
description_fr : Draw.io est un logiciel gratuit de création de diagrammes pour la création d’organigrammes, de diagrammes de processus, d’organigrammes, de diagrammes UML, ER et de réseaux.
description_pl :
description_de :
description_es :
description_pt :
description_it :
description_nl :
description_ru :
audit_schedule :
editor : JGraph
keywords :
licence : Apache-2.0 license
homepage : http://www.draw.io
package_uuid : 0304ba32-65e7-4e18-870a-600dbec5d863
valid_from :
valid_until :
forced_install_on :
changelog : https://github.com/jgraph/drawio/releases
min_os_version :
max_os_version :
icon_sha256sum : 5f1b0f70feb594db5e5f58614b7920488465dc55d56fb35ea81e37b10502363c
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature : FNwA8xRUTuB9JJDvDXkPEhcjMiuEep9I+2daIRHcN8pM9r+0OaHrD01sdOGl7G/8rRgcmwfmYrTQAhwEjLX7y+L5MWe9M57R+pDiNDDcYvctXyfL+FueCv+qhA8ThBdAa8a7PqsYkvPNIXPs9PP5omp7dDRW8HBMysVi0x6kxMU1RyKIa2nnw8GzfOKzW9q9CwwUaxHfYNsdpIprxDvbUXOtvDcEAKGlvOwTCYeG+XNuwVaJshEm4jPqzAl13wQewjOshUGo7mo2JY4Vm0KsU00crKRCLeDtynlCWvfDBZ+VjifdC+Czq4WN8A0GYrQzv16q9jfzp3T20wD8vssG9Q==
signature_date : 2023-09-19T22:02:07.135222
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
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob("draw.io*.exe")[0]
install_exe_if_needed(
bin_name,
silentflags="/S",
key="27a75bf3-be48-5c35-934f-8491cf108abe",
min_version=control.get_software_version(),
)
remove_desktop_shortcut("draw.io")
# -*- coding: utf-8 -*-
from setuphelpers import *
import json
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
api_url = "https://api.github.com/repos/jgraph/drawio-desktop/releases/latest"
if control.architecture == "x64":
arch_contains = "-installer.exe"
else:
arch_contains = "-32bit-installer.exe"
# Getting latest version information from official sources
print("API used is: %s" % api_url)
json_load = json.loads(wgets(api_url, proxies=proxies))
for download in json_load["assets"]:
if arch_contains in download["name"]:
download_url = download["browser_download_url"]
version = json_load["tag_name"].split("-")[-1].replace("v", "")
latest_bin = download["name"]
break
# Downloading latest binaries
print("Latest %s version is: %s" % (app_name, 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)
# Checking version from file
version_from_file = get_version_from_binary(latest_bin)
# if not version_from_file.startswith(version) and version_from_file != '':
if Version(version_from_file) != Version(version) and version_from_file != "":
print("Changing version to the version number of the binary")
os.rename(latest_bin, latest_bin.replace(version, version_from_file))
version = version_from_file
else:
print("Binary file version corresponds to online version")
# Changing version of the package
if Version(version) > Version(control.get_software_version()):
print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
package_updated = True
else:
print("Software version up-to-date (%s)" % Version(version))
control.set_software_version(version)
control.save_control_to_wapt()
# Deleting outdated binaries
remove_outdated_binaries(version)
# Validating update-package-sources
return package_updated
d01418445b2be6cb0ab24fa91943083dbb5db4e799a3781a4471631fd8d64857 : setup.py
: __pycache__
829c5a063c4a5eaf6181e4cd6ad8456c6a9385430307365b666adb4987243df8 : update_package.py
5f1b0f70feb594db5e5f58614b7920488465dc55d56fb35ea81e37b10502363c : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
645da7693f29f4312ed6b532bb0d273bd2c11ecc16272a171f432aec19c7d223 : luti.json
d721ab9b15eba605a94d0957453df832bd174200995357c3e86a305abe0b03e4 : draw.io-ia32-21.7.5-windows-32bit-installer.exe
19e9fa46fd24ccae93601397b05724c55fd7adccb0e6056fb151f72425002a18 : WAPT/control