tis-dvdstyler icon

DVDStyler

Paquet d’installation silencieuse pour DVDStyler

3.2.1-1

  • package: tis-dvdstyler
  • name: DVDStyler
  • version: 3.2.1-1
  • categories: Utilities
  • maintainer: WAPT Team,Tranquil IT,Jimmy PELE,Clément Baziret
  • licence: proprietary_free,wapt_public
  • locale: all
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 34.76 Mo

package           : tis-dvdstyler
version           : 3.2.1-1
architecture      : x64
section           : base
priority          : optional
name              : DVDStyler
categories        : Utilities
maintainer        : WAPT Team,Tranquil IT,Jimmy PELE,Clément Baziret
description       : DVDStyler is a free DVD-editing application for creating professional-looking DVDs
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.3
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : DVDStyler est une application gratuite d'édition de DVD permettant de créer des DVD de qualité professionnelle
description_pl    : DVDStyler to darmowa aplikacja do edycji DVD, umożliwiająca tworzenie profesjonalnie wyglądających płyt DVD
description_de    : DVDStyler ist eine kostenlose Anwendung zur DVD-Bearbeitung, mit der Sie professionell aussehende DVDs erstellen können
description_es    : DVDStyler es una aplicación gratuita de edición de DVD para crear DVD de aspecto profesional
description_pt    : O DVDStyler é uma aplicação de edição de DVD gratuita para criar DVDs com aspeto profissional
description_it    : DVDStyler è un'applicazione gratuita per l'editing di DVD che consente di creare DVD dall'aspetto professionale
description_nl    : DVDStyler is een gratis DVD-bewerkingsprogramma om professioneel uitziende DVD's te maken
description_ru    : DVDStyler - это бесплатное приложение для редактирования DVD-дисков, позволяющее создавать DVD-диски профессионального качества
audit_schedule    : 
editor            : 
keywords          : dvdstyler,free,dvd,editing,application,creating,professional,looking,dvds
licence           : proprietary_free,wapt_public
homepage          : 
package_uuid      : 2d5f6bd8-9b7f-4e49-96b3-bcfa18d135f8
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 59c2089c75053daec8b56ea9d28ae34f322e47241ea9dac8a6e7f938a3da3e04
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : yKpecFwr2PYiRyVFsyQuXoPlnihlCHSRfu8l7qxNK2RN3GHC2hTvYz5Xu37Ku4ra6sJFEefUwC83Y/HMZaG2gtcWMuiV77Gk6C5mq2KFfgkyBPIHu3wqj3zcYkUL6j0qlH+Uy7wrNqM/90/EYzRGyw/Q3vSQd8+yyaBooEHF94oe+rhdeJ0xLxs/YUt6b27+O6P243tuRdL8pCCcKkPOG1pk+yoqVZ1dEsYCKCW75J+aLKgKcjmylptChy7KYkaOSYDq2QOaFzNHB3aN4LUbGEQjpyUYpF1sSENGOZJdAyfdOEUNZEnp46/jfoBD3LPaGe+UpZ0HwAFTX3fejmMZKg==
signature_date    : 2023-09-11T18:00:13.508116
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 *

uninstall_key = "DVDStyler_is1"


def install():
    bin_name = glob.glob("DVDStyler-*.exe")[0]

    install_exe_if_needed(
        bin_name,
        "/VERYSILENT /SUPPRESSMSGBOXES /NORESTART",
        key=uninstall_key,
        min_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
    api_url = "https://sourceforge.net/projects/dvdstyler/best_release.json"
    bin_contains = "DVDStyler"
    bin_name_dict = {
        "windows-x64": bin_contains + "-%s-win64.exe",
        "windows-x86": bin_contains + "-%s-win32.exe",
        "macos-all": bin_contains + "-%s_1-MacOSX.dmg",
        "linux-all": bin_contains + "-%s.tar.bz2",
    }

    # Getting latest version information from official sources
    print("API used is: %s" % api_url)
    json_load = wgets(api_url, proxies=proxies, as_json=True)
    for download in json_load["platform_releases"]:
        if ".exe" in json_load["platform_releases"][download]["filename"]:
            version = json_load["platform_releases"][download]["filename"].split("-")[1]
    latest_bin = bin_name_dict[control.target_os + "-" + ensure_list(control.architecture)[0]] % version
    download_url = "https://sourceforge.net/projects/dvdstyler/files/dvdstyler/%s/%s/download" % (version, latest_bin)

    # 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)

    # Deleting outdated binaries
    remove_outdated_binaries(latest_bin)

    # Changing version of the package
    if Version(version, 4) > Version(control.get_software_version(), 4):
        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()

    # Validating update-package-sources
    return package_updated

414060e10d2cacaeeb0119db94f6e89b5d5ccd78807e3c46cfb6825a4d428338 : setup.py
99b74055e9b5cceae29b153158563e454905531c966f3cdbe98ea390a6a0e713 : DVDStyler-3.2.1-win64.exe
407b37113ea9fc91c5df1f02b0ee55b76bf3b059cf0d06de1d0a44f551f54f3c : update_package.py
59c2089c75053daec8b56ea9d28ae34f322e47241ea9dac8a6e7f938a3da3e04 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
765cfbda9045747e91e18080e53aeacd52e651f9f4b941beafa4362c71a8aa93 : luti.json
959184f3510de15c51113801c94caadd8d63e9f7ccce598de6e5d7b38ba071f2 : WAPT/control