- package: tis-xiboplayer3
- name: Xibo Screen Three
- version: 4.403.1-4
- categories: Media, Messaging
- maintainer: Simon Fonteneau,WAPT Team,Tranquil IT,Jimmy PELÉ, Joffrey Le Piquet
- editor: Xibo Signage Ltd
- licence: opensource_free,wapt_public
- locale: all
- target_os: windows
- impacted_process: XiboScreenThree,XiboScreenThreeWatchdog
- architecture: all
- signature_date:
- size: 146.19 Mo
- homepage : https://xibosignage.com/
- depends:
package : tis-xiboplayer3
version : 4.403.1-4
architecture : all
section : base
priority : optional
name : Xibo Screen Three
categories : Media, Messaging
maintainer : Simon Fonteneau,WAPT Team,Tranquil IT,Jimmy PELÉ, Joffrey Le Piquet
description : Xibo is a multi-screen, multi-zone digital signage solution supporting a wide range of file formats
depends : tis-xiboplayer2,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 :
impacted_process : XiboScreenThree,XiboScreenThreeWatchdog
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 : c5d56d15-acda-4907-b584-5e02ea934aa6
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-09-11T11:27:49.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 : EFKNMMNkvhXtStTR4xmaTdvdbcKzDSxFupvJhwI4saT5JR23G61F/yN2x2dkFMzVM7Wumi+4ABPQYjO1QgEK7v1bkUpAIOHbAhotVmoZ/zFadHlsDe/+46T3NOjs4R0ANjvVqqzf5nMK0RIEnMfzQEF4t4TuKc4qrJVnjy4SlSiESNDmewRlr2kVlj+TT1gGJ8d/ZBoPRd1RicUvf1T+VexuvX+Rj+CWxhmREOGRifxzuf6KUARxXaqpzw7MDyGc2hCImCql+RPDmrTpMyws7YoI/phh/tiVlq1LnTG4tSBZOw4/4qQs6qjhPNAE9YuyNn5A9hePL2boDJ7mJA7Pcw==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob("XiboScreenThree*.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": "XiboScreenThree",
}
# 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", ".").replace(".msi", "")
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
ecbb9b5d8c910a9498f208a58d86a5dabe7f87f27130a92d227418435f95886c : WAPT/control
34cc3e99f8d09960a91ff986c2119611316c8c6ebf3d1745d72425678b166045 : WAPT/icon.png
b94a8d2743ab455d3c2d223b6b29e49ae0b5757e92a098a11d46249a13527540 : XiboScreenThree_v4R403.msi
26dedb0551996752a2bab62fee8df6863034d09e3d61064e11b52e55925a368c : luti.json
8cabce48b8046da55a47130109f77f6b4a7904a9f7f70d1c021b25b1db29137a : setup.py
2504172b697c070af12908f656f54af2e016e706463057feadd68c6cbbf77469 : update_package.py