tis-everythingtoolbar icon

EverythingToolbar

Silent install package for EverythingToolbar

1.5.2.0-1

  • package: tis-everythingtoolbar
  • name: EverythingToolbar
  • version: 1.5.2.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: 3.12 Mo
  • homepage : https://github.com/stnkl/EverythingToolbar

package           : tis-everythingtoolbar
version           : 1.5.2.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          : PROD
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      : 24e9c419-9342-4231-bd7c-37b9cc610d20
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : a22fc246037fe224bb628e2efd3e2f7240ac922390f144b0586bbde60cb719b0
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-03-21T20:24:21.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         : Paa3nb1zNRjihlXD8ah94hOXn+n1dIcI/9+nh1bDlElZU/Xmp1VJOpBDNsYs/TTHxRXclbims6HswqSne3eVqbIHTM5y/qqPjUveptJoYx1VeEroCnCt6dh6Zf7LFRERKDhjZ5F2vsA/UHf/N5HyrgQOUINTZoj+ABKpJeGhYukUMcs4C/T1j1WiXw6tCb1un5ASEDuzZbE+YQzrkMsD2QPwe7THto0PusbJwkPUIBjt+IZRxQgC2CsjnUIBjVtvHhtVjItsKccXYoeQ4kGSYlyTCcIY1KPUzl4bxDSl4fbB1pqHBsGvsnrDxMdm75qlTc3hCc3MPw/T1oejlN/b3Q==

# -*- 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-*.msi')[0]
    # Installing the software
    
    install_msi_if_needed(bin_name)



# -*- 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('.msi') :
            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('*.msi'):
        if f != filename:
            remove_file(f)

    version =get_version_from_binary(filename)
    control.set_software_version(version)
    control.save_control_to_wapt()

f464f5234324bf4d3ede40016571c201baf152a412c0cbc296d23f478af41962 : EverythingToolbar-1.5.2.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
537aa158b9af60bffd89608959cec969313d82d2547aa621b1557b5d16df2888 : WAPT/control
a22fc246037fe224bb628e2efd3e2f7240ac922390f144b0586bbde60cb719b0 : WAPT/icon.png
3a66f226a124cf1f803a06faa8bbc310f2291491b5f232ef618cdb19baf28dd3 : luti.json
3b578ef31dcd159464fbb62ec82983e507c7434aa4ccd3b20624bce0298390fc : setup.py
30e7db19f52b49d70402c19983e9b6e68cac5d8bfd10540f900b70830d51bf4f : update_package.py