tis-adobe-digital-editions icon

Adobe Digital Editions

Paquet d’installation silencieuse pour Adobe Digital Editions

4.5.12-5

  • package: tis-adobe-digital-editions
  • name: Adobe Digital Editions
  • version: 4.5.12-5
  • categories: Media
  • maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ,Pierre COSSON,Gaëtan SEGAT
  • editor: Adobe Systems
  • locale: all
  • target_os: windows
  • impacted_process: DigitalEditions
  • architecture: all
  • signature_date:
  • size: 9.00 Mo
  • installed_size: 22.21 Mo
  • homepage : https://www.adobe.com/solutions/ebook/digital-editions.html

package           : tis-adobe-digital-editions
version           : 4.5.12-5
architecture      : all
section           : base
priority          : optional
name              : Adobe Digital Editions
categories        : Media
maintainer        : WAPT Team,Tranquil IT,Jimmy PELÉ,Pierre COSSON,Gaëtan SEGAT
description       : Adobe Digital Editions (abbreviated ADE) is an ebook reader software program from Adobe Systems
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.0
sources           : https://www.adobe.com/solutions/ebook/digital-editions/download.html
installed_size    : 22208512
impacted_process  : DigitalEditions
description_fr    : Adobe Digital Editions (abrégé ADE) est un logiciel de lecture de livres électroniques edité par Adobe Systems
description_pl    : Adobe Digital Editions (w skrócie ADE) to program do czytania ebooków od Adobe Systems
description_de    : Adobe Digital Editions (abgekürzt ADE) ist ein E-Book-Reader-Programm von Adobe Systems
description_es    : Adobe Digital Editions (abreviado ADE) es un programa de lectura de libros electrónicos de Adobe Systems
description_pt    : Adobe Digital Editions (ADE abreviado) é um programa de software de leitura de livros electrónicos da Adobe Systems
description_it    : Adobe Digital Editions (abbreviato ADE) è un programma di lettura di ebook di Adobe Systems
description_nl    : Adobe Digital Editions (afgekort ADE) is een programma voor het lezen van e-boeken van Adobe Systems
description_ru    : Adobe Digital Editions (сокращенно ADE) - это программа для чтения электронных книг от Adobe Systems
audit_schedule    : 
editor            : Adobe Systems
keywords          : e-book,ebook,book,reader
licence           : 
homepage          : https://www.adobe.com/solutions/ebook/digital-editions.html
package_uuid      : 3ea1aa78-6460-4cee-892e-63362c557f09
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 36c03aa9b13c7260f2aaa0bcfb78385a0b0ca31fdae47dd7a0b56a582c6c0bbe
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-08-16T08:06:55.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         : SqO946gLoh6NU7IopijvexC0s1ry21h0RKB4FAe4iNh9DQ5dmmlqYeMiDGKNyQtisxOOpa6B4uyhOfrRzCWarcZs2uuzcy5Vb5Xb0o7K3AiHzGQe01JRX7FxnyDpNojfhm1ZYgai9nFQt7GNiT7cXTfPI9fxR88QlwQLKrg73PJ3PpnoGt1f2C645fvXiqp8QDPQtThe8kQLiVixpuTZ9HMxMwbO0EY5jk0S4RbHK2G9LPzfFcTGGi1zIoKmbGgMWSc7y5CU0XomFaP0X9LEoIe9/H5sBHEknJXsV873zTKYoOa2xTATvKnEJX5Y/fVNNLSvV71S/ZgElPQHpZt/nA==

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


def install():
    # Specific app values
    package_version = control.get_software_version()
    package_version_two_digit = "%s.%s" % (package_version[0], package_version[2])
    bin_name = glob.glob("*ADE_*.exe")[0]
    app_uninstallkey = "Adobe Digital Editions %s" % package_version_two_digit

    # Skip Norton Antivirus Installation
    if not reg_value_exists(HKEY_LOCAL_MACHINE, r"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\N360", ""):
        registry_setstring(HKEY_LOCAL_MACHINE, r"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\N360", "", "")

    if not reg_value_exists(HKEY_LOCAL_MACHINE, r"SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\N360", ""):
        registry_setstring(HKEY_LOCAL_MACHINE, r"SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\N360", "", "")

    

    # Installing the package
    install_exe_if_needed(
        bin_name,
        silentflags="/S",
        key=app_uninstallkey,
        min_version=package_version,
        accept_returncodes=[0,1223,3010],
    )

    # Removing application desktop shortcut if allowed
    if params.get("remove_desktop_shortcuts"):
        remove_desktop_shortcut(app_uninstallkey)


def uninstall():
    if reg_value_exists(HKEY_LOCAL_MACHINE, r"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\N360", ""):
        registry_delete(HKEY_LOCAL_MACHINE, r"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\N360", "")

    if reg_value_exists(HKEY_LOCAL_MACHINE, r"SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\N360", ""):
        registry_delete(HKEY_LOCAL_MACHINE, r"SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\N360", "")

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


def update_package():
    # Declaring local variables
    result = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    app_name = control.name
    url = "https://www.adobe.com/solutions/ebook/digital-editions/download.html"

    # Getting latest version from official sources
    print("URL used is: %s" % url)
    for bs_search in bs_find_all(url, "a", "href", proxies=proxies, timeout=10):
        if bs_search["href"].startswith("https://adedownload.adobe.com/pub/adobe/digitaleditions/") and bs_search["href"].strip('#_blank').endswith(".exe"):
            download_url = bs_search["href"].strip('#_blank')
            latest_bin = download_url.split("/")[-1]
            version = str(bs_search.text).split(" ")[0]
            break

    print("Latest %s version is: %s" % (app_name, version))
    print("Download URL is: %s" % download_url)

    # Downloading latest binaries
    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)

    # Checking version from file
    version_from_file = get_version_from_binary(latest_bin)
    # if not version_from_file.startswith(version) and version_from_file != '':
    if Version(version_from_file) != Version(version) and version_from_file != "":
        # print("Changing version to the version number of the binary (from: %s to: %s)" % (version, version_from_file))
        # os.rename(latest_bin, latest_bin.replace(version, version_from_file))
        version = version_from_file
    else:
        print("Binary file version corresponds to online version")

    # Changing version of the package
    if Version(version) > Version(control.get_software_version()):
        print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
        result = True
    else:
        print("Software version up-to-date (%s)" % Version(version))
    control.version = "%s-%s" % (Version(version), control.version.split("-", 1)[-1])
    # control.set_software_version(version)
    control.save_control_to_wapt()

    # Deleting outdated binaries
    remove_outdated_binaries(version)

    # Validating or not update-package-sources
    return result

db40676c6925f64ab79c3d8b7a24be0973b07ef1c14eec6ec8c44f47cfe665b8 : ADE_4.5_Installer.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
81c243b8c58caa464c381e03666ab20ea4940d671125fb9f85aa78f91169b8b8 : WAPT/changelog.txt
52b220054efd8b701b87b499f1e3397b7f8b485f50a5b23801f27d778f3d0d80 : WAPT/control
36c03aa9b13c7260f2aaa0bcfb78385a0b0ca31fdae47dd7a0b56a582c6c0bbe : WAPT/icon.png
170ffaa9c037f07aaaadfc6ce1e3c2d310bda6923b0893029d9bfd7b353cf94b : luti.json
5885552d8b6298053238e1118e30bf62e9d7d4bc47c78e5a50cbbd7f85bad7a7 : setup.py
471234ba6949604b731062bccbc4989694b3f4b4e0781c0b071c01ba8fe978b2 : update_package.py

4.5.11.0-4
===
timeout=600
Removing application desktop shortcut if allowed

4.5.11.0-5
===
Skip the installation of Norton Anti-Virus