tis-nextcloud-talk icon

Nextcloud Talk

Silent install package for Nextcloud Talk

2.2.3-0
Media
Messaging
Office
Media
Messaging
Office

  • package: tis-nextcloud-talk
  • name: Nextcloud Talk
  • version: 2.2.3-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: 224.83 Mo
  • homepage : https://nextcloud.com/talk/

package           : tis-nextcloud-talk
version           : 2.2.3-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      : 3359da49-0e5c-42c5-b255-6a254e08dfa0
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-08-05T10:03:29.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         : xhy7kf81+0xRc0SGT5emvEYOvQTPeHZHH/T19bCi0sjafCkwUpBzKebvt9wIxFey8QC2tqy+q6SrdzrB03O13pEE8j88rkBGfU2hFmM49klwxaGofu/14LO5wkWOx6b65zgdTr0xWzorfjp4wbuuMlDiHyCZwpw9XjcpVfNqJ573xKH0ZHssU2i/SNbiiQaD30Bj09seJKAEo0NmnL0fbkHleUg/s9GFnSgG4fs/7zsCEHnibT8Flhukctno+mBiJ8EkMmdZMOHf4XoOUEOqUVHAGQwL7HPJiGfvjU6smLnkKw9mCN7ST0oF4PfpQ7hF1V+jfTwmbmH0yC2mu3IPUQ==

# -*- 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

88d1ce6fc18a0b56b99df735cd1838cf092e42269399d08e9179863ea86bdbe0 : Nextcloud.Talk-windows-x64.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
a73157fa687556b6ff011d1f08b0da15bfa12993a8ad34522ed41264ba06a49c : WAPT/control
1151ba48674e21f0e26c7bebad851fcc669cd869201ae559fa6e253d64b9401d : WAPT/icon.png
aa8b10c8d347a6d5366445f063e3fa77b39d3a19762dfb6580d0d025fd7a6cde : luti.json
9ad4ce8870a65096dab94337b53931a1bfc0c9dff2ef5d19d35b81ecd7ad46a3 : setup.py
984503e373e578595f7bc6d04b9db3791b31f25701dbf5d7e72bedb4ffb9c8ea : update_package.py