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: darwin
  • architecture: x64
  • signature_date:
  • size: 73.92 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         : darwin
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      : c6cd0160-9046-4cce-81b1-7ddf9968d6f6
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 59c2089c75053daec8b56ea9d28ae34f322e47241ea9dac8a6e7f938a3da3e04
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : aiUyqS1FIj1tDxK3Vfhm608vQZjOWn+pHNfsyiyV6pqFjkyKKMBnTtq81dU2pgOvJTCQWpy7lbU59agqAxbH/Vr5Vy5ZAkFOH9XSkJzolApzJCIOKCCz/1WFKjyBbkdoJS76XBs9WAQSF1Lccg4AMRHoGz1Q0rZ8os8Q4RAlXpgK3mge7Wy9oCNIu8PEhauqqlObRFmpgpF0Bnkj7UKh3mrqN69/XlIco0yuLViDZrqGBD6xhyTxqeu42I7i+mYelqllF5DZ4zPy+0TXQxh+4AEtXqJetJm4qptbV6JrnD+b/m8BdUGQ1uAbVoeyVIhPIcGmquksSk0+rOdaNXI3hw==
signature_date    : 2024-08-03T15:01:29.513005
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 -*-
##################################################
# This file is part of WAPT Enterprise
# All right reserved, (c) Tranquil IT Systems 2023
# For more information please refer to
# https://wapt.tranquil.it/store/licences.html
##################################################
from setuphelpers import *


def install():
    install_dmg(glob.glob("DVDStyler-*-MacOSX.dmg")[0])


def uninstall():
    remove_tree("/Applications/DVDStyler.app")

# -*- 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",
        "darwin-x64": bin_contains + "-%s_1-MacOSX.dmg",
        "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 ".dmg" in json_load["platform_releases"][download]["filename"]:
            version = json_load["platform_releases"][download]["filename"].split("-")[1].split('_')[0]
    latest_bin = bin_name_dict[control.target_os + "-" + ensure_list(control.architecture)[0]] % version
    download_url = json_load["platform_releases"]["mac"]["url"]

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

    control.set_software_version(version)
    control.save_control_to_wapt()

    # Validating update-package-sources
    return package_updated

8b99633168cfc3cfdab3c433342b85f77a83dfe704c692fbb27dfb8449bbe2aa : setup.py
c00574dbce3e8ac256f54d7a3c3e43784c2f0728f92c632387a358cffae1b2aa : update_package.py
59c2089c75053daec8b56ea9d28ae34f322e47241ea9dac8a6e7f938a3da3e04 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
c441698ab51789cbf5e568734d6a7d8fa37bcffca6ffb0b7d3224e584678d737 : luti.json
79da43f15c1eb8002cf4a9282ff61047fdd0911532a413e0b3f9077530673ac5 : DVDStyler-3.2.1_1-MacOSX.dmg
9d26d46dc32530e68c627a98761bfa7bb9417bd2558c5e0e4064493353771c32 : WAPT/control