tis-writage icon

Writage

Silent install package for Writage

4.0-1
Internet
Internet

Preprod packages are packages built on LUTI. They remain in PREPROD usually for 5 days, after which a second VirusTotal scan is performed to verify that the status has not changed.
If the package passes this last check, it is promoted to PROD and published on the store.

  • package: tis-writage
  • name: Writage
  • version: 4.0-1
  • categories: Internet
  • maintainer: WAPT Team,Tranquil IT,Amel FRADJ
  • licence: proprietary_free,wapt_public
  • target_os: windows
  • architecture: all
  • signature_date:
  • size: 13.92 Mo
  • homepage : https://www.writage.com/

package           : tis-writage
version           : 4.0-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          : PREPROD
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      : a7c1822c-97db-4dfd-8b81-afe3cde50c60
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : af7c7ccdf993ebd485721be2cebbea58b200240dd6de89ea9f6d8d0f59362c98
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2026-01-05T00:01:09.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         : crBc79WQvQIW+3GwNb3H5mVmcm2vB1LckFNBXCruRXbo2LVa8aESdY6rIzeLAt9+K4K9q1mwC9rcTUhqSejhnP3Kwrhw+3AIcXPaUmE3geA0v8JkhK+x0HRbQ2QJxJUyMJO9SeiLqVFGYfI6dUqk825fr2YGoDd5ZzDTAOQ3BIXL1WCimAhrmtfNLhbd470iIVjg9mEnjjRi9tF4fC5sdBa7cqPHsj3BuRwdtoJBWUsYVT9HrRWdTI7OJk0B9Jk6Wg0leHtxrEqHZlRGLxdWmcNmgGEXMT3T9jNWotJRW9W8+ba8UZAY95litjPIGItKtfifJni/5IQ9xeu0dXxRVA==

# -*- 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

01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
34e9dc859cfb01139d58e5126b30368286189b0bb8978c1fa6b3445cc8398f7d : WAPT/control
af7c7ccdf993ebd485721be2cebbea58b200240dd6de89ea9f6d8d0f59362c98 : WAPT/icon.png
1ec04b1e426f201d6025218b51d440da4c9295b8b77bb267b12061c696ff60de : Writage-4.0.msi
f9f0404f21eb8f45d20c8a4e383792f4a4e10118b82cef444a9e1f998de0727b : luti.json
9b0bab57c2282629be7aceb3731fdedb07c040cd162e8d2108ba65fd7904b535 : setup.py
d46a6c2dc3891a54aede76b25f0151cbc2dc804502ec0360a9b5f94d2e695b1e : update_package.py