tis-lifesize
3.0.18-14
Lifesize delivers cloud-based video conferencing. Connect, communicate, and collaborate
1534 downloads
Download
See build result See VirusTotal scan

- package : tis-lifesize
- name : Lifesize Desktop App
- version : 3.0.18-14
- categories : Media,Messaging
- maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ
- editor : Lifesize
- licence : proprietary_free,wapt_public
- locale : all
- target_os : windows(>=5.1)
- impacted_process : Lifesize,Lifesize App Service
- architecture : x64
- signature_date : 2025-06-02 01:00
- size : 121.97 Mo
- installed_size : 448.71 Mo
- homepage : https://www.lifesize.com/
package : tis-lifesize
version : 3.0.18-14
architecture : x64
section : base
priority : optional
name : Lifesize Desktop App
categories : Media,Messaging
maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ
description : Lifesize delivers cloud-based video conferencing. Connect, communicate, and collaborate
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows(>=5.1)
min_wapt_version : 2.3
sources : https://call.lifesizecloud.com/downloads
installed_size : 448711133
impacted_process : Lifesize,Lifesize App Service
description_fr : Lifesize propose des visioconférences basées sur le cloud. Connectez-vous, communiquez et collaborez
description_pl : Lifesize zapewnia wideokonferencje w chmurze. Łącz się, komunikuj i współpracuj
description_de : Lifesize bietet cloudbasierte Videokonferenzen. Verbinden, kommunizieren und zusammenarbeiten
description_es : Lifesize ofrece videoconferencias basadas en la nube. Conéctate, comunícate y colabora
description_pt : O Lifesize oferece videoconferência baseada em nuvem. Conecte-se, comunique-se e colabore
description_it : Lifesize offre videoconferenze basate sul cloud. Connettetevi, comunicate e collaborate
description_nl : Lifesize levert videovergaderen in de cloud. Verbinden, communiceren en samenwerken
description_ru : Lifesize обеспечивает облачные видеоконференции. Подключайтесь, общайтесь и сотрудничайте
audit_schedule :
editor : Lifesize
keywords :
licence : proprietary_free,wapt_public
homepage : https://www.lifesize.com/
package_uuid : aab50b63-4d0f-4a81-ba35-2e1ca7522f51
valid_from :
valid_until :
forced_install_on :
changelog : https://community.lifesize.com/s/release-notes-web-desktop-app
min_os_version :
max_os_version :
icon_sha256sum : 25399e28a227ced30472ff6e613e59c1fbf7d650ef30fcb1a4ef5ddb581711e8
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-06-02T01:00:48.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 : lVMXbu8nHwgYiXSQTuwoqbMYSZsrFakDuSPFgWMt8eCNFhCpi9Jt7KVlwzD9ycGVxbpHj+Tg/SxUn2pZ8i71s2uv7RUKkFucTE822KurnkZ3R8zxnTy0mSesuogo678wgy2hN82ffpJzdpMpdn6tlKOEdO5egzEn9UutsmMvFJ9wt/QcCzhXLLmjsJyDc2NTfHEYR2GMrcOOekSBLBC5KQVZcNFQS+C7NFhrLVhemNq/560+IU34DU3KmDp8DcUcmks16Kd4pY573pyIFODSRmyYPiSoiGJ/4wpVyL5/xLp67Y3+Ok/OAR8CUBf0CjIblI33PeemWdHGuLWak2DQWw==
# -*- coding: utf-8 -*-
from setuphelpers import *
import json
conf_json = """
{
"proxy": {
"ProxyMethod": 2,
"Port": "8080",
"autoConfigUrl": "http://server.domain.lan/proxy.pac"
},
"isAllowNTLMCredentialsForAllDomainsEnabled": false
}
"""
conf_json = """
{
"proxy": {
"UseSystem": true,
"Host": "192.168.0.1",
"UserName": "john_doe",
"Password": "fido",
"Port": "8080"
},
"miniCallerView": false,
"isScreenSharingToolbarEnabled": false,
"isSpellCheckEnabled": true,
"initialOpenAtLogin": false
}
"""
conf_json = """{"initialOpenAtLogin": false}"""
if conf_json:
if type(conf_json) == dict:
conf_data = json.loads(conf_json)
else:
conf_data = conf_json
conf_dir = makepath(programfiles32, "Lifesize Installer")
conf_path = makepath(conf_dir, "settings.json")
def install():
bin_name = glob.glob("Lifesize Setup *.msi")[0]
# Uninstalling older major versions of the software
for to_uninstall in installed_softwares(name="^Lifesize Installer$"):
if Version(to_uninstall["version"]) < Version(control.get_software_version()) or force:
print("Removing: %s (%s)" % (to_uninstall["name"], to_uninstall["version"]))
killalltasks(ensure_list(control.impacted_process))
run(uninstall_cmd(to_uninstall["key"]))
wait_uninstallkey_absent(to_uninstall["key"])
# Installing the software
install_msi_if_needed(
bin_name,
timeout=600,
remove_old_version=True,
)
# Applying configuration dict
if conf_json:
print("Applying configuration in: %s" % conf_path)
json_write_file(conf_path, conf_data)
def session_setup():
user_conf_dir = makepath(application_data, "Lifesize", "electron-settings")
user_conf_path = makepath(user_conf_dir, "settings.json")
# Applying configuration dict
if conf_json:
print("Applying configuration in: %s" % conf_path)
mkdirs(user_conf_dir)
json_write_file(user_conf_path, conf_data)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import requests
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
download_dict = {
"windows": "https://download.lifesizecloud.com/download?platform=msi",
# "windows": "https://download.lifesizecloud.com/download?platform=exe", # exe
# "windows": "https://download.lifesizecloud.com/download",
}
download_url = download_dict[ensure_list(control.target_os.split("(")[0])[0]]
# Getting latest version information from download url
requests_result = requests.head(
download_url,
proxies=proxies,
allow_redirects=True,
headers={
"User-Agent": "%s" % "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36"
},
)
download_url = requests_result.url
latest_bin = requests_result.url.split("/")[-1].replace("%20", " ")
version = requests_result.url.split("%20")[-1].rsplit(".", 1)[0]
# Downloading latest binaries
print("Latest %s version is: %s" % (app_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)
# Deleting outdated binaries
remove_outdated_binaries(latest_bin)
# Checking version from file
if get_os_name() == "Windows" and "windows" in control.target_os.lower():
version_from_file = get_version_from_binary(latest_bin)
if Version(version_from_file, 3) == Version(version, 3):
print(f"INFO: Binary file version ({version_from_file}) corresponds to online version ({version})")
else:
error(f"ERROR: Binary file version ({version_from_file}) do NOT corresponds to online version ({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()
# Validating update-package-sources
return package_updated
# # Changing version of the package and validating update-package-sources
# return complete_control_version(control, version)
e513010c4ac878cb276296817662947b1a0e7b9bdb4c6b1b303dcd3761e0e2d5 : Lifesize Setup 3.0.18.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
f857992d9ab6a0be5d546b94070836ee62842ee1d3bc5c8d3d899c081ebb34f8 : WAPT/control
25399e28a227ced30472ff6e613e59c1fbf7d650ef30fcb1a4ef5ddb581711e8 : WAPT/icon.png
e263e43e531dab4ea6527409703a754e5161998990f21ee3b71dc4a5470fe9c2 : luti.json
de7b2d5871aa9186660082142caddc3c531cc140023de084c8e3f6eef581c3c3 : setup.py
d6518181ff441b436bf6e33f9cbb4418f3b4c54dba8320c4ff6bc4cc8e7980a6 : update_package.py