tis-icaros icon

icaros

Silent install package for icaros

3.3.3-1

  • package: tis-icaros
  • name: icaros
  • version: 3.3.3-1
  • maintainer: Amel FRADJ
  • editor: Xanashi
  • licence: open source
  • target_os: windows
  • architecture: x64,x86
  • signature_date:
  • size: 12.14 Mo
  • homepage : https://github.com/Xanashi/Icaros

package           : tis-icaros
version           : 3.3.3-1
architecture      : x64,x86
section           : base
priority          : optional
name              : icaros
categories        : 
maintainer        : Amel FRADJ
description       : Icaros is a collection of lightweight, high quality, Windows Shell Extensions
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 
sources           : https://github.com/Xanashi/Icaros
installed_size    : 
impacted_process  : 
description_fr    : Icaros est une collection d'extensions légères et de haute qualité pour le Shell de Windows
description_pl    : Icaros to kolekcja lekkich, wysokiej jakości rozszerzeń powłoki systemu Windows
description_de    : Icaros ist eine Sammlung von leichtgewichtigen, qualitativ hochwertigen Windows-Shell-Erweiterungen
description_es    : Icaros es una colección de extensiones de shell de Windows ligeras y de alta calidad
description_pt    : Icaros é uma coleção de extensões de shell do Windows leves e de alta qualidade
description_it    : Icaros è una raccolta di estensioni della shell di Windows, leggere e di alta qualità
description_nl    : Icaros is een verzameling lichtgewicht Windows Shell-extensies van hoge kwaliteit
description_ru    : Icaros - это коллекция легких, высококачественных расширений оболочки Windows
audit_schedule    : 
editor            : Xanashi
keywords          : Icaros_is1
licence           : open source
homepage          : https://github.com/Xanashi/Icaros
package_uuid      : ba81b244-35b0-4fd6-afaa-d05a86e189cd
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://github.com/Xanashi/Icaros/releases
min_os_version    : 10.0
max_os_version    : 
icon_sha256sum    : 51ba10d25e35adad1efe726034a169b30d0fc4cc4b71491c817c99e6b09eb424
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2026-01-19T18:42:10.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         : qoUVgCx6lKOzOnykj406H+Um8o3t3SJSiR5ZVHyonYcqnba83NdBWdMEg+SHMpHT8GQDcsMolw9GYjqOA7AaRlxlcN/erg07GO2dzgeYmw3TyMMCbbHgoY/3xtpRg75cUcat7G26dTTZgHe9Uf0bBnwXJUTC46HauAF2x2QjLGEkAFcaHYUeUa/wvX3x691XFTiuswlZeo7ueosEU+44PtSLPXN+4DFw2jLXhSA154epMOiJs0wR8J6dhgFzAhxn3KnxABsOa7WKeIbyQPfQkWG+3R1BE2SBNF7b0M07/rhfRTJzOTzQld87djvK+J2o3EbsnhLDPmepPaJ8ZOvnVA==

# -*- coding: utf-8 -*-
from setuphelpers import *

r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
 {
   "key":"Icaros_is1",
   "name":"Icaros",
   "version":"3.3.2.0",
   "install_date":"2024-05-16 00:00:00",
   "install_location":"C:\\Program Files\\Icaros\\",
   "uninstall_string":"\"C:\\Program Files\\Icaros\\unins000.exe\"",
   "publisher":"Tabibito Technology",
   "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
    bin_name = glob.glob("Icaros_*.exe")[0]
    # Installing the software
   
    install_exe_if_needed(bin_name,
        silentflags='/VERYSILENT',
        key='Icaros_is1',
        min_version=control.get_software_version(),
    )



# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import glob




def update_package():
    # Declaration of local variables
    package_updated = False
    proxies = get_proxies_from_wapt_console()
    if not proxies:
        proxies = get_proxies()
    api_url = "https://api.github.com/repos/Xanashi/Icaros/releases"

     # Get data from API
    print("API used is: %s" % api_url)
    
    releases = json.loads(wgets(api_url, proxies=proxies))
    releases = [i for i in releases if ('Beta' or 'beta') not in i['name']]
    latest_release = sorted(releases, key=lambda r: Version(r['tag_name'].strip('v')), reverse=True)[0]
    download_url = latest_release["assets"][0]["browser_download_url"]
    version = download_url.split("_")[-1].split(".exe")[0].replace("v", "")
    latest_bin = download_url.split("/")[-1]

    if not isfile(latest_bin):
        package_updated = True
        wget(download_url,latest_bin,proxies=proxies)

    #nettoyer les fichiers temporaires
    for f in glob.glob('*.exe'):
        if f != latest_bin:
            remove_file(f)

    control.set_software_version(version)
    control.save_control_to_wapt()

    return package_updated

2b5c324840b19d126140161cd29cb6d020d176f4018bc0361a8fd9bbde0cc4e8 : Icaros_v3.3.3.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
ea383e20b7329a4fb995e9fac49ddf87d14a66e745c65032e7a40629948772f1 : WAPT/control
51ba10d25e35adad1efe726034a169b30d0fc4cc4b71491c817c99e6b09eb424 : WAPT/icon.png
4063688ec4beac61f3d31b7b3112d03cd5ca2f84fc30e683bea75dc0a6d521ec : luti.json
d149666a96c368c478bbab3999edffb3c9f70de16810b029ddcd5a105f4f1d07 : setup.py
54a7dea3deb91225a473fa31db0304c8d85694a3c11f6d043d37a95588609f96 : update_package.py