tis-d5-livesync-rhino icon

D5 Livesync for Rhino

Paquet d’installation silencieuse pour D5 Livesync for Rhino

1.1.3.16-1
Utilities
Utilities

  • package: tis-d5-livesync-rhino
  • name: D5 Livesync for Rhino
  • version: 1.1.3.16-1
  • categories: Utilities
  • maintainer: WAPT Team,Tranquil IT,Gwenaël ADAM,Kevin CHEREL
  • editor: D5
  • licence: ©
  • locale: all
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 8.39 Mo
  • depends:

package           : tis-d5-livesync-rhino
version           : 1.1.3.16-1
architecture      : x64
section           : base
priority          : optional
name              : D5 Livesync for Rhino
categories        : Utilities
maintainer        : WAPT Team,Tranquil IT,Gwenaël ADAM,Kevin CHEREL
description       : D5 pour Rhino: Plugin de synchronisation qui permet de visualiser instantanément dans D5 Render les modifications faites dans Rhino (modèles, matériaux, lumières, caméras), sans avoir besoin d’exporter/importer les fichiers manuellement.
depends           : tis-d5-render
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.3
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : 
description_pl    : D5 dla Rhino: Wtyczka synchronizacji do natychmiastowej wizualizacji zmian z Rhino w D5 Render bez ręcznego eksportu/importu.
description_de    : D5 für Rhino: Synchronisations-Plugin zur sofortigen Visualisierung von Rhino-Änderungen in D5 Render ohne manuellen Export/Import.
description_es    : D5 para Rhino: Plugin de sincronización para visualizar al instante los cambios de Rhino en D5 Render sin exportar/importar manualmente.
description_pt    : D5 para Rhino: Plugin de sincronização para visualizar instantaneamente alterações do Rhino no D5 Render sem exportação/importação manual.
description_it    : D5 per Rhino: Plugin di sincronizzazione per visualizzare subito le modifiche di Rhino in D5 Render senza esportazione/importazione manuale.
description_nl    : D5 voor Rhino: Synchronisatieplugin om Rhino-wijzigingen direct in D5 Render te bekijken zonder handmatig exporteren/importeren.
description_ru    : D5 для Rhino: Плагин синхронизации для мгновенного отображения изменений из Rhino в D5 Render без ручного экспорта/импорта.
audit_schedule    : 
editor            : D5
keywords          : 
licence           : ©
homepage          : 
package_uuid      : 854a2c62-37c7-4f1d-a0a2-fdbe484ced44
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 10.0
max_os_version    : 
icon_sha256sum    : 
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2026-03-30T11:01:03.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         : HLIT7xnglf+bLXxy/Ialhlhha23M8MxJAb8Iwt6GYY6X3mfdtLbmt1zGygDcuSEiYVl0LIfmEFtgJLWI65KvRoxWaNTTahPEx3mW5w7NWpgqz917/pljunwvYvVoAHd7BEaCLtXpWIY6M7xgn39dnwzoqNKiy6Jhfc/kVgPevBQW6yt2HHv9i4HlyYoyL3nCE3PypXGytVRJfO9udEfTf/L8p6JcHt6QmP3MOHqhUT1B/7Mc3oScCeo2A/PKC557jwNKJpJwHGB8dx5DySSbHlH4wOrkOsYt2+2WJWkxTCap2btG/aVwuDjN57gWf1wsjQcMw5qu4WGBwFB6Zfkh2A==

# -*- coding: utf-8 -*-
from setuphelpers import *

def install():
    # Define local variables
    bin_name = glob.glob("D5_Live_Sync_Rhino*.exe")[0]

    # Install software
    install_exe_if_needed(
        bin_name,
        silentflags = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /ALLUSERS',
        min_version=control.version.split("-", 1)[0]
    )

def uninstall():
    # Define local variables
    uninstaller = makepath("C:", "ProgramData", "Microsoft", "Windows", "Start Menu", "Programs", "D5 LiveSync", "D5 LiveSync for Rhino", "unins000.exe")

    # Uninstall
    if isfile(uninstaller):
        run(rf'"{uninstaller}" /VERYSILENT /SUPPRESSMSGBOXES')

# -*- coding: utf-8 -*-
from setuphelpers import *

def update_package():

    # Initializing variables
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    url = "https://www.d5render.com/workflow/rhino"

    # Getting latest version from official sources
    print("URL used is: %s" % url)
    for bs_search in bs_find_all(url, "a", "class", "primary-cta-button w-inline-block", proxies=proxies):
        if bs_search["href"].endswith(".exe"):
            version = bs_search["href"].split("_")[-1].replace(".exe", "")
            latest_bin = bs_search["href"].split("/")[-1]
            url_dl = bs_search["href"]
            break

    print("Latest %s version is: %s" % (control.name, version))
    print("Download url is: %s" % url_dl)

    # Downloading latest binaries
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(url_dl, latest_bin, proxies=proxies)

    # Changing version of the package
    control.set_software_version(version)
    control.save_control_to_wapt()
    print("Changing package version to: %s in WAPT\\control" % control.version)

    # Deleting outdated binaries
    remove_outdated_binaries(version)

0a01f714292579f13651babbbaff8a78699227652a36da048ac0097bc1c4198e : D5_Live_Sync_Rhino_usa_1.1.3.0016.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
e361aee7cff193ecd4c3259a09c6a28033485da0d6c131eb3b7f2723bbcf6cc1 : WAPT/control
4dbb53f68558320d1202843cd234b3152d1a275d66582060a7c746bee0a20f65 : luti.json
dffeb04cd0662198bbb6650515f0366c681190789af11a269a6ac8a0efcf8b69 : setup.py
84279be6ed9a8af40b7a8efc311b1f921087e7ce40abb29bf4115ce51210339c : update_package.py