Writage
Paquet d’installation silencieuse pour Writage
3.4.2-1
Internet
Internet
- package: tis-writage
- name: Writage
- version: 3.4.2-1
- categories: Internet
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ
- licence: proprietary_free,wapt_public
- target_os: windows
- architecture: all
- signature_date:
- size: 7.82 Mo
- homepage : https://www.writage.com/
package : tis-writage
version : 3.4.2-1
architecture : all
section : base
priority : optional
name : Writage
categories : Internet
maintainer : WAPT Team,Tranquil IT,Amel FRADJ
description : Writage (Writage) Smart Markdown plugin for Microsoft Word
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version : 2.3
sources :
installed_size :
impacted_process :
description_fr : Writage (Writage) Smart Markdown plugin pour Microsoft Word
description_pl : Wtyczka Writage (Writage) Smart Markdown dla programu Microsoft Word
description_de : Writage (Writage) Smart Markdown Plugin für Microsoft Word
description_es : Plugin Writage (Writage) Smart Markdown para Microsoft Word
description_pt : Writage (Writage) Plugin Smart Markdown para Microsoft Word
description_it : Writage (Writage) plugin Smart Markdown per Microsoft Word
description_nl : Writage (Writage) Slimme Markdown-plugin voor Microsoft Word
description_ru : Плагин Writage (Списать) Smart Markdown для Microsoft Word
audit_schedule :
editor :
keywords : 7FDA697B-DB08-413C-A530-E0919470D3C8
licence : proprietary_free,wapt_public
homepage : https://www.writage.com/
package_uuid : e76fe12f-51ab-4e1a-b898-7958ad6c2961
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : af7c7ccdf993ebd485721be2cebbea58b200240dd6de89ea9f6d8d0f59362c98
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-10-17T17:03:20.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 : veCm84NjwzMX1IctdG9cdL0vnTP4kVLCcncvG51JO1LosxjW6PJJdgo9Pk4Suowz7ChuKGZwEGw09mkNvSPKnWXKDd48FELuIztu1C4nNFTXYxe5plVfpmKqaX9RyNhMOlkSQxCv8kM/cpf3vSx10fyMqawXUQujvmuoL/gwnhuzdMOjUo1u2Wqp+LV+IFX/5DOwNBhJJFBy4LSw44HTjz6iRcn8xi4o/VsdLsZFo6w3qHkYAnm+tUWDGkWTIiB8ia2q9f0OGNRDRINr3vzhr7at/F19yxxx6/FPHWyney/8QIqeZJk1Ytn6eFfO1yiToc2UtZse36psBHIguEBFxQ==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
{
"key":"{7FDA697B-DB08-413C-A530-E0919470D3C8}",
"name":"Writage",
"version":"2.13.2.0",
"install_date":"2024-05-16 00:00:00",
"install_location":"",
"uninstall_string":"MsiExec.exe /X{7FDA697B-DB08-413C-A530-E0919470D3C8}",
"publisher":"Writage",
"system_component":0,
"win64":false
}
"""
# 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
bin_name = glob.glob('Writage-*.msi')[0]
# Installing the software
install_msi_if_needed(bin_name)
# -*- 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 = proxies = get_proxies()
for elem in bs_find_all("https://www.writage.com/", "a", "href", proxies=proxies):
if elem.get("href").endswith(".msi"):
url_download = elem.get("href")
break
filename = url_download.split("/")[-1]
last_version = filename.split("-")[-1].split(".msi")[0]
if not isfile(filename):
package_updated = True
wget(url_download, filename, proxies=proxies)
for f in glob.glob("*.msi"):
if f != filename:
remove_file(f)
control.set_software_version(last_version)
control.save_control_to_wapt()
return package_updated
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
78c957e6679f04a96e7a7e8475345df7b96ac5fd061b7b772825a762529f6f0f : WAPT/control
af7c7ccdf993ebd485721be2cebbea58b200240dd6de89ea9f6d8d0f59362c98 : WAPT/icon.png
a1456273f65e4b673b17f15794b8f6b1c3f748d60349b664b329623bf84cfa0b : Writage-3.4.2.msi
ee1c6f56168a1813feac9fca11b852318f228e4622b07537ed49ea8e651db31f : luti.json
9b0bab57c2282629be7aceb3731fdedb07c040cd162e8d2108ba65fd7904b535 : setup.py
d46a6c2dc3891a54aede76b25f0151cbc2dc804502ec0360a9b5f94d2e695b1e : update_package.py