
- package: tis-air-explorer
- name: air explorer
- version: 5.8.0.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.96 Mo
package : tis-air-explorer
version : 5.8.0.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 : 0eb40d88-4994-4922-a869-4c8b5e0f2d4d
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-06T18:42:51.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 : WspimrIzq1Q2+XTja57G9r5EHe6m6ziHaE7EKzkCTFrnP1CrLVbYF4SxCBghS+swV9QpeT7hEwRhWpMccWVslLUdgvRL0D6nt0QC9MdeLjTZEL8R2bwnki4E/T17a8xpBT5FVWMD/Bj3T0eVjO+6AOdSRXUjjjIoNmr4pwy/Lc7lYh5al4acO3gJNtB4K4ma0vqEw2VyoqPhazz0/6PCnDGoKkaOejFrw0ICTYzUs6+sbryACTRasXAIgC1yq5dF2GTK940U2xeh5So4sOF4t3ksyyBy6B7btpq5z1vRUPAOfycYb4qzAjylRxSJKus6/81sTMNv+LcKuKGdTcpQcw==
# -*- 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()
b778dc9c11eb5f444c2508ce23021931d262e5a3c92e3f3ff9ab01d12e156d94 : AirExplorer-OnlineInstaller.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
6822ad70c9be6ba9edbf518b06d63a658ef31da336dd0e93eb6e58e322d721c6 : WAPT/control
93d739e1a8e12b2b3fb250e0723e60b5d788eb2d66316156819c2864d00e4a64 : WAPT/icon.png
492336bed68287e222efa15472281b51beffd82934352904b08f8781b654182d : luti.json
e337439a2cf883700f8899c50dc309fdb4c2653274c2951636e3fb5ddd80ec42 : setup.py
bc42a5f7013a09434805cdcaefab09eba60af1527dc70d8b267ec8a7ad2ec67f : update_package.py