tis-air-explorer

5.5.2.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.5.2.0-1
  • categories : System and network
  • maintainer : WAPT Team,Tranquil IT,
  • installed_size :
  • editor :
  • licence : opensource_free,wapt_private
  • signature_date : 2024-09-07T08:00:08.000000
  • size : 11.66 Mo
  • locale :
  • target_os : windows
  • impacted_process :
  • architecture : all
package           : tis-air-explorer
version           : 5.5.2.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      : 520e7241-545d-434b-aa46-9b5dbde24bd8
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    : 2024-09-07T08:00:08.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         : Prdh7rVM07CrOd6ddR+q3RQH+jwJaF2u8uoSSC8zkvFGu0V5UvaSSvAh/Vz4wY8TK7N9L67Y/aTTe7IGGvbHm2VzrDJquM5yoc3aHGwLw/VsumNkH6j0oxH+Y2U1b1Qt22Na4HqhxCtu11IxCBQqJ2Fl8HozEJ357hXHzUEDOUEuRna/XVGgOVN9JnoWLBZnCSamwdmQsCCNnLaaPSDe/OoTcZoABxIt9P7X97+6Gg6WbJS9HFhdEH+lHD/0fFGp3142zeOXttJHHpqeJsvVE8j19i8OB0JXvHjjFFMTeMJgwx6DtPeZ0hinTeWn+Nm2AQ9MBT1aZtsfxlA3tMi6Fg==
# -*- 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()    
        

18e87a13671979fa9ec4422dd0e938606873b53ce4409ce86f650bd02615b077 : AirExplorer-OnlineInstaller.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
2ec09250214e9b76659b0c3036cb53df774c6e281b8a332be7de295ac6a254ff : WAPT/control
93d739e1a8e12b2b3fb250e0723e60b5d788eb2d66316156819c2864d00e4a64 : WAPT/icon.png
 : __pycache__
3ee461a148a876930a6546d6de797f1ec3b7661342b1a30a829b33a2b1cfd47e : luti.json
e337439a2cf883700f8899c50dc309fdb4c2653274c2951636e3fb5ddd80ec42 : setup.py
bc42a5f7013a09434805cdcaefab09eba60af1527dc70d8b267ec8a7ad2ec67f : update_package.py