tis-plantronics-hub
3.24.53524.36336-8
Plantronics Hub is a client application that allows users to control the settings on their Plantronics audio device
7903 downloads
View on


Description
- package : tis-plantronics-hub
- version : 3.24.53524.36336-8
- architecture : all
- categories : Drivers,Utilities
- maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ
- description : Plantronics Hub is a client application that allows users to control the settings on their Plantronics audio device
- locale : all
- target_os : mac
- min_wapt_version : 2.0
- sources : https://www.poly.com/us/en/support/downloads-apps/hub-desktop
- installed_size : 180490240
- impacted_process : PLTHub
- description_fr : Plantronics Hub est une application client permettant aux utilisateurs finaux de contrôler les paramètres de leur périphérique audio Plantronics
- description_pl :
- description_de :
- description_es :
- description_pt :
- description_it :
- description_nl :
- description_ru :
- editor : Plantronics, Inc.
- licence : Freeware
- signature_date : 2022-04-13T20:13:49.114293
- Homepage : https://www.poly.com/
Setup.py
# -*- coding: utf-8 -*-
from setuphelpers import *
import plistlib
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
bin_contains = "PlantronicsHubInstaller"
app_name = "Plantronics Hub"
def install():
# Declaring local variables
package_version = control.get_software_version()
bin_name = glob.glob("*%s*.dmg" % bin_contains)[0]
# Installing the software
print("Installing: %s" % bin_name)
install_dmg(bin_name)
def uninstall():
# Uninstalling the software
uninstall_app(app_name)
def update_package():
# Declaring local variables
result = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
download_url = "https://www.poly.com/content/dam/www/software/PlantronicsHubInstaller.dmg"
latest_bin = "PlantronicsHubInstaller.dmg"
print("Download url is: %s" % download_url)
# Downloading latest binaries
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
control.set_software_version(control.get_software_version())
control.save_control_to_wapt()
# Validating or not update-package-sources
return result
Changelog
Changelog software url : https://www.plantronics.com/us/en/support/knowledge-base/kb-article-page?type=Product_Information__kav&lang=en_US&urlName=Hub-Release-Notes&t=All&k=hub%20release%20notes
No changelog.txt.