AudioMoth-Config
Silent install package for AudioMoth-Config
1.13.1-1
Preprod packages are packages built on LUTI.
They remain in PREPROD usually for 5 days, after which a second VirusTotal scan is performed to verify that the status has not changed.
If the package passes this last check, it is promoted to PROD and published on the store.
- package: tis-audiomoth-config
- name: AudioMoth-Config
- version: 1.13.1-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.1-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 : PREPROD
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 : 21749c7e-793d-4c41-926c-eacfab16765f
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 105cb6e7a7657dc8d1c6fd6ad66a42b1038e749152b81b710d08a40adf68cf9e
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2026-05-22T16:31:39.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 : MI3FkJT3NH6ywLrOj+CF6FU/IDdys9xuHs70jOGP7L4PmZPWhqdLdvESzsMpZNjf5ZSMHYhEuEdA4yTs7/5/8mvJ62EL98vfwXjLt5DcxstpbNALOyRqYIrnUWPl1mQj2DqRoYUPM8qCNZIv9kZuiyD/0J0jJgrZ3vSssJ0tFGlWYjmum3Su6JbRvw7DcS8DItDnZ0Qhsk7Vf+Kxdpq/WFGTkeGun5vyYQuUh8/58BPGR7xpqq78fnkzzmTLGbT8l1QfdhXycYxIJB1mr8jh1p6SknrddjcTq59U2PhSCfA9q8ybOTcK/pBhg5ZXWk43rayVziZCYrVJw2wAabpa4A==
# -*- 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()
acca65a47fa1438c71fb79681e192efc5b23da3453444781460a27c39fbf802c : AudioMothConfigurationAppSetup1.13.1.exe
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
8c25b60f5051724fe5f97673a7a48d44ac47994fb9d48e078dded077f6f189ad : WAPT/control
105cb6e7a7657dc8d1c6fd6ad66a42b1038e749152b81b710d08a40adf68cf9e : WAPT/icon.png
4d1fb6e6088222c6be28d2c1b510862453229e8edf839d61a8d2758f9c89e749 : luti.json
fbcab7a59d2f14035814c2353572a8b056f0c4a835ea58b1e7a3296cd4eaa56c : setup.py
54acef656fa5386238e9a4d4cfbdf76aae6366101c83f3a965595f5d3705b5d5 : update_package.py