Zotero
Paquet d’installation silencieuse pour Zotero
9.0-14
Utilities
Utilities
- package: tis-zotero
- name: Zotero
- version: 9.0-14
- 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: 91.13 Mo
- installed_size: 116.42 Mo
- homepage : https://www.zotero.org/
package : tis-zotero
version : 9.0-14
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 : PROD
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 : ea883a59-0e42-4a44-9e22-080c568d62b2
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 : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-04-18T08:40:53.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 : UmHRy+srA5yEFN5N2A30jz05XTgXh5awMwIKls7gQ4kJWpl93kSNL9JH1uuN7pSeoHWwGouzmxm6S81OFc1yg9IR39ew5y/VvAKJdrMkbpe3VCJcQisTDI7FoGvado8qYVBQvovoTfBXfjzMYHV3PEz14vlwVHJ8FeelLikRpYsPZymFs5SuBdN8br9OZZdWVczPaSMyrr5Z/rC9l/RWyg5SEpy/GUj7QDnKCQREvC76LMOqxhqro70P3wivsd5P+X21aqGNi8D/O2F7rovygQP5G/AINKR8U+0CUR7ROGYc22Xjz+/f45Wu8G8ZpD+SCHioRsYBen8Ksv5pktP6Mg==
# -*- 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
install_exe_if_needed(
bin_name,
silentflags=silent_args,
key=app_uninstallkey,
min_version=package_version,
)
# Disable Zotero auto update
profiles_path = makepath(user_appdata, "Zotero", "Zotero", "Profiles", "*")
for profile in glob.glob(profiles_path):
if not os.path.isdir(profile):
continue
user_js = os.path.join(profile, "user.js")
if os.path.exists(user_js):
print(f"SKIP (existe déjà): {user_js}")
continue
content = 'user_pref("app.update.auto", false);\n'
try:
with open(user_js, "w", encoding="utf-8") as f:
f.write(content)
print(f"CREATED: {user_js}")
except Exception as e:
print(f"ERROR: {user_js} -> {e}")
# -*- 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)
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
9e5f70ebbe9cae88779cf7e0eca95902f0dbbb81d8780dace557c71a0fc01767 : WAPT/control
499ad46227d2de56044d89085ff174a347b8ccca7b2e59823cdca9eaca6090f7 : WAPT/icon.png
dddb69bef32a3a52e310ef50090860977a468fff92530597509bcb0f35ec5693 : Zotero-9.0_setup.exe
f3a7395fdb96dba768b95a9c51296c8deb61168f8d3d645a0b9eb0cb5f118ff5 : luti.json
bf44e0a52ef471ae998b743d73aead88cbe4fc1317af5dbd73919c6936cc9bed : setup.py
1ed5a9f116393a2c4029be3a1b8a482856990fc913ddc1de471f3637ebe25281 : update_package.py