Stirling-pdf
Silent install package for Stirling-pdf
2.4.5-2
- package: tis-stirling-pdf
- name: Stirling-pdf
- version: 2.4.5-2
- maintainer: Administrator
- editor: Stirling Tools
- licence: ©
- target_os: windows
- impacted_process: stirling-pdf
- architecture: x64,arm64
- signature_date:
- size: 211.33 Mo
package : tis-stirling-pdf
version : 2.4.5-2
architecture : x64,arm64
section : base
priority : optional
name : Stirling-pdf
categories :
maintainer : Administrator
description : Stirling helps you read and edit PDFs privately. Control access by people, companies, and AI.
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version :
sources :
installed_size :
impacted_process : stirling-pdf
description_fr : Stirling vous aide à lire et éditer des PDFs de façon privée. Controlez les accès par personnes, entreprises, ou IA.
description_pl : Stirling pomaga czytać i edytować pliki PDF prywatnie. Kontroluj dostęp przez ludzi, firmy i AI.
description_de : Stirling hilft dir, PDFs privat zu lesen und zu bearbeiten. Kontrolliere den Zugang von Menschen, Unternehmen und KI.
description_es : Stirling te ayuda a leer y editar PDFs de forma privada. Controla el acceso de personas, empresas e IA.
description_pt : O Stirling ajuda-te a ler e editar PDFs de forma privada. Controla o acesso por pessoas, empresas e IA.
description_it : Stirling ti aiuta a leggere e modificare PDF in privato. Controlla l'accesso da parte di persone, aziende e IA.
description_nl : Stirling helpt je privé PDF's te lezen en te bewerken. Beheer toegang door mensen, bedrijven en AI.
description_ru : Stirling помогает читать и редактировать PDF в приватном режиме. Контроль доступа людей, компаний и искусственного интеллекта.
audit_schedule :
editor : Stirling Tools
keywords :
licence : ©
homepage :
package_uuid : a8c0edc7-5baa-4363-b95e-013db0567d7a
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10
max_os_version :
icon_sha256sum : 5eea3eb768f365d477811646ebc531e84812e9747e24df5f717cd3f146d41afe
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-02-12T02:00:49.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 : Qy2tBMILwfH0rTAnV+hlPUMzlEXE7n4iVa6un+xHwW65tMqGKijBD4p7UOwOfbLFfLqN2PLmr2e5aMUQ4fMfhAi5drgC61aCMmgPQkP6kPENBZBK3Ba7rhJH+j4Cd6Rg+5yJmstg/9XLEe2fLH6ZdKO8hmioAlaG3vWa/PXKsTkPn3h9BTd07vPx/XJ1LvNoDuEyrb1dPVPN7/7H6tZgZWH+36OCDt7PHoLQbWplh3GPLsGlgW3+myEalWSYf06FDBYGntmnh8rFuCSRYylHnLZ5ZXtYQuLPiO2hgsg9cBKbBC6HH4Av3A2Jha/QlR+g2+nIGtThTVz28/kS/Qifag==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
{
"key":"{8C8335D0-E0C3-36B7-8255-6A42BD17CC83}_is1",
"name":"Stirling PDF 1.5.0.0",
"version":"1.5.0.0",
"install_location":"C:\\Program Files\\Stirling PDF\\",
"uninstall_string":"MsiExec.exe /X{8C8335D0-E0C3-36B7-8255-6A42BD17CC83}"",
"publisher":"Stirling Tools"
},
"""
# 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("Stirling-PDF*")[0]
# Installing the software
print("Installing: Stirling-PDF")
install_msi_if_needed(bin_name
)
from setuphelpers import *
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
update_dict = {"windows": ".msi"}
api_url = "https://api.github.com/repos/Stirling-Tools/Stirling-PDF/releases/latest"
# Getting latest version information from official sources
print("API used is: %s" % api_url)
json_load = wgets(api_url, proxies=proxies, as_json=True)
version = json_load["tag_name"].replace("v", "")
for to_download in json_load["assets"]:
if update_dict[control.target_os] in to_download["name"]:
download_url = to_download["browser_download_url"]
latest_bin = to_download["name"]
break
# Downloading latest binaries
print(f"Latest version of {control.name} is: {version}")
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
else:
print("Binary is present: %s" % 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)})")
# Deleting binaries
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
9eb2652b8959490ded3d9766846a3c2dea8738188b31bf279b2eb08b3d3a6ce1 : Stirling-PDF-windows-x86_64.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
d3bdbabfccafd3b377783d7ecca54c602dcd4db0623cb62ef4463a0fccf12cde : WAPT/control
5eea3eb768f365d477811646ebc531e84812e9747e24df5f717cd3f146d41afe : WAPT/icon.png
6159bc33fc5cb53e6ae8f6755d1de8a6eaebfe0e85bb69cdd269490f907c8805 : luti.json
9d3fa7d0fa22c4359f53e660b1b337ab18420e82dfd4ed67fe089d8045d1b263 : setup.py
f99307d902b2f4a35d374a04809afcc4bdd0ee19d5556c2d6a50a04f080416d4 : update_package.py