tis-air-explorer

5.7.0.0-1
Air Explorer is the most complete cloud synchronization and management tool available
470 downloads
Download
See build result See VirusTotal scan
tis-air-explorer icon
  • package : tis-air-explorer
  • name : air explorer
  • version : 5.7.0.0-1
  • categories : System and network
  • maintainer : WAPT Team,Tranquil IT,
  • installed_size :
  • editor :
  • licence : opensource_free,wapt_private
  • signature_date : 2025-01-21T20:04:15.000000
  • size : 8.95 Mo
  • locale :
  • target_os : windows
  • impacted_process :
  • architecture : all
package           : tis-air-explorer
version           : 5.7.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      : ebbc150b-42ea-4d17-82a5-bff91b622922
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-01-21T20:04:15.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         : gpyU6YZQ7QBerisUD7VoHxygR4lMie6FMlAYnTkOHQ84FIfQV280dDulEzrd8uecHYBt4M4xX6UHp94XXlb18orTbbUSHHxJUIl9u4Y9BB4RqTJuqfWUJNf+oLfH87DlfXet2ns2e4ozMRarS/+hqtAPplMRBizkm0h2rV/+mepwv2ZiDYUX8lt/n/OM71YJoEg8Ac4O7GtLTZO+R2rIWj/3CaApHgJxzdPJTVG05et1oD73Hv43dPaLGIRMrA53hrajP8U+hhcH9xNi2jJNEjhUTimznhzv+gvFHMDLGnKyoJhf4ywJaAWOFcFLSWp7BVXrRi24WcCmFnGA6STmpw==
# -*- 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()    
        

e76a08af19c2c6d1a9aa5357bc92e5f7e3ed7969cba1e44636aa3ca9c743b000 : AirExplorer-OnlineInstaller.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
8889302329164ee358059e7ff56047f207372346c31cfe0d158ce496d7dcb560 : WAPT/control
93d739e1a8e12b2b3fb250e0723e60b5d788eb2d66316156819c2864d00e4a64 : WAPT/icon.png
38c8e90cb403836b19cc9bb3a3f8c96a5097af2cb8c52478f5090e31fc0236b5 : luti.json
e337439a2cf883700f8899c50dc309fdb4c2653274c2951636e3fb5ddd80ec42 : setup.py
bc42a5f7013a09434805cdcaefab09eba60af1527dc70d8b267ec8a7ad2ec67f : update_package.py