tis-glary-utilities icon

Glary Utilities

Paquet d’installation silencieuse pour Glary Utilities

6.34.0.38-3
Utilities
Utilities

  • package: tis-glary-utilities
  • name: Glary Utilities
  • version: 6.34.0.38-3
  • categories: Utilities
  • maintainer: WAPT Team,Tranquil IT,Pierre Cosson
  • editor: Glarysoft
  • licence: proprietary
  • locale: all
  • target_os: windows
  • impacted_process: Integrator
  • architecture: all
  • signature_date:
  • size: 28.11 Mo
  • installed_size: 62.91 Mo
  • homepage : https://www.glarysoft.com/

package           : tis-glary-utilities
version           : 6.34.0.38-3
architecture      : all
section           : base
priority          : optional
name              : Glary Utilities
categories        : Utilities
maintainer        : WAPT Team,Tranquil IT,Pierre Cosson
description       : Includes over 20+ system utilities to improve your computer performance.
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.0
sources           : https://www.glarysoft.com/
installed_size    : 62910805
impacted_process  : Integrator
description_fr    : Comprend plus de 20 utilitaires système pour améliorer les performances de votre ordinateur
description_pl    : Zawiera ponad 20+ narzędzi systemowych do poprawy wydajności komputera
description_de    : Enthält mehr als 20 Systemdienstprogramme zur Verbesserung der Leistung Ihres Computers
description_es    : Incluye más de 20 utilidades del sistema para mejorar el rendimiento de tu ordenador
description_pt    : Inclui mais de 20+ utilitários de sistema para melhorar o desempenho do seu computador
description_it    : Include oltre 20 utility di sistema per migliorare le prestazioni del computer
description_nl    : Bevat meer dan 20+ systeemhulpprogramma's om uw computerprestaties te verbeteren
description_ru    : Включает более 20+ системных утилит для повышения производительности компьютера
audit_schedule    : 
editor            : Glarysoft
keywords          : 
licence           : proprietary
homepage          : https://www.glarysoft.com/
package_uuid      : 5cc7bfc2-323b-4de4-be3c-68c083513dad
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 35e894fee965236bd9c8abffb456c639e678e4c2e340b95c446c99380ef52236
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-11-23T10:10:25.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         : teom4n618DVqZmMYtI6S91CHQsK3AKYXvx3AyhmRHw1mLH2ZEWimo72/dZwwpwqEdWiR5t7trBbRApojS1Zm0dHFNAUOKLuUrBu3KXL/bLOYsTaiioZYpXpImp2bysaQ4+CQgFok1BJ7xpNvwy+iqJ+eZ59Pzw040lmUCnnIKUMY+43AUVrgezs1Ms1br/SEiVDF7GnwppsFoexm/n+dZWJZXAueoHqBZMhbCoPlujNvhzgyu1rezS44aZu7k5SZM+IQzMwQ7sYkJTCfeRIZC19p/5VLFipzWc9r7IeJnGl1PtJk3WAP4UpAF+MAlWcUZWaWddtbY7Bf5Eoowutrig==

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


def install():
    bin_name = glob.glob(f"gusetup.exe")[0]

    # Installing the software
    install_exe_if_needed(
        bin_name,
        silentflags="/S",
        key="Glary Utilities",
        min_version=control.get_software_version(),
    )

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


def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    app_name = control.name

    api_url = f"https://www.glarysoft.com/update/update.php?s=glary_utilities&c=10000&v={control.get_software_version()}"

    config = ConfigParser()
    config.read_string(wgets(api_url, proxies=proxies))

    version = config['Version']['Version']
    download_url = config['Version']['UpdateUrl']
    latest_bin = download_url.rsplit("/", 1)[-1]
    latest_bin_extension = latest_bin.rsplit('.', 1)[-1]

    # Downloading latest binaries
    print(f"Latest {app_name} version is: {version}")
    print(f"Download URL is: {download_url}")
    if not isfile(latest_bin):
        print(f"Downloading: {latest_bin}")
        wget(download_url, latest_bin, proxies=proxies)
    else:
        print(f"Binary is present: {latest_bin}")

    # Changing version of the package
    if Version(version) > Version(control.get_software_version()):
        print(f"Software version updated (from: {control.get_software_version()} to: {Version(version)})")
        package_updated = True
    else:
        print(f"Software version up-to-date ({Version(version)})")

    for f in glob.glob(f'*.{latest_bin_extension}'):
        if f != latest_bin:
            remove_file(f)

    control.set_software_version(version)
    control.save_control_to_wapt()

    return package_updated

38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 : WAPT/changelog.txt
5d35dfcd88ff758ffbae9c194b0f3f85ec790b9d807538e1b7294c46f2d0065a : WAPT/control
35e894fee965236bd9c8abffb456c639e678e4c2e340b95c446c99380ef52236 : WAPT/icon.png
d68391910f8583b3209edc9f7271e934da3d58218b5bdc50ec46afa248600f2a : gusetup.exe
26e9e658e9161ea5d2473a518a86c1b93514a97183a8d1a8467fe026f23ffa2e : luti.json
f4e61e2cd33c4c3cc2ee923bd842341ea08edf4e9637eb2fa247e24dbe7f5a7f : setup.py
efab3c11e5709e6d2e8072e5f6954fb04c76fbbcee4b891f14593c872d6abb24 : update_package.py