tis-xiboplayer
4.404.1-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

- package : tis-xiboplayer
- name : Xibo Player
- version : 4.404.1-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 : 2024-12-22 11:06
- size : 146.23 Mo
- installed_size : 284.27 Mo
- homepage : https://xibosignage.com/
- depends :
package : tis-xiboplayer
version : 4.404.1-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 : 288a9034-e510-4188-b0e6-2fd352bc73e3
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 : 2024-12-22T11:06:09.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 : GewFx7Lz4UAWeydLyfHpKSX0s6uNIO1/9RXcje/yBwfjBHCGKIMNywlmWwUEp1ApTwzpoDrAkzkTiZAJWuN003Oh79fl0UArx8+qCV0YF0u/72suIkz9HK3le3mwBh56vtmYd8BBAQIVsWmnROKrtFERYPhLlxVT/Stj+kNtVHjYM/0o6vnAH98ycebZWgMi16Jr+yFf5LT55MTdzIiOOD+wjkoBrLGqLeCMMhgDlHX7ogiYLfgLqKQdy8+pSc9FwIevVwDgebZY9YGg+quc01sqx6+NexCsxY5V/WCBxY2oShtgJDkdN5j6Mnfpll88JzWeL7ogIPIwvvJNCqu69Q==
# -*- 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
54c07234478c47da4cb7d84f67371cf831b79a08d8c4b8ee9c59ccaf262ed3ff : WAPT/control
34cc3e99f8d09960a91ff986c2119611316c8c6ebf3d1745d72425678b166045 : WAPT/icon.png
dc1188371bb6aad466fc7ed92c334f85bdc5154e65c92744d5fc41e5f73958dc : luti.json
334bca8b1ac20253aed0409b0c29635eca4c5a338e5e20d632e59deef3e55481 : setup.py
97e52cb8bd1d1c5d1e1fa4135dbd4f48bfcb4bd961a6e35368b6fe9a54553805 : update_package.py
bb5c70acbdee02aa464865db90e613a29b763b3ce54ddac55b8c9c605b5adf20 : xibo-client-v4-R404.1-win32-x86.msi