tis-air-explorer icon

air explorer

Paquet d’installation silencieuse pour air explorer

5.7.1.0-1

  • package: tis-air-explorer
  • name: air explorer
  • version: 5.7.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.95 Mo

package           : tis-air-explorer
version           : 5.7.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      : 2977f27d-b912-4e25-8151-4a086c519eaa
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-02-03T19:00:32.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         : URC3BSu7L3MLhCVpXo6bSu/8Qtw/bLuZvy4w5yjqHz5A0R+ziPpzHRr4KwfcOPdt0GM12pt8c+z7WVlMckOBH4f3cEAw36y4gpmj4YyzI07Njy8Q21szp/hyWWoqMI8xvlILfSFPnecgJkHXf6VzZMpXnOkNarV0qUduVCq4crClVusW/SrNI/cuXw3iRm7Uj33NE3u/37OX19DJiApGNK5ogXdSp9wPPPj8V0Gu1sA0pIEvxnb6SsQ0j+aQPnPoz5C01A+NDqtfhpS5SBgW7eijf/TXCkfi77Xs7VsmMTWQuzcO2BlBnchjp4v2eqclfYg719J3h0Ij/tD8gKWf5A==

# -*- 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()    
        

296a6c9382d6a0368f32dfff94c67729877da5ad65a1446380095c0b0b0457b5 : AirExplorer-OnlineInstaller.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
ea75862b157bec9e9ebdd2eaf0a629b5c83d9e19b187d3b7dac2411f02799a96 : WAPT/control
93d739e1a8e12b2b3fb250e0723e60b5d788eb2d66316156819c2864d00e4a64 : WAPT/icon.png
5008dccc939368a8c05850b70cb9aeee8e8938416e2073f4db87ea5f4eef2936 : luti.json
e337439a2cf883700f8899c50dc309fdb4c2653274c2951636e3fb5ddd80ec42 : setup.py
bc42a5f7013a09434805cdcaefab09eba60af1527dc70d8b267ec8a7ad2ec67f : update_package.py