Zed
Paquet d'installation silencieuse pour Zed
1.2.6-0
Utilities
Utilities
- package: tis-zed
- name: Zed
- version: 1.2.6-0
- categories: utilities
- maintainer: WAPT Team,Tranquil IT,Gwenaël ADAM
- licence: GNU AFFERO GENERAL PUBLIC LICENSE v3
- target_os: darwin
- architecture: arm
- signature_date:
- size: 132.33 Mo
- homepage : https://zed.dev/
package : tis-zed
version : 1.2.6-0
architecture : arm
section : base
priority : optional
name : Zed
categories : utilities
maintainer : WAPT Team,Tranquil IT,Gwenaël ADAM
description : Zed is a minimal code editor crafted for speed and collaboration with humans and AI.
depends :
conflicts :
maturity : PROD
locale :
target_os : darwin
min_wapt_version :
sources :
installed_size :
impacted_process :
description_fr : Zed est un éditeur de code minimaliste conçu pour la rapidité et la collaboration avec les humains et l'IA.
description_pl : Zed to minimalistyczny edytor kodu stworzony z myślą o szybkości i współpracy z ludźmi i sztuczną inteligencją.
description_de : Zed ist ein minimalistischer Code-Editor, der auf Geschwindigkeit und Zusammenarbeit mit Menschen und KI ausgelegt ist.
description_es : Zed es un editor de código minimalista diseñado para la velocidad y la colaboración entre humanos e inteligencia artificial.
description_pt : Zed é um editor de código minimalista criado para velocidade e colaboração com humanos e IA.
description_it : Zed è un editor di codice minimale, progettato per la velocità e la collaborazione tra esseri umani e intelligenza artificiale.
description_nl : Zed is een minimalistische code-editor, ontworpen voor snelheid en samenwerking tussen mensen en AI.
description_ru : Zed — это минималистичный редактор кода, созданный для быстрой работы и совместной работы как с людьми, так и с искусственным интеллектом.
audit_schedule :
editor :
keywords :
licence : GNU AFFERO GENERAL PUBLIC LICENSE v3
homepage : https://zed.dev/
package_uuid : dd30f7af-1b60-45a8-9e86-5b7b2d9667ec
valid_from :
valid_until :
forced_install_on :
changelog : https://github.com/zed-industries/zed/releases
min_os_version : 10.15
max_os_version :
icon_sha256sum : 25bf03913a1e119578e08cc4322f507027b88157431abdc591f37f0fd183f66c
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-05-24T17:07:40.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 : fmkimh0OcjLM6fuI/t1nBf6kK9eeMWTF6gFPEumcIQE3Zh32VqkFiebeO8pu61ogDORZplDOkx0yRESHOQRPkQP4DmZSipizHyGOdHjtRWouod93DSiwGtH20qln6zIn5ZtuBYTBYNCRCdPXvKM2JnCLqqwlthSSTyVQ/XnFQxMGabf+Yo9Nj0KUXc44gggSmRNzTC2pVAIB/DhHXXK9ILrX3/CgNX9xPdCicQZPue2uTdlVLfX7AYpqq39yd5SQ3P0u7ikgeM/ABoXM6N6lnbjOQLKU4TD9/LgwMq6eiiUDJ+JkupUanIFSdr77OH3UYCDZGw+dTHQpKivIBMA37A==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
# Declare local variables
binary = glob.glob("Zed*")[0]
min_version = control.version
# Install the software
install_dmg(binary)
def uninstall():
uninstall_app("Zed")
# -*- 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()
update_dict = {
"arm" : "aarch64",
"x64" : "x86_64"
}
git_repo = "zed-industries/zed"
url_api = "https://api.github.com/repos/%s/releases/latest" % git_repo
# Getting latest version information from official sources
print("API used is: %s" % url_api)
json_load = json.loads(wgets(url_api, proxies=proxies))
for download in json_load["assets"]:
if download["browser_download_url"].endswith(".dmg") and update_dict[control.architecture] in download["browser_download_url"] :
url_dl = download["browser_download_url"]
version = json_load["tag_name"].replace("v","")
filename = download["name"]
break
if not isfile(filename):
package_updated = True
wget(url_dl, filename, proxies=proxies)
# nettoyer les fichiers temporaires
for f in glob.glob("*.exe"):
if f != filename:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
3d527bf05192b2fd7ed949760b9fd10addf9b93de117f2a9f7c1d2db6b649556 : WAPT/control
25bf03913a1e119578e08cc4322f507027b88157431abdc591f37f0fd183f66c : WAPT/icon.png
5ac1db19322a0285954f4cd5dcff7d461a3b19afd2b91df10ef255e9d2b967ad : Zed-aarch64.dmg
e01f273e97d93e4736c711218374cb84c79162822761abd48932e2d9a40bf760 : luti.json
cca7478dc7d3d9969ddd96902334decf01381ad766425006ebe4039852acfc10 : setup.py
3f5bd5f4e5bd992cf25deeafcf1714aa712ef7ae4fe0f51eb44613e7b8566ab5 : update_package.py