Messages for Web
Silent install package for Messages for Web
1.0.4.0-1
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-messages-for-web
- name: Messages for Web
- version: 1.0.4.0-1
- maintainer: Amel FRADJ
- licence: AGPL-3.0 license
- target_os: windows
- architecture: x64
- signature_date:
- size: 3.02 Mo
- homepage : https://github.com/asheroto/MessagesForWeb
package : tis-messages-for-web
version : 1.0.4.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 : PREPROD
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 : b0b427f3-3e1f-45e9-9b5b-36a444c8ae20
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10.0
max_os_version :
icon_sha256sum : 123c396dc0a2aaa475b30209d0a160bcd977f677776405fd16038609b2e05d5a
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2026-01-26T10:11: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 : ebNkOp9cf7V0S2ZL+4IIk2MFSZlAi6RHJuIz8mcZJAMd9hip+uYYY++Vef0o6fdCGofMTsg3430MjZOiqJXVittxMNJ7zj60UWlIyZqrAhRAGmjP0IglhEEidMoIXcoNO7xgS0iW1j3tcBasaxpGfu1GGbuabKTdP1ISFNvimdQNLIxBxuo4uxX2pd4BE0SgFGaC7xt/U5M87kLDV/XliX9WQNUokd3tarz6g1kJB7UwLIB+D7yBTwZnTBT4e2lSm3QAQHQFHG33IYVmg3tuifDa+73sox3IZeaQvN65KApiyxBfzrJUghTzTA2Ly8iw46rtBTLB4SsO9yS3hWDiPA==
# -*- 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',
name='Messages for Web',
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()
bbe771b74ede62bb0e119a4949a698ec6e92377f4419b5f9f51521d8c9e23f8d : MessagesForWeb.exe
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
f6faabae109267ee90478f3c3864a5c55b7afe82efc4120d4e3dd0a41cf99678 : WAPT/control
123c396dc0a2aaa475b30209d0a160bcd977f677776405fd16038609b2e05d5a : WAPT/icon.png
c347ae8fd1248656d020e5f9e4fb97f6484346ecca953cb7301db6397f185d46 : luti.json
0d22d187f487a5c872831ef7acb343ddb64a5ad6a48c6ac35b6d7fac66666557 : setup.py
13b8ff5ba65e0d724190b49ec243622e0b8a1c10cb7ea2d334fc507dc7f6a465 : update_package.py