tis-screenpresso icon

Screenpresso

Paquet d'installation silencieuse pour Screenpresso

2.2.13.0-43
Utilities
Utilities

  • package: tis-screenpresso
  • name: Screenpresso
  • version: 2.2.13.0-43
  • categories: Utilities
  • maintainer: WAPT Team,Tranquil IT,Jordan ARNAUD
  • editor: Learnpulse
  • licence: proprietary_free,wapt_public
  • locale: all
  • target_os: windows
  • impacted_process: Screenpresso,ScreenpressoBrowserNative,ScreenpressoRpc
  • architecture: x64
  • signature_date:
  • size: 183.68 Mo
  • installed_size: 548.93 Mo
  • homepage : https://www.screenpresso.com/
  • depends:

package           : tis-screenpresso
version           : 2.2.13.0-43
architecture      : x64
section           : base
priority          : optional
name              : Screenpresso
categories        : Utilities
maintainer        : WAPT Team,Tranquil IT,Jordan ARNAUD
description       : Screenpresso is a lightweight screen capture tool with integrated editor, document generator and sharing features
depends           : tis-dotnetfx
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.3
sources           : https://www.screenpresso.com/download/
installed_size    : 548933070
impacted_process  : Screenpresso,ScreenpressoBrowserNative,ScreenpressoRpc
description_fr    : Screenpresso est un outil léger de capture d'écran avec éditeur intégré, générateur de documents et fonctionnalités de partage
description_pl    : Screenpresso to lekkie narzędzie do przechwytywania ekranu z wbudowanym edytorem, generatorem dokumentów i funkcjami udostępniania
description_de    : Screenpresso ist ein leichtgewichtiges Screenshot-Tool mit integriertem Editor, Dokumentengenerator und Funktionen zum Teilen
description_es    : Screenpresso es una herramienta ligera de captura de pantalla con editor integrado, generador de documentos y funciones para compartir
description_pt    : O Screenpresso é uma ferramenta leve de captura de ecrã com editor incorporado, gerador de documentos e funcionalidades de partilha
description_it    : Screenpresso è uno strumento leggero per l'acquisizione di schermate con editor, generatore di documenti e funzioni di condivisione integrati
description_nl    : Screenpresso is een lichtgewicht tool voor het vastleggen van schermen met ingebouwde editor, documentgenerator en functies voor delen
description_ru    : Screenpresso - это легкий инструмент для захвата экрана со встроенным редактором, генератором документов и функциями совместного доступа
audit_schedule    : 
editor            : Learnpulse
keywords          : screenpresso,lightweight,screen,capture,tool,tools,sharing
licence           : proprietary_free,wapt_public
homepage          : https://www.screenpresso.com/
package_uuid      : e53c3ffc-0ad0-41a1-856e-fdba83d3c53a
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://www.screenpresso.com/releases/
min_os_version    : 10.0.18363
max_os_version    : 
icon_sha256sum    : e109c90b0779808e2381dca9199c38ae9b5320fe59293b12a7b491105e0c18db
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2026-07-25T10:25:13.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         : dB1p4sCRsdh0ORzhaUclowP0FFLqyuF46gLU/7ckEbkeiOi7bTkNEd1D+x/XEVk8/NAy/Z7FWSechSmOscFALyNQ0QB22nw+nKJ5MysnlpKtkwHx8pPXqQc0s46c2y4Mi5HTIlIVN3+rKYAw6hfLY/b3qf7z7hg2+QpiRkPmYif+GksVme61ajxbJua7lUbXy3o9D/EAYmVpEnXvKO2X00OJailbBKYidviq0E0czWEeuWI2qK8XHGDrIHXXs0QPIeB7HqWkS8da0H0NGdXtPc8KU15RWVEnmYOUIC6V5W9HXZr67afFSqwMkaUFee9eS/PojCEBBUOA4p5hSN6PTw==

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


def install():
    bin_name = "ScreenpressoSetup.msi"
    install_msi_if_needed(bin_name)

# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import requests
import xml.etree.ElementTree as ET

def update_package():
    package_updated = False
    proxies = get_proxies() or get_proxies_from_wapt_console()

    url = "https://www.screenpresso.com/legacy/next/public/v1/version.php?type=stable"
    xml_text = requests.get(url, timeout=30).text
    root = ET.fromstring(xml_text)

    latest = root.find(".//latestversion")
    if latest is None:
        error("Unable to find latestversion in XML")

    version = latest.attrib["version"]  # 2.2.13.0
    version = ".".join(latest.attrib["version"].split(".")[:6])
    major, minor, patch, build = version.split(".")
    release_dir = f"v{major}-{minor}-{patch}-000"

    url_dl = f"https://cdn.screenpresso.com/binaries/releases/{release_dir}/dotnet47/ScreenpressoSetup.msi"
    latest_bin = url_dl.split("/")[-1]

    print("Latest %s version is: %s" % (control.name, version))
    print("Download URL is: %s" % url_dl)

    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(url_dl, latest_bin, proxies=proxies)
    else:
        print("Binary is present: %s" % latest_bin)

    for f in glob.glob("*.msi"):
        if f != latest_bin:
            remove_file(f)

    if get_os_name() == "Windows" and "windows" in control.target_os.lower():
        version_from_file = ".".join(get_version_from_binary(latest_bin).split(".")[:3])
        online_version = ".".join(version.split(".")[:3])
        if Version(version_from_file, 4) == Version(online_version, 4):
            print(f"INFO: Binary file version ({version_from_file}) corresponds to online version ({online_version})")
        else:
            error(f"ERROR: Binary file version ({version_from_file}) does NOT correspond to online version ({online_version})")

    current_version = control.get_software_version()
    if Version(version, 4) > Version(current_version, 4):
        print("Software version updated (from: %s to: %s)" % (current_version, version))
        package_updated = True
    else:
        print("Software version up-to-date (%s)" % version)

    control.set_software_version(version)
    control.save_control_to_wapt()

    return package_updated

35ee2fcb5760e95b45f99ee3faf8ac99da12d9db13715cf0d9e39a2028d744ec : ScreenpressoSetup.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
a9dc4d4d3cd2b4a2c741c5dbaadb0ec5a7f83260e35ad98070bb581fc18fd6ed : WAPT/control
e109c90b0779808e2381dca9199c38ae9b5320fe59293b12a7b491105e0c18db : WAPT/icon.png
e3dd3f0909bd63de8498d40099126c6d7b06594c543ed62461fab8f3be9e72a6 : luti.json
55383033a43cd935f9d47f333bcc5d504dbcffcdfde22fa1972b0609e70ea40e : setup.py
2e4b2f55774117c9b9d6823076cc0dbf779397bda804e21d64b7cbef15c295a2 : update_package.py