tis-xiboplayer

4.405.3-4
Xibo est une solution d'affichage numérique multi-écrans et multi-zones qui prend en charge un large éventail de formats de fichiers
3560 téléchargements
Télécharger
Voir le résultat de la construction Voir l'analyse de VirusTotal
tis-xiboplayer icon
  • package : tis-xiboplayer
  • name : Xibo Player
  • version : 4.405.3-4
  • categories : Media, Messaging
  • maintainer : Simon Fonteneau,WAPT Team,Tranquil IT,Jimmy PELÉ
  • editor : Xibo Signage Ltd
  • licence : opensource_free,wapt_public
  • locale : all
  • target_os : windows
  • impacted_process : XiboClient,XiboClientWatchdog
  • architecture : all
  • signature_date : 2025-06-16 09:26
  • size : 151.05 Mo
  • installed_size : 284.27 Mo
  • homepage : https://xibosignage.com/
  • depends :
package           : tis-xiboplayer
version           : 4.405.3-4
architecture      : all
section           : base
priority          : optional
name              : Xibo Player
categories        : Media, Messaging
maintainer        : Simon Fonteneau,WAPT Team,Tranquil IT,Jimmy PELÉ
description       : Xibo is a multi-screen, multi-zone digital signage solution supporting a wide range of file formats
depends           : tis-dotnetfx,tis-vcredist
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.1
sources           : https://xibosignage.com/downloads#windows
installed_size    : 284269795
impacted_process  : XiboClient,XiboClientWatchdog
description_fr    : Xibo est une solution d'affichage numérique multi-écrans et multi-zones qui prend en charge un large éventail de formats de fichiers
description_pl    : Xibo to wieloekranowe, wielostrefowe rozwiązanie digital signage obsługujące szeroką gamę formatów plików
description_de    : Xibo ist eine Digital Signage-Lösung für mehrere Bildschirme und Zonen, die eine Vielzahl von Dateiformaten unterstützt
description_es    : Xibo es una solución de señalización digital multipantalla y multizona que admite una amplia gama de formatos de archivo
description_pt    : O Xibo é uma solução de sinalização digital multi-ecrã e multi-zona que suporta uma vasta gama de formatos de ficheiros
description_it    : Xibo è una soluzione di segnaletica digitale multi-schermo e multi-zona che supporta un'ampia gamma di formati di file
description_nl    : Xibo is een oplossing voor digital signage met meerdere schermen en zones die een breed scala aan bestandsformaten ondersteunt
description_ru    : Xibo - это многоэкранное, многозональное решение для цифровых вывесок, поддерживающее широкий спектр форматов файлов
audit_schedule    : 
editor            : Xibo Signage Ltd
keywords          : 
licence           : opensource_free,wapt_public
homepage          : https://xibosignage.com/
package_uuid      : eac9cd5f-f3ab-4736-8483-e7461a664c47
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://github.com/xibosignage/xibo-dotnetclient/releases
min_os_version    : 10.0
max_os_version    : 
icon_sha256sum    : 34cc3e99f8d09960a91ff986c2119611316c8c6ebf3d1745d72425678b166045
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-06-16T09:26:08.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         : lSWaWCkTH7U/16iyF3ZRHRrNav6TlzydzshB76MwnD4nme1FoiSwLaHgbUA72DS0tKJzcw66f0ug3C12pvp+39tvnaCyjnYlGZ/eXXDTazpzb9zkV1v81gnBgl8nCwawnkSRvOvP7YHnFPPUvhi+QfWCHqINzLfFUqf+6l9uQ/fYR1jogYiw8JSQHSHndgOwSIysOMVTVRlvHZ4bs6pfepCRF6Lh3WOrsHKVc7qxzxj5R7uXLnASLqqp4MDxks4ZOhT8u134MbQ4UCiVICt/byQeeY1beAKs+EW69xeFgZzkMOr2s02Xkfx/ofeU4b72VDsGjk0o5sW8yDQtygZvXQ==
# -*- coding: utf-8 -*-
from setuphelpers import *


def install():
    bin_name = glob.glob("xibo-client-*.msi")[0]
    install_msi_if_needed(bin_name)
# -*- 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()
    api_url = "https://api.github.com/repos/xibosignage/xibo-dotnetclient/releases/latest"
    download_dict = {
        "windows": "-win32-x86.msi",
    }

    # Getting latest version information from official sources
    print("API used is: %s" % api_url)
    json_load = json.loads(wgets(api_url, proxies=proxies))
    for to_download in json_load["assets"]:
        if download_dict[control.target_os] in to_download["name"]:
            download_url = to_download["browser_download_url"]
            version = to_download["name"].split("-v")[1].replace("-R", ".").split("-")[0]
            latest_bin = to_download["name"]
            break

    # Downloading latest binaries
    print("Latest %s version is: %s" % (control.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 Version(version_from_file, 4) != Version(version, 4) 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, 4) > Version(control.get_software_version(), 4):
        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
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
22e557b2a3f78dfb260df894edcaed432eef483d054e0a5a54d24afae2f43353 : WAPT/control
34cc3e99f8d09960a91ff986c2119611316c8c6ebf3d1745d72425678b166045 : WAPT/icon.png
191f212eb0b1405a7d1c8d8704f47ef682ceb237b73987100de1ab190df592ba : luti.json
334bca8b1ac20253aed0409b0c29635eca4c5a338e5e20d632e59deef3e55481 : setup.py
97e52cb8bd1d1c5d1e1fa4135dbd4f48bfcb4bd961a6e35368b6fe9a54553805 : update_package.py
62e6caec1d86a63d44bc35cbbfc8874f92abbc561df06a2a791eb43fae0512f2 : xibo-client-v4-R405.3-win32-x86.msi