tis-zotero icon

Zotero

Paquet d’installation silencieuse pour Zotero

8.0-12
Utilities
Utilities

Les paquets PREPROD sont des paquets construits via LUTI. Ils restent généralement 5 jours en PREPROD, après quoi un deuxième scan VirusTotal est effectué pour vérifier que le status n'a pas changé.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.

  • package: tis-zotero
  • name: Zotero
  • version: 8.0-12
  • categories: Utilities
  • maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ,Gaëtan SEGAT
  • editor: Corporation for Digital Scholarship
  • licence: AGPL
  • locale: all
  • target_os: windows
  • impacted_process: zotero
  • architecture: x86
  • signature_date:
  • size: 90.20 Mo
  • installed_size: 116.42 Mo
  • homepage : https://www.zotero.org/

package           : tis-zotero
version           : 8.0-12
architecture      : x86
section           : base
priority          : optional
name              : Zotero
categories        : Utilities
maintainer        : WAPT Team,Tranquil IT,Jimmy PELÉ,Gaëtan SEGAT
description       : Zotero is a free and open-source reference management software to manage bibliographic data and related research materials
depends           : 
conflicts         : 
maturity          : PREPROD
locale            : all
target_os         : windows
min_wapt_version  : 2.0
sources           : https://www.zotero.org/download/
installed_size    : 116416512
impacted_process  : zotero
description_fr    : Zotero est un logiciel de gestion de références gratuit, libre et open source, il permet de gérer des données bibliographiques et des documents de recherche
description_pl    : Zotero jest wolnym i otwartym oprogramowaniem do zarządzania referencjami, służącym do zarządzania danymi bibliograficznymi i powiązanymi materiałami badawczymi
description_de    : Zotero ist eine kostenlose und quelloffene Literaturverwaltungssoftware zur Verwaltung bibliographischer Daten und verwandter Forschungsmaterialien
description_es    : Zotero es un software de gestión de referencias gratuito y de código abierto para gestionar los datos bibliográficos y los materiales de investigación relacionados
description_pt    : Zotero é um software de gestão de referências gratuito e de código aberto para gerir dados bibliográficos e materiais de investigação relacionados
description_it    : Zotero è un software di reference management gratuito e open-source per la gestione dei dati bibliografici e dei relativi materiali di ricerca
description_nl    : Zotero is een gratis en open-source referentiebeheersoftware om bibliografische gegevens en verwant onderzoeksmateriaal te beheren
description_ru    : Zotero - это бесплатное программное обеспечение с открытым исходным кодом для управления библиографическими данными и сопутствующими исследовательскими материалами
audit_schedule    : 
editor            : Corporation for Digital Scholarship
keywords          : 
licence           : AGPL
homepage          : https://www.zotero.org/
package_uuid      : cb313392-a167-4e06-be4f-9f51ba259de7
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://www.zotero.org/support/changelog
min_os_version    : 6.1
max_os_version    : 
icon_sha256sum    : 499ad46227d2de56044d89085ff174a347b8ccca7b2e59823cdca9eaca6090f7
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2026-01-21T23:01:46.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         : jrY80XDmy5schnrlM2IAlDougWnhvktXlPZ0rehbvgBSy/Fm0ZQC7dbi4SIu087o9blh/KQeqq1LJN6h3bh27KMovg/cID3LQsgbjVwEr6mksKgSXgSnGMhIP59H+ZftYu7+UaendWtYbxfFpSgiP/Fs8q5vOnNpZiEgP5gaaU0vgk53oJiUAOByrvB6TpGQ5WS7IppObQFtmwRLr5xMxuuj/oVAD+In0jekiE6v5KVNSlHWKNwZIchwxVbbooJp9fsw0xdn5jNVa98hB6Nik+/Ad+rVxfziUSHdfCfofjhea2NYiOk5Lu7JJQRWkms7fO8KSJnSBEG+dX3A8za5oA==

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


uninstallkey = []

# Defining variables
bin_name_sub = "Zotero-%s_setup.exe"
silent_args = "-ms"
app_uninstallkey_sub = "Zotero %s (x86 en-US)"


def install():
    # Initializing variables
    package_version = control.get_software_version()
    bin_name = bin_name_sub % package_version
    app_uninstallkey = app_uninstallkey_sub % package_version

    # Installing the package
    print("Installing: %s" % bin_name)
    install_exe_if_needed(
        bin_name,
        silentflags=silent_args,
        key=app_uninstallkey,
        min_version=package_version,
    )

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


def update_package():
    # Initializing variables
    bin_name_sub = "Zotero-%s_setup.exe"
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    app_name = control.name
    url = "https://www.zotero.org/download/"

    # Getting latest version from official sources
    print("URL used is: %s" % url)
    for bs_search in bs_find_all(url, "script", "type", "text/javascript", proxies=proxies):
        temp_str = str(bs_search)
        if "win32" in temp_str:
            dict_version = json.loads(temp_str.split(":", 1)[-1].split("\n", 1)[0].split("}")[0] + "}")
            version = dict_version["win32"]
            latest_bin = bin_name_sub % version
            url_dl = "https://www.zotero.org/download/client/dl?channel=release&platform=win32&version=%s" % version
            break

    print("Latest %s version is: %s" % (app_name, version))
    print("Download url is: %s" % url_dl)

    # Downloading latest binaries
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(url_dl, latest_bin, proxies=proxies)

    # Changing version of the package
    control.version = "%s-%s" % (version, control.version.split("-", 1)[-1])
    control.save_control_to_wapt()

    # Deleting outdated binaries
    remove_outdated_binaries(version)

01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
7f8f899646e7d88c32e3c9c35eba0023943fb4ab82b208ba5b241f07f1064653 : WAPT/control
499ad46227d2de56044d89085ff174a347b8ccca7b2e59823cdca9eaca6090f7 : WAPT/icon.png
bd95f57d7c2941d4e48dac3adeded2410a0a763a1e395a57eeea43d9090f5505 : Zotero-8.0_setup.exe
7a57c4cd373dbaf475b7774e5fdaa676dfb5ee87e264e1ed1f1f0f3340ac7ea3 : luti.json
3bfd75b5ca4b5507c53315456d6b71f6ad158f68f68061e364120c20b0976c11 : setup.py
1ed5a9f116393a2c4029be3a1b8a482856990fc913ddc1de471f3637ebe25281 : update_package.py