tis-xiboplayer

4.401.0-4
Xibo is a multi-screen, multi-zone digital signage solution supporting a wide range of file formats
3560 downloads
Download
See build result See VirusTotal scan
tis-xiboplayer icon
  • package : tis-xiboplayer
  • name : Xibo Player
  • version : 4.401.0-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 : 2023-09-24 16:00
  • size : 128.23 Mo
  • installed_size : 284.27 Mo
  • homepage : https://xibosignage.com/
  • depends :
package           : tis-xiboplayer
version           : 4.401.0-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      : 4f52bd26-123f-46f6-af56-a7e43b6264e7
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         : YwMZBvuvq4RkFxeWe7a42nhdChGhg9StBuLmbu9CCqty9BQJqdwRn9tvzZEpG5AVTH5FbeKN0BLNsofP8oKVuiyaqJNilpzwk5U+Gi4uqg+Jxl7GOnx3DAQlLqucIwMJucVp4Qzxv2TtRlDTts9AxwIW6z9NuvMoEpDNHTz9PGVVi4x+UUQKO/JPAXFPIDIgMjKjuz/3m/yR/MX375HYYbWO46ZbaYXD96mYZYTmka+4YPVajq7XUbUa6mOlOVHFc1mFM8G+mUu/AzIIxEHrUJbKVdWc/L6+0EFAi9DbEiEgZ9Bl9EovMgDjwrUBLIKT7U30xS2nheDitOKR1Yi/PQ==
signature_date    : 2023-09-24T16:00:23.197026
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("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
334bca8b1ac20253aed0409b0c29635eca4c5a338e5e20d632e59deef3e55481 : setup.py
 : __pycache__
97e52cb8bd1d1c5d1e1fa4135dbd4f48bfcb4bd961a6e35368b6fe9a54553805 : update_package.py
34cc3e99f8d09960a91ff986c2119611316c8c6ebf3d1745d72425678b166045 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
691567654a68b52ba4bc11872906a8840482756cb0418fb0aee48de053e0338c : luti.json
881ac6fabc68e3af9f901be0f6616a8bd049b083b2b2b6113379f68039d7ace4 : xibo-client-v4-R401.0-win32-x86.msi
53cf82511e444274c586147b605da63cb35f456bb1e8e51831b082c6c5eca87a : WAPT/control