tis-writage
3.3.1-1
Writage (Writage) Smart Markdown plugin for Microsoft Word
664 downloads
Download
See build result See VirusTotal scan

- package : tis-writage
- name : Writage
- version : 3.3.1-1
- categories : Internet
- maintainer : WAPT Team,Tranquil IT,Amel FRADJ
- editor :
- licence : proprietary_free,wapt_public
- locale :
- target_os : windows
- impacted_process :
- architecture : all
- signature_date : 2025-01-01 01:06
- size : 7.49 Mo
- homepage : https://www.writage.com/
package : tis-writage
version : 3.3.1-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 : afb2ad2e-0d72-4c37-94c3-3259f5b372c2
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-01-01T01:06:18.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 : on2eeubLGyTXzYNIesybBZySjj/Wx8wiZyoYXAOUpVLxiKBpNWddWjE7Ql6O//UDt1JzzGJ98wq/KFCNpO0NqSBcNAO7aRuw8FNvLSZ6sUScnZCUUMNLv3TbE/jHIbc/9VNa1/Ir4t6BOJV5HFBnTuhntNC7ITnOTA9M05CIw+kDCu8QvpP+lSLGGa+ZXu5nff+uuHIf667N1vx63xUZyv2uqBAZy/lCdhnnS8P117hSVLktINt2YOAJA/H2rtFX8tq0eh3c1SSOwC11CyCbWlqHrHxi6qS9/Ff8zZBl93WTNOvTPQEvhxZcl5AFTiAXgp5sIZv+OWSc4FS87ow79A==
# -*- 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
404f5075f686ab398ffa86fd2cf2dcddc1b36d21fe90fbd0f54f5b94e4f38e59 : WAPT/control
af7c7ccdf993ebd485721be2cebbea58b200240dd6de89ea9f6d8d0f59362c98 : WAPT/icon.png
524de42e5cd327850b6ecfe60aacbba8633f0d68e34d5978b18006da3a737a11 : Writage-3.3.1.msi
ca6823dbeb1d722356b8ee79f642ef565ad35633729bdd06c09391bd3ebd359a : luti.json
9b0bab57c2282629be7aceb3731fdedb07c040cd162e8d2108ba65fd7904b535 : setup.py
d46a6c2dc3891a54aede76b25f0151cbc2dc804502ec0360a9b5f94d2e695b1e : update_package.py