- package: tis-winmute
- name: Winmute
- version: 2.5.1.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.42 Mo
- installed_size: 3.98 Mo
package : tis-winmute
version : 2.5.1.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 : b665e21a-ce8c-41a9-a416-3a6e3da2dc38
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 121bcd89f92b65d9c7cc51df1df56d86128596e5106c3aa6243731f5443b74a4
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature : mUSx2OhCUEtvFWkcFcgfg9y+Nrp9e8HbdiD/j4T4vk9OnM3TsCbjAaW4aF8BZ4ffyXywQSIvNxw/jLd7fCZh/OUn81cKFnU67NgU//caVVZ9QOG6sUSplYuQJTyXV1/alT9S8dThXae5IKVYkrjdmX3/AEpVR8BLma4/hQlsXhnr3R2tS05E68Iz4SR6ffn7LxY70Li2Yw5W/XpirVvqJkB7OS+3AmpbgxkgD3RLmMhQakRQW+u+KJR63hxwVGIzLwQHxCagFqyVHm6zrPNyPrzsaETsrsRX439BDFWGvlgMSQjD5y8qte8qmCrPGwa2HOhbDDFOcOVfo9qqf7zvwQ==
signature_date : 2024-08-17T14:00:39.421506
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():
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()
1ecda5156d2877ea42f56deeabb795c9441e37ab82cee73ec87150c146583e3c : setup.py
0f4a31d3354022388f96500dcd35f490d44a73aabc3527a667ebeb57ef40e37f : WinMute-2.5.1-Setup.exe
a59d132358a0a01292731e4616c7b1a47e5dbef5ba7d0635c486b336424bbeeb : update_package.py
121bcd89f92b65d9c7cc51df1df56d86128596e5106c3aa6243731f5443b74a4 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
ded44e740ccb104db4d535226b0e059b346a1655a5b5a94aa1b9c1d67f87aab3 : luti.json
031cd31f354ca6cbd126e9d263371b4fcc0175aa5c62fa5098d1a91a32087db9 : WAPT/control