
- package: tis-faststone-capture
- name: FastStone Capture
- version: 10.8-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.89 Mo
- installed_size: 11.66 Mo
- homepage : www.faststone.org
package : tis-faststone-capture
version : 10.8-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 : dc7c2534-feb5-48b7-b8b8-b7ef939decf2
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-10-17T00:00:08.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 : I4M8zxSn/WIrEvBKx0ajDVzEpb3StVBxf175ED8E5v0I/QCog4YAkCIbQV9JpjqHA25EVhk/E/4mE6f/H/K9mgI5JE4Sa6sqbZRVuu9oDe30vN+90UgicZSC2zzgIooWWiAZADa0Z6JLZai8mH5sUBYklJ3G4ECMiBU20fl45NOrjvvGketkt5jo/IjzNVEFS91A9k7styLLsbN7qQi/hk0u5hAW9KdTO+xYLMzQ+a5aHpCvVyATjHhzL4t/bRfmsfQLym8KT1m7Z47ZpGWUu73uQnnGRggivwhdJE4u18lcn2mHjNmUvkzLkm9zorfxsC+ugfLzt4CRGgk8vjlKAg==
# -*- 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
309f7cfec91efe4a1589c87ac465ec9a708e8adc57860358895e5e73efd9dd74 : FSCaptureSetup108.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
1d1ebc0f0d3ebe161652a53b7a5b208108537054fa0f8140596881d3d996ae6a : WAPT/changelog.txt
a0e22fc3a906dd034eaf3b9ae2c625738041e16f0d7f8f35c7ac04a7fa1c4eb2 : WAPT/control
cd112eae390d379b21a6fd03f2c6100ff163fdaea27976acf4517f4f97762912 : WAPT/icon.png
7837214f0ec6aa60e15191488946e8e9b0965eadc814a91697754cb500964ddf : 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