AudioMoth-Config
Silent install package for AudioMoth-Config
1.13.0-1
- package: tis-audiomoth-config
- name: AudioMoth-Config
- version: 1.13.0-1
- maintainer: Amel FRADJ
- licence: MIT license
- target_os: windows
- architecture: x64
- signature_date:
- size: 73.71 Mo
- homepage : https://www.openacousticdevices.info/
package : tis-audiomoth-config
version : 1.13.0-1
architecture : x64
section : base
priority : optional
name : AudioMoth-Config
categories :
maintainer : Amel FRADJ
description : The AudioMoth configuration application is an easy-to-use tool for customizing your AudioMoth devices
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version :
sources : https://github.com/OpenAcousticDevices/AudioMoth-Configuration-App/releases/
installed_size :
impacted_process :
description_fr : L'application de configuration AudioMoth est un outil facile à utiliser pour personnaliser vos appareils AudioMoth
description_pl : Aplikacja konfiguracyjna AudioMoth jest łatwym w użyciu narzędziem do dostosowywania urządzeń AudioMoth
description_de : Die AudioMoth Konfigurationsanwendung ist ein einfach zu bedienendes Werkzeug, um Ihre AudioMoth-Geräte anzupassen
description_es : La aplicación de configuración de AudioMoth es una herramienta fácil de usar para personalizar tus dispositivos AudioMoth
description_pt : O aplicativo de configuração do AudioMoth é uma ferramenta fácil de usar para personalizar seus dispositivos AudioMoth
description_it : L'applicazione di configurazione AudioMoth è uno strumento facile da usare per personalizzare i dispositivi AudioMoth
description_nl : De AudioMoth configuratietoepassing is een eenvoudig te gebruiken hulpmiddel om je AudioMoth apparaten aan te passen
description_ru : Приложение для настройки AudioMoth - это простой в использовании инструмент для настройки ваших устройств AudioMoth
audit_schedule :
editor :
keywords :
licence : MIT license
homepage : https://www.openacousticdevices.info/
package_uuid : 632ff3ec-80fa-4dd3-ae77-f2b821d6f963
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 105cb6e7a7657dc8d1c6fd6ad66a42b1038e749152b81b710d08a40adf68cf9e
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-05-23T10:03:43.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 : R1B7kpjfz3/YrYoSWLXHdO+4bJ7kYL8fv4Fys1jFo9KIsFRNkOZPFpZxH2xD854jyCi3iM2rQgAJyMm/UKmPIvxsv9pvbtutn2FcUEQ0iw66VDz3NMUOvBcj6fykHoGeLpch+eXscWsqnDjMYrkMN3RUB16cb9ZDW7IZgM/ycqv24jjoqaN1rVxMUN9oridrAbhn3c2nasDDT9vgji1VS8kPiLSE5QirBtZG9XkOV86jYQs7frK3StxjUq8DYUEHnJgCasM76vNdUnFz6S56tJMAflVrk/YCLsDwh13N1cZ+F+PWGGxPf8dy/+8ND0bEGzL9WK2Yi86Usez18KPOdQ==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def install():
# Declaring local variables
bin_name = glob.glob('AudioMothConfigurationAppSetup*.exe')[0]
# Installing the software
install_exe_if_needed(bin_name,
silentflags='/S /allusers',
key='72ce0aad-141a-5968-8116-257e6526c3e9',
min_version=control.get_software_version(),
)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import json
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def update_package():
result = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
git_repo = "OpenAcousticDevices/AudioMoth-Configuration-App"
url_api = "https://api.github.com/repos/%s/releases/latest" % git_repo
# Getting latest version information from official sources
print("API used is: %s" % url_api)
json_load = json.loads(wgets(url_api, proxies=proxies))
for download in json_load["assets"]:
if download["browser_download_url"].endswith('.exe') :
url_dl = download["browser_download_url"]
version = json_load["tag_name"].replace("v","")
filename = download["name"]
break
if not isfile(filename):
package_updated = True
wget(url_dl,filename,proxies=proxies)
#nettoyer les fichiers temporaires
for f in glob.glob('*.exe'):
if f != filename:
remove_file(f)
version =get_version_from_binary(filename)
control.set_software_version(version)
control.save_control_to_wapt()
1482065dfea3f157a994a87677ecf76e0aba90d8b20f740395a212e7d43ef1d2 : AudioMothConfigurationAppSetup1.13.0.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
390a7afaf0be31317936a8eb41575245094d932bd9906a1fc95f6101da140ab1 : WAPT/control
105cb6e7a7657dc8d1c6fd6ad66a42b1038e749152b81b710d08a40adf68cf9e : WAPT/icon.png
8d866f30e2b7cac9ced48edc242a209334d4156006f38ced75b5b323add9e7d9 : luti.json
fbcab7a59d2f14035814c2353572a8b056f0c4a835ea58b1e7a3296cd4eaa56c : setup.py
54acef656fa5386238e9a4d4cfbdf76aae6366101c83f3a965595f5d3705b5d5 : update_package.py