Nextcloud Talk
Paquet d’installation silencieuse pour Nextcloud Talk
2.0.5-0
Media
Messaging
Office
Media
Messaging
Office
- package: tis-nextcloud-talk
- name: Nextcloud Talk
- version: 2.0.5-0
- categories: Media,Messaging,Office
- maintainer: WAPT Team,Tranquil IT,Gwenaël ADAM
- editor: Nextcloud GmbH
- licence: opensource_free,cpe:/a:gnu:gpl_v2,wapt_public
- locale: all
- target_os: windows
- impacted_process: nextcloud,nextcloudcmd
- architecture: x64
- signature_date:
- size: 205.43 Mo
- homepage : https://nextcloud.com/talk/
package : tis-nextcloud-talk
version : 2.0.5-0
architecture : x64
section : base
priority : optional
name : Nextcloud Talk
categories : Media,Messaging,Office
maintainer : WAPT Team,Tranquil IT,Gwenaël ADAM
description : The first privacy-respecting communication platform for online collaboration through meetings, chat and webinars. All in one application.
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.1
sources : https://github.com/nextcloud/talk-desktop#-install
installed_size :
impacted_process : nextcloud,nextcloudcmd
description_fr : La première solution complète de collaboration conforme au RGPD : réunions en ligne, chats et webinaires dans une seule application.
description_pl : Pierwsza platforma komunikacyjna szanująca prywatność do współpracy online poprzez spotkania, czaty i webinary. Wszystko w jednym wniosku.
description_de : Die erste DSGVO-konforme Komplettlösung für Zusammenarbeit: Online-Meetings, Chats und Webinare in einer Anwendung.
description_es : La primera plataforma de colaboración que cumple con el RGPD para reuniones en línea, chat y seminarios web. Todo en una sola aplicación.
description_pt : A primeira plataforma de comunicação que respeita a privacidade para colaboração online através de reuniões, chat e webinars. Tudo numa só aplicação.
description_it : La prima piattaforma di collaborazione conforme al GDPR per riunioni online, chat e webinar. Tutto in un’unica applicazione.
description_nl : Het eerste privacyrespecterende communicatieplatform voor online samenwerking via vergaderingen, chat en webinars. Alles in één applicatie.
description_ru : Первая платформа для коммуникации, уважающая конфиденциальность, для онлайн-сотрудничества через встречи, чаты и вебинары. Всё в одном приложении.
audit_schedule :
editor : Nextcloud GmbH
keywords :
licence : opensource_free,cpe:/a:gnu:gpl_v2,wapt_public
homepage : https://nextcloud.com/talk/
package_uuid : f1fdf5ab-a8e5-4286-b51a-074464beb023
valid_from :
valid_until :
forced_install_on :
changelog : https://github.com/nextcloud/talk-desktop/releases/latest
min_os_version : 10.0
max_os_version :
icon_sha256sum : 1151ba48674e21f0e26c7bebad851fcc669cd869201ae559fa6e253d64b9401d
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-01-03T12:00:28.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 : UtDoVVh+gE6crmWNnrWgJjJ01hn1abRcN6jQlB1y/MdoUhH7tQh5OuHmbfWBONvxE9UGD4WrhGyInxhfrjgdXHw6oE2Lfa+I0VCzw7f7ecXGfx22J/ZWt4KDEt2jJEcjH5O3EqQWaUOLHaPnOyl72/BTuFnNk7lMHyazK/Y8OgmmEhiYy2MwJnfxUuqANb0frU5gP1KyQOAnBbO2zbF7h93cFbnW23afZspc72Da//34HaA+gmMd6QJs+Ty/4BIozsV8YRnXvjAhEIqApqTixy1L7iSace6mcJ0KLshnu2skRSruNDsCXwtViB0JpTJl+GuPDFFm7XgeJQ4i0Q1O4A==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob("Nextcloud*Talk*.msi")[0]
install_msi_if_needed(
bin_name,
min_version=control.get_software_version(),
name='Nextcloud Talk'
)
# -*- 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/nextcloud-releases/talk-desktop/releases/latest"
download_dict = {
"windows": "x64.msi",
"linux": "x64.zip",
"darwin": ".dmg",
}
releases_dict = wgets(api_url, proxies=proxies, as_json=True)
for asset in releases_dict["assets"]:
if asset["browser_download_url"].endswith(download_dict[control.target_os]):
download_url = asset["browser_download_url"]
latest_bin = download_url.rsplit('/')[-1]
version = releases_dict["tag_name"][1:]
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)
print("version from file :" + version_from_file )
if Version(version_from_file, 4) != Version(version, 4) and version_from_file != "":
print("Changing version to the version number of the binary")
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()
return package_updated
4e19010aa2aa7a4d35e689f0c0b6bb4cd5cdaede4fd2f26b9ce1fb5f6dcd4cb4 : Nextcloud.Talk-windows-x64.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
49a0db0d0e671cb7807de4259f895c13b82277e06b264ff9bbef55837cf8b389 : WAPT/control
1151ba48674e21f0e26c7bebad851fcc669cd869201ae559fa6e253d64b9401d : WAPT/icon.png
b851ec694045e2c808a35a389e54a1ef44f4641b0f25a643e9c47258dceda5c4 : luti.json
9ad4ce8870a65096dab94337b53931a1bfc0c9dff2ef5d19d35b81ecd7ad46a3 : setup.py
984503e373e578595f7bc6d04b9db3791b31f25701dbf5d7e72bedb4ffb9c8ea : update_package.py