tis-messages-for-web icon

Messages for Web

Paquet d’installation silencieuse pour Messages for Web

1.0.3.0-1

  • package: tis-messages-for-web
  • name: Messages for Web
  • version: 1.0.3.0-1
  • maintainer: Amel FRADJ
  • licence: AGPL-3.0 license
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 2.60 Mo
  • homepage : https://github.com/asheroto/MessagesForWeb

package           : tis-messages-for-web
version           : 1.0.3.0-1
architecture      : x64
section           : base
priority          : optional
name              : Messages for Web
categories        : 
maintainer        : Amel FRADJ
description       : Google Messages for Web on Windows. Runs "Messages for web" in a native Windows application. Closes to system tray. Ctrl+Alt+M to show window
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : Google Messages pour le web sur Windows. Exécute "Messages pour le web" dans une application Windows native. Se ferme dans la barre d'état système. Ctrl+Alt+M pour afficher la fenêtre
description_pl    : Wiadomości Google dla sieci w systemie Windows. Uruchamia "Wiadomości internetowe" w natywnej aplikacji Windows. Zamyka się w zasobniku systemowym. Ctrl+Alt+M, aby wyświetlić okno
description_de    : Google Messages für Web unter Windows. Führt "Messages for web" in einer nativen Windows-Anwendung aus. Wird in der Systemablage geschlossen. Strg+Alt+M zum Anzeigen des Fensters
description_es    : Mensajes de Google para la Web en Windows. Ejecuta "Mensajes para web" en una aplicación nativa de Windows. Se cierra en la bandeja del sistema. Ctrl+Alt+M para mostrar la ventana
description_pt    : Mensagens do Google para a Web no Windows. Executa "Mensagens para a Web" numa aplicação nativa do Windows. Fecha no tabuleiro do sistema. Ctrl+Alt+M para mostrar a janela
description_it    : Google Messages for Web su Windows. Esegue "Messaggi per il Web" in un'applicazione nativa di Windows. Si chiude nella barra delle applicazioni. Ctrl+Alt+M per mostrare la finestra
description_nl    : Google Berichten voor web op Windows. Voert "Berichten voor web" uit in een native Windows-toepassing. Sluit af naar het systeemvak. Ctrl+Alt+M om venster te tonen
description_ru    : Google Messages for Web в Windows. Запускает "Сообщения для Web" в родном приложении Windows. Закрывается в системном трее. Ctrl+Alt+M для отображения окна
audit_schedule    : 
editor            : 
keywords          : 
licence           : AGPL-3.0 license
homepage          : https://github.com/asheroto/MessagesForWeb
package_uuid      : d0e43459-a9f5-4f2d-8525-1b58a71a0bd7
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 123c396dc0a2aaa475b30209d0a160bcd977f677776405fd16038609b2e05d5a
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : MV9oyqbvuQzjTDRM7ksdRpqio41iN2cBJBU0SGeE6etvik4crbBeaA/qE74uMnZY9ftoNVpc8pjl+wxImxLxkpNvSrJkfYcJWJgl6PIj38/+tlJGZuzMfeeDG2pf/od9/Z0f6fYoQ5Wgn4HgPUY+bRCqtKlRHn45ASNkMM0LGUdGK+Kbq+bvp+EGW2TFIcyW5iI80txoy/wmAG4P9Enl/TZ7OhgH8nflvWipo3kkua5dECPVNDwa891HWTPh77Jt+nOz3Tbz6Vk7ij7ns4fT5yZClQ3SRGADSzTGkVxLWU9wxzaplwoBqWf8cM7TYSj3f54qb283dPsku6J7r9SLKg==
signature_date    : 2024-07-29T09:00:59.867845
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

    # Installing the software
    print("Installing: MessagesForWeb.exe")
    install_exe_if_needed('MessagesForWeb.exe',
        silentflags='/quiet',
        key='{EBE6A15F-8648-41BA-9294-9F6A32D4579C}',
        min_version = control.get_software_version(),
            )



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


def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
  
    git_repo = "asheroto/MessagesForWeb"
    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)
    version =get_version_from_binary(filename)
    control.set_software_version(version)
    control.save_control_to_wapt()

726c4a93e7bbbb268c04ca1f5de6a0990808cda6dce0e4c40abcc997016c3067 : setup.py
13b8ff5ba65e0d724190b49ec243622e0b8a1c10cb7ea2d334fc507dc7f6a465 : update_package.py
be374bec82584103efc8427b50db1400a5870bab93669af63db3e21559f0fad8 : MessagesForWeb.exe
123c396dc0a2aaa475b30209d0a160bcd977f677776405fd16038609b2e05d5a : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
dbb35bad95e36b1b5570e28745b809328cd9abc834829455eb56f5b44fe4ac43 : luti.json
3c7152bd04bec3b1724311afcbe40ac9c67db47e98224c3d4247e394ede1b532 : WAPT/control