
- package: tis-xiboplayer2
- name: Xibo Screen Two
- version: 4.404.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: XiboScreenTwo,XiboScreenTwoWatchdog
- architecture: all
- signature_date:
- size: 146.19 Mo
- homepage : https://xibosignage.com/
- depends:
package : tis-xiboplayer2
version : 4.404.1-4
architecture : all
section : base
priority : optional
name : Xibo Screen Two
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-xiboplayer,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 : XiboScreenTwo,XiboScreenTwoWatchdog
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 : 50ce965b-f5a1-47f6-b047-3a893f6aad46
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-22T17:00:21.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 : JrpISIGIxQaC8+yyVYZvwG5F8P3yeJ3lNPBpihuURlsy9cqt+cr2klU3DALupcHWY3DdLJvhaczV0UXMjSdae/TU2/pJTaGplDXVomQfKducQR2yGTtjD5Uh8Gch+HewyOjPF3ylUek85Dzp2cKuXJPjm7Tg+VQ02QIzUN3Z8xDz708soAwkHCPRLC6V+i2YsaU1GQPL0xwgrxIApBgJuisLHvsGA6+xj+zs3G6U6KVs+1GiBDUQ+VqMpbNeIk9NtM8lWxb1LZSaqWhpDx8lEegtMxnT1pYN1SDV6YbYTIHZTwPKjFSPY8DwOmOnlmwoBQEtfp6i6kyQbfw8ItdhGg==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob("XiboScreenTwo*.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": "XiboScreenTwo",
}
# 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
dff27449c9248e5f4ba57eb1ea5918f2025ff8ef9fa248bdb9a827bf8f7a2129 : WAPT/control
34cc3e99f8d09960a91ff986c2119611316c8c6ebf3d1745d72425678b166045 : WAPT/icon.png
bbb04f74b9669804330c6b19c12e657704b1e28f420b631b5c9316ce966af324 : XiboScreenTwo_v4R404.msi
49582ed360053635c46388e90acc8ca2e06114cbde2d40e9ff218b2d38edad5d : luti.json
8b6bf8d68c427ea07df05eb2245994fbf99a1aa180f7ad6f0baab01068edb609 : setup.py
a9ce3d28b103dbc493e749db6104f1b7d1dcf5d63f6786ca18017e241f3550c3 : update_package.py