tis-icaros

3.3.3-1
Icaros is a collection of lightweight, high quality, Windows Shell Extensions
128 downloads
Download
See build result See VirusTotal scan
tis-icaros icon
  • package : tis-icaros
  • name : icaros
  • version : 3.3.3-1
  • categories :
  • maintainer : Amel FRADJ
  • installed_size :
  • editor : Xanashi
  • licence : open source
  • signature_date : 2024-12-01T16:04:03.000000
  • size : 12.14 Mo
  • locale :
  • target_os : windows
  • impacted_process :
  • architecture : all
  • Homepage : https://github.com/Xanashi/Icaros
package           : tis-icaros
version           : 3.3.3-1
architecture      : all
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      : e431165e-3767-436c-9dcf-e42f88ff78ea
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://github.com/Xanashi/Icaros/releases
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 51ba10d25e35adad1efe726034a169b30d0fc4cc4b71491c817c99e6b09eb424
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2024-12-01T16:04:03.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         : SlxIHAwO7jsVgYHV9foPkq78o3DmQjnaORYUQQHuOYc+Tf8McyWKXuMtBCnT2LyM/SyomDtPsC/x5ty7GmdX6VWxl7la5QV4Ff/rVE0153PVOJrDCi1N3H2Jwalf6X6ritDt3CYqAVJQA7Ab8w5qUVv4C7rYhPdBngs5njhit33IL0hqTXzqaEdIRoatexWVrdxUEnOw9rG3iGUm7pQ6mT387GYla/fCirmbR8c5C9Q72DHmh9NSBaUbmKBe7Dv36OESXTp8W6Aay2QRLEYeR//z+nh+78xe7DfgR81IRXQwmBz+drstSuc+tTPDkf1i9he1yj16+t0Lx13B5poHvg==
# -*- 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
    data = wgets(api_url, proxies=proxies, as_json=True)
    exe_found = False  # Flag pour indiquer la découverte d'un fichier .msi
    for releases_dict in data:
        if exe_found:
            break        
        for release in releases_dict:
            if exe_found:
                break
            for asset in releases_dict["assets"]:
                if asset["browser_download_url"].endswith(".exe"):
                    url_download = asset["browser_download_url"]
                    filename = url_download.split('/')[-1]
                    last_version = releases_dict["name"][7:]
                    if "beta" in last_version.lower():
                        continue                    
                    exe_found = True  # Mettre à jour le flag pour indiquer qu'un .msi a été trouvé
                    break


    if not isfile(filename):
        package_updated = True
        wget(url_download,filename,proxies=proxies)

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

       

    control.set_software_version(last_version)
    control.save_control_to_wapt()

    return package_updated

2b5c324840b19d126140161cd29cb6d020d176f4018bc0361a8fd9bbde0cc4e8 : Icaros_v3.3.3.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
ed1307374c7c73f082875da4158da7a5cbb856b85cc907b6e880e0bbea29641e : WAPT/control
51ba10d25e35adad1efe726034a169b30d0fc4cc4b71491c817c99e6b09eb424 : WAPT/icon.png
9426760782f40f6f9ef1c0e0ec7e5c20df795277ea41153dca7ff93487886812 : luti.json
d149666a96c368c478bbab3999edffb3c9f70de16810b029ddcd5a105f4f1d07 : setup.py
7f0335b280c3511f6090e510020c3226c8dbbb2521bc605dbb8bb2a5c615cb97 : update_package.py