- package: tis-jami
- name: Jami
- version: 1.0.9334.32964-1
- categories: Messaging
- maintainer: WAPT Team,Tranquil IT,
- licence: opensource_free,wapt_public
- target_os: windows
- architecture: x64
- signature_date:
- size: 133.39 Mo
package : tis-jami
version : 1.0.9334.32964-1
architecture : x64
section : base
priority : optional
name : Jami
categories : Messaging
maintainer : WAPT Team,Tranquil IT,
description : Jami is an open-source, end-to-end encrypted, private communications software
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version : 2.3
sources :
installed_size :
impacted_process :
description_fr : Jami est un logiciel de communication libre, chiffré de bout en bout et privé
description_pl : Jami to darmowe oprogramowanie do szyfrowanej i prywatnej komunikacji typu end-to-end
description_de : Jami ist eine freie, Ende-zu-Ende-verschlüsselte und private Kommunikationssoftware
description_es : Jami es un programa gratuito de comunicaciones cifradas y privadas de extremo a extremo
description_pt : Jami é um software gratuito de comunicações privadas e encriptadas de ponta a ponta
description_it : Jami è un software gratuito per comunicazioni private e crittografate end-to-end
description_nl : Jami is gratis, end-to-end versleutelde en private communicatiesoftware
description_ru : Jami - это бесплатное программное обеспечение для частных коммуникаций со сквозным шифрованием
audit_schedule :
editor :
keywords :
licence : opensource_free,wapt_public
homepage :
package_uuid : ae0980b4-0f29-4024-8047-ad1c0cefca2c
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 20f6bfe30ba82e4e6e0b35a0c55ad90179dfabe099edfe629237da3cc99f93d8
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-07-27T19:03:06.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 : t5bLj7gvNcQ+ldUV25pY4pT1DCrHTpoljYcmyfH38wBi1OEWco1b0pDGfqhg8VRvmQD3ZyiexxwPZe55T5ZUEr8v5QR69hkDt6W7DUcbLmH+Swh+lxcIIGRqxDOa1zLBkHOVA2l0/eGpriBdfAbhTgow+bj2zZT+QCCr+f9kff4eVLk5SPSOtW+5y3m9jK5ubHMU8Wll18cTcxc9b3C9jLd+4KQGs0m2x9neFV6jN0O7KUvJjQ8bf0RIZfGkTm4zPB8lYmz2mP9bhHUi2akt6ehpmAE7er29YxH+ClPnyae4uyY/6OV7eNN+NUWzptaXEq5M8yUMfShzY4Btzn7EHg==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def install():
# Declaring local variables
# Installing the software
install_msi_if_needed('jami.release.x64.msi')
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import glob
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
download_url = "https://dl.jami.net/windows/jami.release.x64.msi"
latest_bin = download_url.split("/")[-1]
# Downloading latest binaries
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
package_updated = True
else:
print("Binary is present: %s" % latest_bin)
# Deleting outdated binaries
for f in glob.glob('*.exe'):
if f != latest_bin:
remove_file(f)
version = get_version_from_binary(latest_bin)
# Mettre à jour le package
control.set_software_version(version)
control.save_control_to_wapt()
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
81bd19249ccf56b398376ad7338d78817a414ed4d6fc4ae8d7deb77aa37bd5e8 : WAPT/control
20f6bfe30ba82e4e6e0b35a0c55ad90179dfabe099edfe629237da3cc99f93d8 : WAPT/icon.png
dfed31f9a1db183d12ab9779d9d96ea0a453180adaf049f09a774ff91a7666b8 : jami.release.x64.msi
5f568b0ecd1702c046d5f8befaed9d46c3ac82d4601b1cd976613367508828c5 : luti.json
9779c2494d6ed2b1d6b9ed6da1b2d1c6c510be356ff4f103843b48edbeaa68c9 : setup.py
0258c2d947e5cd178e807721eb770b953489ef6d812d241df86ed8e5d6d94889 : update_package.py