tis-vokoscreenng icon

vokoscreenNG

Paquet d’installation silencieuse pour vokoscreenNG

4.9.0-0
Media
Media

  • package: tis-vokoscreenng
  • name: vokoscreenNG
  • version: 4.9.0-0
  • categories: Media
  • maintainer: Simon Fonteneau
  • editor: Volker Kohaupt
  • licence: GPL-2.0
  • locale: all
  • target_os: windows
  • impacted_process: vokoscreenNG.exe
  • architecture: x64
  • signature_date:
  • size: 131.96 Mo
  • installed_size: 217.72 Mo
  • homepage : https://linuxecke.volkoh.de/vokoscreen/vokoscreen.html

package           : tis-vokoscreenng
version           : 4.9.0-0
architecture      : x64
section           : base
priority          : optional
name              : vokoscreenNG
categories        : Media
maintainer        : Simon Fonteneau
description       : VokoscreenNG is an easy-to-use screencast maker to record videos from computer screens, webcams, external cameras, etc.
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.1
sources           : 
installed_size    : 217722880
impacted_process  : vokoscreenNG.exe
description_fr    : VokoscreenNG est un créateur de screencast facile à utiliser pour enregistrer des vidéos à partir d’écrans d’ordinateur, de webcams, de caméras externes, etc.
description_pl    : VokoscreenNG to łatwy w użyciu screencast maker do nagrywania filmów z ekranów komputerów, kamer internetowych, kamer zewnętrznych itp
description_de    : VokoscreenNG ist ein einfach zu bedienender Screencast-Maker zur Aufnahme von Videos von Computerbildschirmen, Webcams, externen Kameras usw
description_es    : VokoscreenNG es un creador de screencast fácil de usar para grabar vídeos de pantallas de ordenador, cámaras web, cámaras externas, etc
description_pt    : VokoscreenNG é um criador de screencast fácil de usar para gravar vídeos de ecrãs de computador, webcams, câmaras externas, etc
description_it    : VokoscreenNG è un creatore di screencast facile da usare per registrare video da schermi di computer, webcam, telecamere esterne, ecc
description_nl    : VokoscreenNG is een eenvoudig te gebruiken screencast maker om video's op te nemen van computerschermen, webcams, externe camera's, enz
description_ru    : VokoscreenNG - это простая в использовании программа для записи видео с экрана компьютера, веб-камеры, внешней камеры и т.д
audit_schedule    : 
editor            : Volker Kohaupt
keywords          : screen,record
licence           : GPL-2.0
homepage          : https://linuxecke.volkoh.de/vokoscreen/vokoscreen.html
package_uuid      : beff1735-e2f1-444a-bffc-51e69663f102
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 10.0
max_os_version    : 
icon_sha256sum    : f12910de624b8dbd92a9a9bf8a022bbd38e41497244719b7a79f11fac63cf40b
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2026-04-18T08:55:57.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         : phM/90XsyOGBR2bBkWEzkoF8NRuBQ6ya/Bt3Fy/mSUFeSe/BKI4Bt+ci400aNkwLarqDiy1a8sL/823xObXADqIeztPqKYYaRDMarwio3iPw0z910GpQtRfFjo9qN6WME/plxAfMls8UPBQ3/i1Sh5wzLqthHkcszSeNEILQrO98U84kVsTVz+RbNrpUjzjqZdbqRsYT1ebSLJB4UEkIdS/irRe6ayc0cMhaUeS3S+6JxRXJatoqXVrpB2LneO2FKQpC2uDdK7fvEJvdO/xyzwkKJ4ktBW75dT3YvHYzUPW4eJvp8asxhHxzXIZgRaaIunQHc5I1/WPz5q/DQl3d4g==

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


def install():
    version = control.get_software_version()

    # Uninstalling older versions of the software
    for to_uninstall in installed_softwares(name=r"\bvokoscreenNG\b"):
        if Version(to_uninstall["version"]) < Version(version) or force:
            print("Removing: %s (%s)" % (to_uninstall["name"], to_uninstall["version"]))
            killalltasks(control.impacted_process.split(","))
            run(uninstall_cmd(to_uninstall["key"]))
            wait_uninstallkey_absent(to_uninstall["key"])
            time.sleep(10)

    # uninstallkey dynamique ... beurk
    install_exe_if_needed(
        "vokoscreenNG-%s-win64.exe" % version,
        "in -c --al --am AllUsers=true",
        min_version=version,
        name="vokoscreenNG",
    )

    # force QuietUninstallString
    install_loc_bvokoscreen = installed_softwares(name=r"\bvokoscreenNG\b")[0]["install_location"]
    exe_bvokoscreen = makepath(install_loc_bvokoscreen, "Uninstall.exe")

    nb = 0
    while not isfile(exe_bvokoscreen):
        nb = nb + 1
        if nb > 60:
            error("%s not found" % exe_bvokoscreen)
        time.sleep(1)

    time.sleep(10)
    quietuninstallstring = '"%s" pr -c' % exe_bvokoscreen

    registry_setstring(
        HKEY_LOCAL_MACHINE,
        r"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\%s" % uninstallkey[0],
        "QuietUninstallString",
        quietuninstallstring,
    )

    remove_desktop_shortcut("vokoscreenNG-%s" % version)

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

def update_package():
    proxies = {}
    if isfile(makepath(user_local_appdata(), "waptconsole", "waptconsole.ini")):
        proxywapt = inifile_readstring(makepath(user_local_appdata(), "waptconsole", "waptconsole.ini"), "global", "http_proxy")
        if proxywapt:
            proxies = {"http": proxywapt, "https": proxywapt}

    currentpath = os.path.dirname(os.path.realpath(__file__))

    url = "https://linuxecke.volkoh.de/vokoscreen/vokoscreen-download.html"

    # Getting latest version information from official sources
    print("API used is: %s" % url)
    for bs_search in bs_find_all(url,"tr", proxies = proxies):
        if bs_search.find_next("a")["href"]:
            download_url = "https://linuxecke.volkoh.de/vokoscreen/" + bs_search.find_next("a")["href"]
            latest_bin = bs_search.find_next("a")["href"].split("/")[-1]
            version = latest_bin.split("-")[1]
            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

38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
b9cba2d630c244576e8b390270e550557cae27189fc7cedb828d9e2b8b75591e : WAPT/control
f12910de624b8dbd92a9a9bf8a022bbd38e41497244719b7a79f11fac63cf40b : WAPT/icon.png
37996816df696b9adf881522451cd4c717ceab91aa1bb3db2e37970e63a5d1fe : luti.json
cd7278ec4c625d6cf6b9376ddc5056a2fffa3754eeb1e8ab4e138d3b715fd57c : setup.py
ede2de4618ce4311ca4cf617f684921cbe5e274ecc433b2a9babe9bcb73cfa08 : update_package.py
3c54415f8662c1958471259ff3baacd4da9b6059c66854fe77f53fecf3267d1f : vokoscreenNG-4.9.0-win64.exe