EverythingToolbar
Silent install package for EverythingToolbar
								
								2.1.1.0-1
								
							
							
                                   
                                       
                                           System and network
                                       
                                   
                                
								
							
                               
                                   
                                       System and network
                                   
                               
							
							
						
                                    Preprod packages are packages built on LUTI.
                                    They remain in PREPROD usually for 5 days, after which a new VirusTotal scan is performed.
                                    
                                    If the package passes this last check, it is promoted to PROD and published on the store.
                                
- package: tis-everythingtoolbar
 - name: EverythingToolbar
 - version: 2.1.1.0-1
 - categories: System and network
 - maintainer: WAPT Team,Tranquil IT,Amel FRADJ
 - licence: opensource_free,wapt_public
 - target_os: windows
 - architecture: x64
 - signature_date:
 - size: 16.61 Mo
 - homepage : https://github.com/stnkl/EverythingToolbar
 
package           : tis-everythingtoolbar
version           : 2.1.1.0-1
architecture      : x64
section           : base
priority          : optional
name              : EverythingToolbar
categories        : System and network
maintainer        : WAPT Team,Tranquil IT,Amel FRADJ
description       : Everything integration for the Windows taskbar
depends           : 
conflicts         : 
maturity          : PREPROD
locale            : 
target_os         : windows
min_wapt_version  : 2.3
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : Tout intégrer dans la barre des tâches de Windows
description_pl    : Integracja wszystkiego z paskiem zadań systemu Windows
description_de    : Alles integriert in die Windows-Taskleiste
description_es    : Todo integrado en la barra de tareas de Windows
description_pt    : Integração de tudo para a barra de tarefas do Windows
description_it    : Integrazione di tutto per la barra delle applicazioni di Windows
description_nl    : Alles integratie voor de Windows taakbalk
description_ru    : Интеграция всего для панели задач Windows
audit_schedule    : 
editor            : 
keywords          : 
licence           : opensource_free,wapt_public
homepage          : https://github.com/stnkl/EverythingToolbar
package_uuid      : 4ba0de8c-063a-4a56-9806-4ebf21c251b6
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : a22fc246037fe224bb628e2efd3e2f7240ac922390f144b0586bbde60cb719b0
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2025-10-31T23:21:46.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         : Jxi/lPXh9t3Pqk4UuXf2bE+lZwAplM+hM/qzBJQbsuOnibMXPZ4RZ6QKT+RYyimc+lemJHB2pGGfzRbvstfIbrE8N3nZuU/QLGwEypYVDi6Mukxnwd1c3qrZ95w0PoeU5j62r1HinnL9WuMKZxIq9liLrr8Rov8mcMPF8+kWR0j38h+ezI00jsQvVZshMyDlN1OFLg7h4nj8CGDtr8OEpp6XZtWxwTWkKiFz9DtGX7mRVJVRSHopwdvkRqVUAR8o4aV5y2eDOX1poFOz1V9v7WQGeYQUgiY59B3jQS3lyYw6otDAN/ixGt+u0q9G01BXxyl8k/aX03y845muIw6Z2A==
                        # -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
"""
# 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('EverythingToolbar-*.exe')[0]
    # Installing the software
    install_exe_if_needed(bin_name,'/VERYSILENT /ALLUSERS',min_version=control.get_software_version(), key='{b5f0ac2d-98da-4392-9d12-78444db9caa9}_is1')
                            # -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import json
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def update_package():
    result = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    git_repo = "srwi/EverythingToolbar"
    url_api = "https://api.github.com/repos/%s/releases/latest" % git_repo
    # Getting latest version information from official sources
    print("API used is: %s" % url_api)
    json_load = json.loads(wgets(url_api, proxies=proxies))
    for download in json_load["assets"]:
        if download["browser_download_url"].endswith('x64.exe') :
            url_dl = download["browser_download_url"]
            version = json_load["tag_name"].replace("v","")
            filename = download["name"]
            break
    if not isfile(filename):
        package_updated = True
        wget(url_dl,filename,proxies=proxies)
    #nettoyer les fichiers temporaires
    for f in glob.glob('*.exe'):
        if f != filename:
            remove_file(f)
    version =get_version_from_binary(filename)
    control.set_software_version(version)
    control.save_control_to_wapt()
                            d2d85e74b39145304861437dec4a630b858b5ab421734be47da9edce229454ea : EverythingToolbar-2.1.1-x64.exe
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
78bce1c38a39f1e87661242e1c62cb2b92d4848ce5feeade76ae5a71835407c9 : WAPT/control
a22fc246037fe224bb628e2efd3e2f7240ac922390f144b0586bbde60cb719b0 : WAPT/icon.png
27779862db1d7e70ad8985bf4bd69e4bf27af51b299753210f8ba5d5b18fdebf : luti.json
72cf0b38dd5ee488da1976680ec7493af3f2c48df165e80e7d21f8baf03e9f53 : setup.py
c3f112649551afec6d6825bd18ee451fce1ef89dd36eeb817e643d16833a7d15 : update_package.py