tis-drawio

21.8.2-1
Draw.io is free diagram software for making flowcharts, process diagrams, org charts, UML, ER and network diagrams.
51697 downloads
Download
See build result See VirusTotal scan
tis-drawio icon
  • package : tis-drawio
  • name : Draw.IO
  • version : 21.8.2-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 : x64
  • signature_date : 2023-10-01 19:02
  • size : 103.43 Mo
  • homepage : http://www.draw.io
package           : tis-drawio
version           : 21.8.2-1
architecture      : x64
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    : Draw.io to darmowe oprogramowanie do tworzenia diagramów, diagramów procesów, schematów organizacyjnych, diagramów UML, ER i sieci
description_de    : Draw.io ist eine kostenlose Diagrammsoftware zur Erstellung von Flussdiagrammen, Prozessdiagrammen, Organigrammen, UML, ER und Netzwerkdiagrammen
description_es    : Draw.io es un software de diagramas gratuito para hacer diagramas de flujo, diagramas de proceso, organigramas, UML, ER y diagramas de red
description_pt    : Draw.io é um software gratuito para fazer fluxogramas, diagramas de processo, organogramas, UML, ER e diagramas de rede
description_it    : Draw.io è un software gratuito per la creazione di diagrammi di flusso, diagrammi di processo, organigrammi, diagrammi UML, ER e di rete
description_nl    : Draw.io is gratis diagram software voor het maken van flowcharts, proces diagrammen, organigrammen, UML, ER en netwerk diagrammen
description_ru    : Draw.io - это бесплатное программное обеспечение для создания блок-схем, диаграмм процессов, оргсхем, UML, ER и сетевых диаграмм
audit_schedule    : 
editor            : JGraph
keywords          : 
licence           : Apache-2.0 license
homepage          : http://www.draw.io
package_uuid      : ed7e752f-e5b0-4bd8-b59b-732992073b2f
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         : OhE336IeMn9zMxu00k5kboi8TMr4ynkRKTE6FZZkfwus7kxllRIBvoqHlRZ8KNQ9UlIQuK4r3G5bH8rSrtYrrdfY6Moi204Hvf2HEm9vWQVa3rcm3Ra2RGvO5ZgeBDLY82ns2rFYh7HnKJ4yKnOVi1tlrpdFzXpxHRIR8yOQge8zVabRJXudY00eDdqECFq+AL8/BWsQJeHWRA+aNlU/N1nuVP5kyh9OjgOIK3klytSz6IGoUnrKidBM7txjiEZXUqlkc3ihKN2VsM9HzsNINcTNlxhbuP65hJiTuP432Mf8IfsVyGk4gVwt1tEsyZ7tqct8HZrZi4mSlPPJkwVKZw==
signature_date    : 2023-10-01T19:02:28.750631
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
963616a3e90ad78854cb6ef9c8419c2073c77b873ff16017b783f1edeeccb699 : draw.io-21.8.2-windows-installer.exe
5f1b0f70feb594db5e5f58614b7920488465dc55d56fb35ea81e37b10502363c : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
5a92e422debe8ff8ecd1f22eeefbd106cb3f557ad10e77618185f972b11e158e : luti.json
e03f82f96966790a6421a8737c1e0861ef23d3b674c3f9e83c9481beeea86519 : WAPT/control