ScreenCloud
Silent install package for ScreenCloud
1.5.3-1
Utilities
Utilities
- package: tis-screencloud
- name: ScreenCloud
- version: 1.5.3-1
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,Ingrid TALBOT
- editor: Olav Sortland Thoresen
- licence: opensource_free,cpe:/a:gnu:gpl_v2,wapt_private
- locale: all
- target_os: windows
- impacted_process: ScreenCloud
- architecture: x64
- signature_date:
- size: 40.99 Mo
- installed_size: 90.08 Mo
- homepage : https://screencloud.com/
package : tis-screencloud
version : 1.5.3-1
architecture : x64
section : base
priority : optional
name : ScreenCloud
categories : Utilities
maintainer : WAPT Team,Tranquil IT,Ingrid TALBOT
description : ScreenCloud is a cross-platform utility that makes it easy to capture and manage screenshots together with flexible backup options in the cloud
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.3
sources :
installed_size : 90077636
impacted_process : ScreenCloud
description_fr : ScreenCloud est un utilitaire multiplateforme qui facilite la capture et la gestion des captures d'écran, tout en offrant des options de sauvegarde flexibles dans le nuage
description_pl : ScreenCloud to wieloplatformowe narzędzie, które ułatwia przechwytywanie i zarządzanie zrzutami ekranu wraz z elastycznymi opcjami tworzenia kopii zapasowych w chmurze
description_de : ScreenCloud ist ein plattformübergreifendes Dienstprogramm, das die Erfassung und Verwaltung von Screenshots zusammen mit flexiblen Backup-Optionen in der Cloud erleichtert
description_es : ScreenCloud es una utilidad multiplataforma que facilita la captura y gestión de pantallas junto con opciones flexibles de copia de seguridad en la nube
description_pt : O ScreenCloud é um utilitário multiplataforma que facilita a captura e gestão de capturas de ecrã, juntamente com opções flexíveis de cópia de segurança na nuvem
description_it : ScreenCloud è un'utility multipiattaforma che semplifica l'acquisizione e la gestione degli screenshot insieme a opzioni di backup flessibili nel cloud
description_nl : ScreenCloud is een cross-platform hulpprogramma waarmee je eenvoudig schermafbeeldingen kunt vastleggen en beheren, samen met flexibele back-upopties in de cloud
description_ru : ScreenCloud - это кроссплатформенная утилита, которая позволяет легко делать снимки экрана и управлять ими, а также предоставляет гибкие возможности резервного копирования в облако
audit_schedule :
editor : Olav Sortland Thoresen
keywords : screenshot,capture,manage
licence : opensource_free,cpe:/a:gnu:gpl_v2,wapt_private
homepage : https://screencloud.com/
package_uuid : 9f2a6480-b542-4641-a014-2e2ff331df18
valid_from :
valid_until :
forced_install_on :
changelog : https://github.com/olav-st/screencloud/releases
min_os_version :
max_os_version :
icon_sha256sum : 53b2be1e524f3d77fc53c38ba7f82917fb5b608eabfd1a2203c9257fcf4569ff
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature : vl/DsxX4hEUJSjL/y5DXewjm+X6HFB63WstYbkbUzs1b4iGmsioqyW7OseVOW4MZTr9YW3ACGcpGRGfZgLuA4qhKkS6JiRbNblK1UdbEx9JVH40YBezM0Y25dvQBMqB/DCkLPGJkwNvN6MRkK8fv6Y+x89Ul/TiPopClVfVsxwqUvPUD2d1dtrS3seAVOLdTSMCpaa2gjF94Z6VyR1+PlF8pAKULM3iRS9H2YzVJO8eOwTTzA57Y0evowCfkEemYsqoXl05OWvyP8veDTUKZB7iBoJxDXiUe0/mb4F7Oq8/K7p3Kcn/9XxoMS/ijbFUMeLdMU9yH8p1zjjfwjny6Lw==
signature_date : 2024-07-20T15:00:50.070230
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
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob("ScreenCloud-*-x64.msi")[0]
install_exe_if_needed(bin_name, silentflags="/quiet", key="{ED7F297E-ACDB-4FA1-99E4-219004D4EDA1}", min_version=control.get_software_version())
# -*- coding: utf-8 -*-
from setuphelpers import *
import re
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
update_dict = {"windows-x64": "x64.msi", "windows-x86": "x86.msi", "macos": ".dmg"}
api_url = "https://api.github.com/repos/olav-st/screencloud/releases/latest"
# Get data from API
releases_dict = json.loads(wgets(api_url, proxies=proxies))
msi_found = False # Flag pour indiquer la découverte d'un fichier .msi
for release in releases_dict:
if msi_found:
break
for asset in releases_dict["assets"]:
if (
asset["browser_download_url"].endswith(".msi")
and update_dict[control.target_os + "-" + ensure_list(control.architecture)[0]] in asset["browser_download_url"]
):
url_download = asset["browser_download_url"]
latest_bin = url_download.split("/")[-1]
version = releases_dict["tag_name"].replace("v", "")
msi_found = True # Mettre à jour le flag pour indiquer qu'un msi a été trouvé
break
# Deleting binaries
for f in glob.glob("*.msi"):
if f != latest_bin:
remove_file(f)
# Downloading latest binaries
print("Download URL is: %s" % url_download)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(url_download, latest_bin, proxies=proxies)
else:
print("Binary is present: %s" % latest_bin)
version = get_version_from_binary(latest_bin)
control.set_software_version(version)
control.save_control_to_wapt()
1af58d0cfdfb5561b2eda74dbe40fa11c5dc138463e17622c9178eb2f3f546df : setup.py
af1cf07c8be7756094b6aae7dd18ebfa5e99a472393e66e4b46a3d047ab15978 : update_package.py
315af306249f2a43fd03d38d71dd9dcb22feeaf3591616ce137688632a4c2cc4 : ScreenCloud-1.5.3-x64.msi
53b2be1e524f3d77fc53c38ba7f82917fb5b608eabfd1a2203c9257fcf4569ff : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
74812b38099f95e572ffa794efb70f3822c885281cb89c2d5f1f81b0865d25d8 : luti.json
1eac27799ac83f23b6c4ee4fea4328597e9d6a2a7a77f3125fbc795eb8bc294c : WAPT/control