tis-faststone-capture icon

FastStone Capture

Paquet d’installation silencieuse pour FastStone Capture

10.9-8

  • package: tis-faststone-capture
  • name: FastStone Capture
  • version: 10.9-8
  • categories: Utilities
  • maintainer: Tranquil IT,BRAYE Benjamin,Kenan KILICARSLAN
  • editor: FastStone Soft
  • licence: Shareware
  • locale: all
  • target_os: windows
  • impacted_process: FSCapture,FSRecorder,FSFocus,FSCrossHair
  • architecture: all
  • signature_date:
  • size: 8.90 Mo
  • installed_size: 11.66 Mo
  • homepage : www.faststone.org

package           : tis-faststone-capture
version           : 10.9-8
architecture      : all
section           : base
priority          : optional
name              : FastStone Capture
categories        : Utilities
maintainer        : Tranquil IT,BRAYE Benjamin,Kenan KILICARSLAN
description       : FastStone Capture is a powerful, lightweight, yet full-featured screen capture tool and screen video recorder.
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.0
sources           : https://www.faststone.org/FSCaptureDownload.htm
installed_size    : 11657216
impacted_process  : FSCapture,FSRecorder,FSFocus,FSCrossHair
description_fr    : FastStone Capture est un outil de capture d'écran et un enregistreur vidéo d'écran puissant et léger
description_pl    : FastStone Capture to potężne, lekkie, ale w pełni funkcjonalne narzędzie do przechwytywania ekranu i rejestrowania wideo na ekranie
description_de    : FastStone Capture ist ein leistungsfähiges, leichtgewichtiges und dennoch voll funktionsfähiges Tool für Bildschirmaufnahmen und Bildschirmvideorecorder
description_es    : FastStone Capture es una herramienta de captura de pantalla y grabador de vídeo de pantalla potente y ligera, pero con todas las funciones
description_pt    : FastStone Capture é uma ferramenta de captura de ecrã e gravador de vídeo de ecrã potente, leve, mas com todas as funcionalidades
description_it    : FastStone Capture è uno strumento di cattura dello schermo e un registratore video potente, leggero ma completo
description_nl    : FastStone Capture is een krachtige, lichtgewicht, maar toch volledig uitgeruste scherm capture tool en scherm video recorder
description_ru    : FastStone Capture - это мощный, легкий, но полнофункциональный инструмент для захвата экрана и записи видео с экрана
audit_schedule    : 
editor            : FastStone Soft
keywords          : capture,screen,tool,video
licence           : Shareware
homepage          : www.faststone.org
package_uuid      : c802bea4-bd8e-4bb7-805c-9bc93d251684
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 6.1
max_os_version    : 
icon_sha256sum    : cd112eae390d379b21a6fd03f2c6100ff163fdaea27976acf4517f4f97762912
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2024-12-04T02:00:11.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         : AETu9hMsZsg9EXvIRHQh8Bfx4tfYVYdp1BfADnG0TkUXBezDTLAiz17UQAyFsqd0gbpNqBI0PHNFzZr0AGzUuAIfaCSQYAhhRBYfsvUCKla7jjx9ElX9wVODDfGNY558fAMBEx/qO+iPC2kEXP9ZR2l8hAVss2dXY3A6y+W1YFrcF01vyGv0lBPdWdexDhi6A55TTN7JrbMsJAyz2VdfbBijdQ349+7/bpCWdyOvEqGryOfYxHAu2JX7PAf02w+yA+wC0PU3muOtaYVrnyzIuX/lMI9p8kUqKtV/Ww3QReXvxunncbPkWKweO+HbRu1cqvAXPPqK3VoCGbRCrs9/tg==

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


def install():
    bin_name = glob.glob("FSCaptureSetup*.exe")[0]
    install_exe_if_needed(bin_name, silentflags="/S", key="FastStone Capture", min_version=control.get_software_version())

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


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
    url = "https://www.faststone.org/FSCaptureDownload.htm"

    # Getting latest version from official sources
    print("URL used is: %s" % url)
    for bs_search in bs_find_all(url, "a", proxies=proxies):
        if ".exe" in bs_search["href"]:
            download_url = bs_search["href"]
            latest_bin = bs_search["href"].split("/")[-1]
            break
    for bs_search in bs_find_all(url, "b", proxies=proxies):
        if "FastStone Capture " in bs_search.text:
            version = bs_search.text.split("FastStone Capture ")[-1].split("\xa0")[0]
            break

    # Downloading latest binaries
    print("Latest %s version is: %s" % (app_name, 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)

    # Checking version from file
    version_from_file = get_version_from_binary(latest_bin)
    # if not version_from_file.startswith(version) and version_from_file != '':
    if Version(version_from_file) != Version(version) and version_from_file != "":
        print("Changing version to the version number of the binary (from: %s to: %s)" % (version, version_from_file))
        os.rename(latest_bin, latest_bin.replace(version, version_from_file))
        version = version_from_file
    else:
        print("Binary file version corresponds to online version")

    # Changing version of the package
    if Version(version) > Version(control.get_software_version()):
        print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
        package_updated = True
    else:
        print("Software version up-to-date (%s)" % Version(version))
    control.set_software_version(version)
    control.save_control_to_wapt()

    # Deleting outdated binaries
    remove_outdated_binaries(version)

    # Validating or not update-package-sources
    return package_updated

c2f52cd87d25125d8542a4013c3f03c5a3f48d0e6107226ff77524e5daca3e64 : FSCaptureSetup109.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
1d1ebc0f0d3ebe161652a53b7a5b208108537054fa0f8140596881d3d996ae6a : WAPT/changelog.txt
35a8e7341d17e4fe45a7621961e26e59ab0af16e18de957c58f11e009149dea8 : WAPT/control
cd112eae390d379b21a6fd03f2c6100ff163fdaea27976acf4517f4f97762912 : WAPT/icon.png
c3e98e3d536b528aedcb6a32827c47b91510a08dc7b274f1d0032ab9615d2c26 : luti.json
6e89573b1f7df0757abd87b02cf3d3fd18c636573004ea3a493f72f8aa18ab4f : setup.py
2abaa1abb1312d1c49079c64e11510f5d882f29a0dcee3d3e488838e11c44a5b : update_package.py

Version 9.0 (June 15, 2018)

    Added "Auto Screen Capture", which automatically and repeatedly captures the screen at user-specified time intervals
    Added "Auto-Send to Clipboard" option to the right click menu in Screen Ruler. This option sends measurements to Clipboard automatically
    Other minor improvements and bug fixes