tis-mumble icon

Mumble

Silent install package for Mumble

1.4.287-6
Messaging
Messaging

  • package: tis-mumble
  • name: Mumble
  • version: 1.4.287-6
  • categories: Messaging
  • maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ
  • editor: Mumble VoIP Team
  • licence: BSD
  • locale: all
  • target_os: windows
  • impacted_process: mumble
  • architecture: x86
  • signature_date:
  • size: 28.46 Mo
  • installed_size: 58.09 Mo
  • homepage : https://www.mumble.info/

package           : tis-mumble
version           : 1.4.287-6
architecture      : x86
section           : base
priority          : optional
name              : Mumble
categories        : Messaging
maintainer        : WAPT Team,Tranquil IT,Jimmy PELÉ
description       : Mumble is a voice over IP (VoIP) application primarily designed for use by gamers and is similar to programs such as TeamSpeak.
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.0
sources           : https://github.com/mumble-voip/mumble/releases
installed_size    : 58089472
impacted_process  : mumble
description_fr    : Mumble est un logiciel libre de voix sur IP, dont le principal usage est la communication pendant les parties de jeux en réseau.
description_pl    : Mumble wolny program do komunikacji głosowej przeznaczony głównie dla graczy, działający na podobnej zasadzie co Ventrilo czy TeamSpeak.
description_de    : Mumble ist eine freie Sprachkonferenzsoftware, die sich wegen niedriger Latenzzeit und guter Audioqualität unter anderem für den Einsatz parallel zu Onlinespielen eignet.
description_es    : Mumble es una aplicación multiplataforma libre de voz sobre IP especializada en la multiconferencia. Sus principales usuarios son jugadores, y es similar a programas privativos como TeamSpeak y Ventrilo.
description_pt    : Mumble é uma aplicação de voz sobre IP (VoIP) concebida principalmente para utilização por jogadores e é semelhante a programas como o TeamSpeak
description_it    : Mumble è un'applicazione VoIP (Voice over IP) progettata principalmente per i giocatori e simile a programmi come TeamSpeak
description_nl    : Mumble is een VoIP-toepassing (Voice over IP) die voornamelijk is ontworpen voor gebruik door gamers en lijkt op programma's als TeamSpeak
description_ru    : Mumble - это приложение для передачи голоса по IP (VoIP), предназначенное в основном для геймеров и похожее на такие программы, как TeamSpeak
audit_schedule    : 
editor            : Mumble VoIP Team
keywords          : mumble,voice,over,ip,voip
licence           : BSD
homepage          : https://www.mumble.info/
package_uuid      : 2bcb69a7-9ba0-482b-9698-610e61aa4f1d
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://github.com/mumble-voip/mumble/releases
min_os_version    : 5.1
max_os_version    : 
icon_sha256sum    : af8da447a3b49634d195769aea706fe9f73d1c9ddab021c8f7e1fa5a14dbe38f
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : U9SXD/tZlpNR6PkRhrDjJF8ebTLjBlMChzPs3mxblPqpx5NMGIkHFmKwHYrKoW6yli8nqt4RENcKkffwL0intB9BKeS2CIiPnBRIHMfZps6ZPjmSZMWckcAxXhpqnhEQcV/X4rPU56deSqm9lXL+Uffpf5Cnf7KM5qoB888PVCivjUi6L7tzpOpSKfwiR9ocMU3hn+aIABTn8UUcOE5ePnj1oDeZho7XbMHRAtZjMIPO9Fx+OunFjjqQyGDgVb2gFlsvI7xwOhfmIRkimoGrdtH8Ni/GAYat6GhuGCn9K++5IPRFRZ5dpcnvtnOjaFbJqh9SV7fWp1IzNqjvT4HHlw==
signature_date    : 2022-12-14T10:02:05.912646
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

# -*- coding: utf-8 -*-
from setuphelpers import *


def install():
    for soft in installed_softwares("mumble"):
        if Version(soft["version"]) < Version(control.version.split("-")[0]):
            print("Remove %s %s" % (soft["name"], soft["version"]))
            run(uninstall_cmd(soft["key"]))

    install_msi_if_needed(glob.glob("*.msi")[0])


def session_setup():
    print("Disabling: update check, telemetry, overlay")
    registry_set(HKEY_CURRENT_USER, r"Software\Mumble\Mumble\ui", "updatecheck", "false")
    registry_set(HKEY_CURRENT_USER, r"Software\Mumble\Mumble\ui", "usage", "false")
    registry_set(HKEY_CURRENT_USER, r"Software\Mumble\Mumble\ui", "plugincheck", "false")
    registry_set(HKEY_CURRENT_USER, r"Software\Mumble\Mumble\overlay", "enable", "false")
    registry_set(HKEY_CURRENT_USER, r"Software\Mumble\Mumble\privacy", "hideos", "true")

    registry_set(HKEY_CURRENT_USER, r"Software\Mumble\Mumble\audio", "mutecue", "false")

# -*- coding: utf-8 -*-
from setuphelpers import *
import json


def update_package():
    # Initializing variables
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    app_name = control.name
    git_repo = "mumble-voip/mumble"
    url_api = "https://api.github.com/repos/%s/releases" % git_repo
    release_found = False
    bin_end = control.architecture + ".msi"

    # Getting latest version from official sources
    print("API used is: %s" % url_api)
    releases = json.loads(wgets(url_api, proxies=proxies))

    for json_load in releases:
        for download in json_load["assets"]:
            if download["name"].endswith(bin_end) and "client" in download["name"]:
                url_dl = download["browser_download_url"]
                version = json_load["tag_name"].replace("v", "")
                latest_bin = download["name"]
                release_found = True
                break
        if release_found:
            break

    print("Latest %s version is: %s" % (app_name, version))
    print("Download url is: %s" % url_dl)

    # Downloading latest binaries
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(url_dl, latest_bin, proxies=proxies)

        # Checking version from file
        version_from_file = get_version_from_binary(latest_bin)
        if version != version_from_file:
            version = version_from_file

        # Changing version of the package
        control.version = "%s-%s" % (version, control.version.split("-", 1)[-1])
        control.save_control_to_wapt()
        print("Changing package version to: %s in WAPT\\control" % control.version)

    # Deleting outdated binaries
    remove_outdated_binaries(version)

9d4919f3e734c25255864ae0500d42c77ad99ba9df9aaa0c74540a28d57071d1 : setup.py
5b19bfc8b09fa3c23f4116ae5997725efa55944c18eb6edc34f9fb10e5ec784a : update_package.py
e1e020e12bb8cc55176b0cbeed6d7abfbe8a138eb69418360ac159a3b46c0262 : mumble_client-1.4.287.x86.msi
af8da447a3b49634d195769aea706fe9f73d1c9ddab021c8f7e1fa5a14dbe38f : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
86c5bcb8bc010b0c2cdecd12ff1dc5681d94a81a3773b6049f814cd71ec7d878 : luti.json
8b08325d3d1a684d3dec9fab4cdcf929337be10b7c42ceac3ab5fce425f90947 : WAPT/control