tis-audiomoth-config

1.12.1-1
The AudioMoth configuration application is an easy-to-use tool for customizing your AudioMoth devices
322 downloads
Download
See build result See VirusTotal scan
tis-audiomoth-config icon
  • package : tis-audiomoth-config
  • name : AudioMoth-Config
  • version : 1.12.1-1
  • categories :
  • maintainer : Amel FRADJ
  • editor :
  • licence : MIT license
  • locale :
  • target_os : windows
  • impacted_process :
  • architecture : x64
  • signature_date : 2025-02-10 10:05
  • size : 73.38 Mo
  • homepage : https://www.openacousticdevices.info/
package           : tis-audiomoth-config
version           : 1.12.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          : 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      : 6bcd6d62-af5f-45ad-92be-b3a5209abc3a
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    : 2025-02-10T10:05:07.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         : erYzWTZVa8JYfEv8YFNPLv9cCDcXmEi2AkN7vv0gx137KRJCp7+f2lLL0Ig9lIKULewEjANWgu5d0l3rIbL+3f2bnclgktw+IlOtBeI/2ICSr6y53ODEb78ZCD5RojLNn3u7+Vh9oMaz2pzvuOUwmMplZ1X7qg30WFRfuCol7bMXD+E1yHRYOVhKFl36iUC/3Wnp3kc0Egh5zRUGr8JM7yCau4ALP3K7qrnwy8yuCaTiHBNi4Y/+gFO8udFNniGylFQE6W+VblA481DG/XknGgx87AcuIsb3Bx9uKhy0xYBp3BX+5ew5XH0SczAjAGnlHTqJsXuudF8fw+x9EwQyDg==
# -*- 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()
0d5f43e64c0716a5e29e5983c1fc46b27a47c294c17c6d7b4485da9bb5321a92 : AudioMothConfigurationAppSetup1.12.1.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
f68be384cb6b1a55c108bc05b9db596bb0068da92b419e576825fa9550a663c8 : WAPT/control
105cb6e7a7657dc8d1c6fd6ad66a42b1038e749152b81b710d08a40adf68cf9e : WAPT/icon.png
b403d2859915bfe1df842c4a22e5ed974f0551af27a6be07fd3bd85f655e7d15 : luti.json
fbcab7a59d2f14035814c2353572a8b056f0c4a835ea58b1e7a3296cd4eaa56c : setup.py
54acef656fa5386238e9a4d4cfbdf76aae6366101c83f3a965595f5d3705b5d5 : update_package.py