- package: tis-dvdstyler
- name: DVDStyler
- version: 3.3-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: 70.67 Mo
package : tis-dvdstyler
version : 3.3-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 : 0d455e4b-b8a9-48b7-89ef-63d8636b28af
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 59c2089c75053daec8b56ea9d28ae34f322e47241ea9dac8a6e7f938a3da3e04
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature : UX2UWgaCZgZOutFNL12Am+4PxoXqTLAdkGxVBX1v6mFZ/rmq0n3khYBPCQOFWBIq6Ve6zEiD5bTyZojaSjk2k2P64f4lsBqCb/h+mgnuO5NusbAHPlUzeRBmMEwXFYIp6CHDzzlaqvZ9cvSnSeTP53jzeuU1Q0Wx9hfiSSl4TFPBYcWwGnBNazPxm/n4uBBEbQfT6CeefZpWqi7onvcUMOZrtmRo486OEIYntTh8iVoO1Rs76fOQWUKiFEX1HsYC1YsyzMEddB/5qYv58yLCQQ7iqOFz5T37ifrRGOo2Y9xAOWkBDf2lOD3S6nqW046lhtlBs6Xqd6x5UBSybnc+FA==
signature_date : 2024-09-04T11:02:08.668663
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_url = json_load["platform_releases"][download]["filename"].split("-")[1].split("/")[1]
version = version_url.split("b")[0]
latest_bin = bin_name_dict[control.target_os + "-" + ensure_list(control.architecture)[0]] % version_url
download_url = "https://sourceforge.net/projects/dvdstyler/files/dvdstyler-devel/%s/%s/download" % (version_url, 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
d3249b29e3347a47f1fe313a648bfdc818060ed28fd00452047c96db18eac8d0 : DVDStyler-3.3b4-win64.exe
329b0a0667152922dc4dcd9794b523e263a7eb9b19c59fa0461da87a6f0ab8ee : update_package.py
59c2089c75053daec8b56ea9d28ae34f322e47241ea9dac8a6e7f938a3da3e04 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
f894d4329f93de4b09bf303c8ab1ac96cde66492e4ee9db08c6e9599ed68162e : luti.json
394d62192e657828dd650685c58f0e183a1789096167f4ddd321451629d69c93 : WAPT/control