
- package: tis-air-explorer
- name: air explorer
- version: 5.8.1.0-1
- categories: System and network
- maintainer: WAPT Team,Tranquil IT,
- licence: opensource_free,wapt_private
- target_os: windows
- architecture: all
- signature_date:
- size: 8.85 Mo
package : tis-air-explorer
version : 5.8.1.0-1
architecture : all
section : base
priority : optional
name : air explorer
categories : System and network
maintainer : WAPT Team,Tranquil IT,
description : Air Explorer is the most complete cloud synchronization and management tool available
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version : 2.3
sources :
installed_size :
impacted_process :
description_fr : Air Explorer est l'outil de gestion et de synchronisation de cloud le plus complet
description_pl : Air Explorer to najbardziej kompletne narzędzie do synchronizacji i zarządzania chmurą
description_de : Air Explorer ist das umfassendste Tool zur Verwaltung und Synchronisierung von Clouds
description_es : Air Explorer es la herramienta de sincronización y gestión en la nube más completa
description_pt : O Air Explorer é a ferramenta mais completa de sincronização e gestão da nuvem
description_it : Air Explorer è lo strumento più completo per la sincronizzazione e la gestione del cloud
description_nl : Air Explorer is de meest complete tool voor cloudsynchronisatie en -beheer
description_ru : Air Explorer - это самый полный инструмент для синхронизации и управления облаком
audit_schedule :
editor :
keywords :
licence : opensource_free,wapt_private
homepage :
package_uuid : 4b472cc7-26d3-4b85-b06d-34b16cf1ad87
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 93d739e1a8e12b2b3fb250e0723e60b5d788eb2d66316156819c2864d00e4a64
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-04-14T21:00:12.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 : ehF1UH/Q87lctHrvWlhGA+XlRLSgNJSUrw7/ojUoLWF9S+M1RMDfFXcShci+uMtRe9QmA3E5Jp5EOnmAoWH1Q5J1mpn1BiYc4DyLjsLrvrmssE4Cz8qNMXnRhApXjbmbCXfMh6IhzaplXS6ajweYkgoc7FUtmZQ20NfTad5mq3gch2NYXo0eIL7JR6YVGPLfFYYXy8LwLGJ0+7yM5dQU37mCkpiocgyRPCFYhEqjJ3BIDT1lMyycmH0Sy2Lxn01vUuJp7RS/UrZ0AMMVjPz6/NBraTs6fQkmIN5egXwRINtnNuRDWPwBD/SgshzEAIWW53IR7AVkbgQyjndBPewf4g==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
{
"key":"Air Explorer",
"name":"Air Explorer",
"version":"5.5.2",
"install_date":"",
"install_location":"",
"uninstall_string":"C:\\Program Files\\AirExplorer\\uninst.exe",
"publisher":"http://www.airexplorer.net",
"system_component":0,
"win64":true
}
"""
# 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
# Installing the software
print("Installing: AirExplorer-OnlineInstaller.exe")
install_exe_if_needed(
"AirExplorer-OnlineInstaller.exe",
silentflags="/S",
key="Air Explorer",
min_version=control.get_software_version(),
)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import glob
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
download_url = "https://www.airexplorer.net/downloads/AirExplorer-OnlineInstaller.exe"
latest_bin = download_url.split("/")[-1]
# Downloading latest binaries
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
package_updated = True
else:
print("Binary is present: %s" % latest_bin)
# Deleting outdated binaries
for f in glob.glob('*.exe'):
if f != latest_bin:
remove_file(f)
version = get_version_from_binary(latest_bin)
# Mettre à jour le package
control.set_software_version(version)
control.save_control_to_wapt()
4a420404e11ddfa4b9d1e5d652b5e9be6b128184f97596c44ca0e216f805a9a0 : AirExplorer-OnlineInstaller.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
87017d8c986d46dea8339a95a1e5f94dc6368e0e94216689c384222257d66636 : WAPT/control
93d739e1a8e12b2b3fb250e0723e60b5d788eb2d66316156819c2864d00e4a64 : WAPT/icon.png
e4bd89e2c2c4a284b4985def78372069b0fd4bc6ca3e8807da232cb3deeb1de2 : luti.json
e337439a2cf883700f8899c50dc309fdb4c2653274c2951636e3fb5ddd80ec42 : setup.py
bc42a5f7013a09434805cdcaefab09eba60af1527dc70d8b267ec8a7ad2ec67f : update_package.py