- package: tis-typora
- name: Typora
- version: 1.11.4-1
- categories: Office
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ
- licence: proprietary_restricted,wapt_private
- target_os: windows
- architecture: x64
- signature_date:
- size: 97.28 Mo
- homepage : https://typora.io/
package : tis-typora
version : 1.11.4-1
architecture : x64
section : base
priority : optional
name : Typora
categories : Office
maintainer : WAPT Team,Tranquil IT,Amel FRADJ
description : Typora offers you a seamless experience as a reader and writer
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version : 2.3
sources :
installed_size :
impacted_process :
description_fr : Typora vous offre une expérience fluide en tant que lecteur et rédacteur
description_pl : Typora zapewnia płynne doświadczenie jako czytelnik i pisarz
description_de : Typora bietet Ihnen eine reibungslose Erfahrung als Leser und Schreiber
description_es : Typora te ofrece una experiencia fluida como lector y escritor
description_pt : O Typora proporciona-lhe uma experiência perfeita como leitor e escritor
description_it : Typora vi offre un'esperienza di lettura e scrittura senza soluzione di continuità
description_nl : Typora geeft je een naadloze ervaring als lezer en schrijver
description_ru : Typora дает вам возможность без проблем читать и писать
audit_schedule :
editor :
keywords :
licence : proprietary_restricted,wapt_private
homepage : https://typora.io/
package_uuid : e368a7ec-8695-4b98-a317-af1f0e9006ae
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10.0
max_os_version :
icon_sha256sum : ef4458f4a02b0d7c677f7b520fae2cb9c6056acceed3f8aebc1acce34fbb82f2
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-08-26T15:00:16.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 : ukbn5rC7RheWXDvP8e2aIUO0A5kUFlzKO4RTiUwTTjftnOHDQLqiqbwsFl2rstDi3KiGkJAWS1UDz+vPGw8wgtHVHFcj84p5AQC6zpgxBIdVz3aNLpUbmrg541sfPkgi/HQpfsTslVFWcAFEPSj30hGqaspxH0WC7LkW5NuBZCM0gkNHkAfle8EotIID9XwKx9byQkvNlmzdYX/KEKGePHE75xqK+T5Fa78zNc07H4kdg/5/ywz4IVhVXqL2AuK9mGV2gdsoM8Ov50Ou0uBfyH+zZM9ZPhHDVna5PdLvydvOQelmr+xSBAbQNjEkMSWAo6RzwkQGkAN/BQNMJiidAQ==
# -*- 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
# Uninstalling older version of the software that can remains
for to_uninstall in installed_softwares("{37771A20-7167-44C0-B322-FD3E54C56156}_is1"):
if Version(to_uninstall["version"]) < Version(control.get_software_version()):
print(f"Removing: {to_uninstall['name']} ({to_uninstall['version']})")
killalltasks(ensure_list(control.impacted_process))
run(uninstall_cmd(to_uninstall["key"]))
wait_uninstallkey_absent(to_uninstall["key"])
# Installing the software
install_exe_if_needed('typora-setup-x64.exe',
silentflags='/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-',
key='{37771A20-7167-44C0-B322-FD3E54C56156}_is1',
min_version=control.get_software_version(),
)
# -*- 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://download.typora.io/windows/typora-setup-x64.exe"
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
9bcfa14faa027e443aca943e0043b1804d92ca61a3c6893ef5a820b809e89235 : WAPT/control
ef4458f4a02b0d7c677f7b520fae2cb9c6056acceed3f8aebc1acce34fbb82f2 : WAPT/icon.png
69568ee42b2b7f442623c8c227aa4505c4beea66571d37f982539912484defce : luti.json
30b7cbaa67c89e3024a3f3baeebaccf2d229a02286ae9f0908a989e04577aaad : setup.py
339f3059ece999cda41f7d8d3c880c9a0dd1033f6102efaf10195ea36ca610d4 : typora-setup-x64.exe
031b92584a022bb0a4d9593d5c21eb0d19ff693b4e09c0e28cc4fb6b08525b57 : update_package.py