tis-wewechat icon

wewechat

Paquet d’installation silencieuse pour wewechat

1.1.7-1

  • package: tis-wewechat
  • name: wewechat
  • version: 1.1.7-1
  • maintainer: Amel FRADJ
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 75.81 Mo

package           : tis-wewechat
version           : 1.1.7-1
architecture      : x64
section           : base
priority          : optional
name              : wewechat
categories        : 
maintainer        : Amel FRADJ
description       : wewechatUnofficial WeChat client built with React, MobX and Electron
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : wewechatUn client WeChat officiel construit avec React, MobX et Electron
description_pl    : wewechatNieoficjalny klient WeChat zbudowany przy użyciu React, MobX i Electron
description_de    : wewechatUnoffizieller WeChat-Client, gebaut mit React, MobX und Electron
description_es    : wewechatCliente WeChat no oficial construido con React, MobX y Electron
description_pt    : wewechatCliente WeChat não oficial construído com React, MobX e Electron
description_it    : wewechatCliente WeChat non ufficiale realizzato con React, MobX ed Electron
description_nl    : wewechatUnofficiële WeChat-client gebouwd met React, MobX en Electron
description_ru    : wewechatНеофициальный клиент WeChat, созданный с помощью React, MobX и Electron
audit_schedule    : 
editor            : 
keywords          : 
licence           : 
homepage          : 
package_uuid      : 68612180-c062-479b-81ed-9b1546a81b11
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 229a4c9e8c4afdb44ba3e50f8bc297b9fc5a8248b40425c31a02e147bbac7121
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : rjF/6XK0dpgU29mF+C5L8yYrPvHPWaGy4dAD51ibEaIwDMuC6TEzNbWBux2y58Zao4sSYdVEa+r6Oc8idCHRpGdigBfNt5kc31rqMQUqyCfZ9U61ydkNQ6K2tEL9I6JA+u4IhidATXAfQOpPu3vDAxEWiLhUYfaWWxFHYeGtf82cNCQgwIAuWjae66NvY0TlA4jBmGm143hu4RDthkB5+elhHUnKoeLd4v+J5PkfbxVo7qfbRzHB1OLj/adB+hPEMsDixpP00/SQFuz/ypMbwXeZwgnwLHnqjCSL/ShXiiXBYxQXl/vco/b4I0QMHt5sQHRRHzEb8JB7MhGegwcr9g==
signature_date    : 2024-06-29T15:01:09.014885
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

# -*- 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
    bin_name = glob.glob('wewechat-1.1.7-win-setup.exe')[0]
    # Installing the software
    
    install_exe_if_needed(bin_name,
        silentflags='/verysilent /allusers  /NORESTART /S',
        key='e571156e-a4b5-5807-b2ef-0ba08f935049',
        min_version=control.get_software_version(),
    )



# -*- coding: utf-8 -*-
from setuphelpers import *
import re
import zipfile


def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    
    git_repo = "trazyn/weweChat"
    url_api = "https://api.github.com/repos/%s/releases/latest" % git_repo
    # Getting latest version information from official sources
    print("API used is: %s" % url_api)
    json_load = json.loads(wgets(url_api, proxies=proxies))

    for download in json_load["assets"]:
        if download["browser_download_url"].endswith(".exe")  :
            url_dl = download["browser_download_url"]
            version = json_load["tag_name"].replace("v","")
            filename = download["name"]
            break

    if not isfile(filename):
        package_updated = True
        wget(url_dl,filename,proxies=proxies)

    #nettoyer les fichiers temporaires
    for f in glob.glob('*.exe'):
        if f != filename:
            remove_file(f)
    
    control.set_software_version(version)
    control.save_control_to_wapt()

cc93f782075312491ffc5f6b4abdb3460110f13ccdb5cfa4bc83350fd275c932 : setup.py
6613b3d1a5aa02f991868195a2534fb03385ffd66546b945857139375743a7f0 : update_package.py
229a4c9e8c4afdb44ba3e50f8bc297b9fc5a8248b40425c31a02e147bbac7121 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
12238f7c1cf44c34e2c24441c70023dea7aea048bc48c50af953d687b0e304ed : luti.json
95a5a4fe860ff625785392e8af9d3029221ffbfa13c96ea8b16286ccfc2afe5d : wewechat-1.1.7-win-setup.exe
8b1f09879c759b2bb9b53a95dc2b0fd47009022e9162d159bca76e6fa5f8a6cb : WAPT/control