- package: tis-winmute
- name: Winmute
- version: 2.5.2.0-1
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,Ingrid TALBOT
- editor: LX-Systems
- licence: opensource_free,cpe:/a:bsd:bsd_license,wapt_public
- locale: all
- target_os: windows
- impacted_process: WinMute
- architecture: x64
- signature_date:
- size: 1.58 Mo
- installed_size: 3.98 Mo
package : tis-winmute
version : 2.5.2.0-1
architecture : x64
section : base
priority : optional
name : Winmute
categories : Utilities
maintainer : WAPT Team,Tranquil IT,Ingrid TALBOT
description : WinMute is a lightweight program allowing you to mute your PC automatically based on specific triggers
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.3
sources :
installed_size : 3981991
impacted_process : WinMute
description_fr : WinMute est un programme léger qui vous permet de mettre votre PC en sourdine automatiquement en fonction de déclencheurs spécifiques
description_pl : WinMute to lekki program umożliwiający automatyczne wyciszanie komputera na podstawie określonych wyzwalaczy
description_de : WinMute ist ein leichtgewichtiges Programm, mit dem Sie Ihren PC automatisch auf der Grundlage bestimmter Auslöser stummschalten können
description_es : WinMute es un programa ligero que le permite silenciar su PC automáticamente en función de activadores específicos
description_pt : O WinMute é um programa leve que permite silenciar o PC automaticamente com base em accionadores específicos
description_it : WinMute è un programma leggero che consente di disattivare automaticamente il PC in base a specifici trigger
description_nl : WinMute is een lichtgewicht programma waarmee je je pc automatisch kunt dempen op basis van specifieke triggers
description_ru : WinMute - это легкая программа, позволяющая автоматически отключать звук на вашем компьютере по определенным сигналам
audit_schedule :
editor : LX-Systems
keywords : winmute,audio,windows
licence : opensource_free,cpe:/a:bsd:bsd_license,wapt_public
homepage :
package_uuid : 176cd4bb-a49a-4b0f-8341-553a23cc2def
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 121bcd89f92b65d9c7cc51df1df56d86128596e5106c3aa6243731f5443b74a4
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-02-23T08:12:09.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 : npFEXoDMwB1DOyQjtpyvPpBMj4bzIny74BhF2pAVe3B9hKPwoBq8wDvRa8A69W7rOWxy3sTAZZoSDgUp1T58mFtziWKO2DbRpAXW22v9aNIiYmOhMBr7ew2UQHMK9exar35B38eQDvWvh8PRS+GQNXB8akNJ4Q4CHvdl2ywsqR3mqFyjnIy2haqT0zfNVQQtCeFkYh3JQNXlT4igt8j9b85YN96GNLUAzrMgpk61byGi+LhD7PP1bfuvinjXUxcmunzqcakzbrqueJzp6Bvacy+CkWh6pbO8+WHWpSfj5R/Jp5XVY96/KUf27Uz/KKQ7qk/RCE+57PGDfA4ZwI46PQ==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob("WinMute-*-Setup.exe")[0]
install_exe_if_needed(
bin_name, silentflags="/allusers /VERYSILENT", key="{D2E8F9EF-11E7-418B-B9B7-A35A69A30490}_is1", min_version=control.get_software_version()
)
# -*- coding: utf-8 -*-
from setuphelpers import *
import re
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
update_dict = {"windows": ".exe"}
api_url = "https://api.github.com/repos/lx-s/WinMute/releases/latest"
# Get data from API
releases_dict = json.loads(wgets(api_url, proxies=proxies))
exe_found = False # Flag pour indiquer la découverte d'un fichier .exe
for release in releases_dict:
if exe_found:
break
for asset in releases_dict["assets"]:
if asset["browser_download_url"].endswith(".exe") and update_dict[control.target_os] in asset["browser_download_url"]:
url_download = asset["browser_download_url"]
latest_bin = url_download.split("/")[-1]
version = releases_dict["name"].split(" ")[1]
exe_found = True # Mettre à jour le flag pour indiquer qu'un exe a été trouvé
break
# Deleting binaries
for f in glob.glob("*.exe"):
if f != latest_bin:
remove_file(f)
# Downloading latest binaries
print("Download URL is: %s" % url_download)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(url_download, latest_bin, proxies=proxies)
else:
print("Binary is present: %s" % latest_bin)
version = get_version_from_binary(latest_bin)
control.set_software_version(version)
control.save_control_to_wapt()
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
4c29d32830f7a9a6332257d00be9bff6529465e74e5cbff12c8a4e1eae4816e7 : WAPT/control
121bcd89f92b65d9c7cc51df1df56d86128596e5106c3aa6243731f5443b74a4 : WAPT/icon.png
75446d98d267856fe888dc206130bedad992007a1311b65de1389175ce087760 : WinMute-2.5.2-Setup.exe
22b3aceaf4f7538dd6b862446effbd296f419b17a8c59954998f41162b7083ec : luti.json
1ecda5156d2877ea42f56deeabb795c9441e37ab82cee73ec87150c146583e3c : setup.py
a59d132358a0a01292731e4616c7b1a47e5dbef5ba7d0635c486b336424bbeeb : update_package.py