Siyuan
Paquet d’installation silencieuse pour Siyuan
3.5.9-1
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-siyuan
- name: Siyuan
- version: 3.5.9-1
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ,Jordan ARNAUD
- editor: Yunnan Liandi Technology Co., Ltd.
- licence: opensource_free,cpe:/a:gnu:gpl_v3,wapt_private
- locale: all
- target_os: darwin
- impacted_process: SiYuan
- architecture: x64
- signature_date:
- size: 192.33 Mo
- installed_size: 412.59 Mo
- homepage : https://github.com/siyuan-note/siyuan/
package : tis-siyuan
version : 3.5.9-1
architecture : x64
section : base
priority : optional
name : Siyuan
categories : Utilities
maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ,Jordan ARNAUD
description : SiYuan is a privacy-friendly personal knowledge management system that supports fine block-level references and the Markdown WYSIWYG format
depends :
conflicts :
maturity : PREPROD
locale : all
target_os : darwin
min_wapt_version : 2.3
sources :
installed_size : 412587001
impacted_process : SiYuan
description_fr : SiYuan est un système de gestion des connaissances personnelles respectueux de la vie privée, qui prend en charge des références fines au niveau des blocs et le format Markdown WYSIWYG
description_pl : SiYuan to przyjazny dla prywatności osobisty system zarządzania wiedzą, który obsługuje odniesienia na poziomie drobnych bloków i format Markdown WYSIWYG
description_de : SiYuan ist ein datenschutzfreundliches System zur Verwaltung persönlichen Wissens, das Feinverweise auf Blockebene und das Markdown-Format WYSIWYG unterstützt
description_es : SiYuan es un sistema de gestión del conocimiento personal respetuoso con la privacidad que admite referencias finas a nivel de bloque y formato Markdown WYSIWYG
description_pt : O SiYuan é um sistema de gestão do conhecimento pessoal que respeita a privacidade e que suporta referências finas ao nível do bloco e o formato Markdown WYSIWYG
description_it : SiYuan è un sistema di gestione della conoscenza personale rispettoso della privacy che supporta riferimenti a livello di blocco e il formato Markdown WYSIWYG
description_nl : SiYuan is een privacyvriendelijk persoonlijk kennisbeheersysteem dat verwijzingen op blokniveau en een Markdown WYSIWYG-indeling ondersteunt
description_ru : SiYuan - это удобная система управления персональными знаниями, поддерживающая мелкие ссылки на уровне блоков и формат Markdown WYSIWYG
audit_schedule :
editor : Yunnan Liandi Technology Co., Ltd.
keywords :
licence : opensource_free,cpe:/a:gnu:gpl_v3,wapt_private
homepage : https://github.com/siyuan-note/siyuan/
package_uuid : 4603bb9d-5d7f-4c0c-ba07-d2de78fb15f4
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 6709fce7f3882d0ebdccc0506ab275104ead4da81f127dd4d599f20f6457a9fc
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2026-03-04T11:03:08.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 : McXcoqzh7kMaC//LWu1wgGH4SzGL/1mH1EFbIiA7ZhWd3MAtQqkrmeHCYM8yhTMjtkzyrt4smMIKEKVeVYbbH8uFodPpKr9DkZGs3y8RIiDiWik6eK/9JKAf/tUmgUC17HQu79l/SsWN9S+Wy9kqk0ut4yESD1zsliS6BX6ceqIZX3ikZKn8fq4L+IBWzFKQ6TJDHrD6l+cCADU9Luum97+CybgafXLmsLjtFiBNuHl0Dm3BEIbwV9xcFHEcYHBHEIhvZMMnKhR9AFw4+r20nsduH4Mwbr0XWG0ffA6/S+TL+gM4u6sAqXlKjBx7rUWfgJePAfiRtxcbd3N4i9sypA==
# -*- 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("siyuan-*.dmg")[0])
def uninstall():
remove_tree("/Applications/siyuan.app")
# -*- coding: utf-8 -*-
##################################################
# This file is part of WAPT Enterprise
# All right reserved, (c) Tranquil IT Systems 2024
# For more information please refer to
# https://wapt.tranquil.it/store/licences.html
##################################################
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://api.github.com/repos/siyuan-note/siyuan/releases/latest"
latest_release = wgets(api_url, proxies=proxies, as_json=True)
version = latest_release['tag_name'].replace('v', '')
download_dict = {
'darwin-x64': f'siyuan-{version}-mac.dmg',
'darwin-arm': f'siyuan-{version}-mac-arm64.dmg',
}
os_type = control.target_os + "-" + ensure_list(control.architecture)[0]
for asset in latest_release["assets"]:
if asset["name"] == download_dict[os_type]:
download_url = asset["browser_download_url"]
latest_bin = asset["name"]
latest_bin_extension = latest_bin.rsplit(".", 1)[-1]
break
# Downloading latest binaries
print(f"Latest {app_name} version is: {version}")
print(f"Download URL is: {download_url}")
if not isfile(latest_bin):
print(f"Downloading: {latest_bin}")
wget(download_url, latest_bin, proxies=proxies)
else:
print(f"Binary is present: {latest_bin}")
# Changing version of the package
if Version(version) > Version(control.get_software_version()):
print(f"Software version updated (from: {control.get_software_version()} to: {Version(version)})")
package_updated = True
else:
print(f"Software version up-to-date ({Version(version)})")
for f in glob.glob(f'*.{latest_bin_extension}'):
if f != latest_bin:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
return package_updated
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
e9268ed0166ad0f53ca650d5f997a04291da6ff143281e5d2923ff2a0d24fda8 : WAPT/control
6709fce7f3882d0ebdccc0506ab275104ead4da81f127dd4d599f20f6457a9fc : WAPT/icon.png
6d0c2458adfa7b12cce36d6e844134eabc2928edb0f96fa683bee04f259e6e62 : luti.json
62d7581ff8ae580a7dfe727576558cf747e8a938e9874566127a774660689912 : setup.py
d3e107c65f0d0c320577b74e4c71a07a3fd69e868be996b32152d2276c717e30 : siyuan-3.5.9-mac.dmg
5dffbf6c71e09f482173c8ca5e31a6733705179d40f8ed224576b24be285c565 : update_package.py