tis-google-chat-electron icon

Google Chat Electron

Paquet d’installation silencieuse pour Google Chat Electron

2.20.0-1

  • package: tis-google-chat-electron
  • name: Google Chat Electron
  • version: 2.20.0-1
  • maintainer: Amel FRADJ
  • licence: GPL-3.0 license
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 71.64 Mo
  • homepage : https://github.com/ankurk91/google-chat-electron

package           : tis-google-chat-electron
version           : 2.20.0-1
architecture      : x64
section           : base
priority          : optional
name              : Google Chat Electron
categories        : 
maintainer        : Amel FRADJ
description       : An unofficial desktop application for Google Chat created with Electron
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : Une application de bureau non officielle pour Google Chat créée avec Electron
description_pl    : Nieoficjalna aplikacja desktopowa dla Google Chat stworzona za pomocą Electron
description_de    : Eine inoffizielle Desktop-Anwendung für Google Chat, die mit Electron erstellt wurde
description_es    : Una aplicación de escritorio no oficial para Google Chat creada con Electron
description_pt    : Uma aplicação de ambiente de trabalho não oficial para o Google Chat criada com o Electron
description_it    : Un'applicazione desktop non ufficiale per Google Chat, creata con Electron
description_nl    : Een onofficiële desktopapplicatie voor Google Chat gemaakt met Electron
description_ru    : Неофициальное настольное приложение для Google Chat, созданное с помощью Electron
audit_schedule    : 
editor            : 
keywords          : 
licence           : GPL-3.0 license
homepage          : https://github.com/ankurk91/google-chat-electron
package_uuid      : 71213ce4-332e-4861-9984-8cf1c1bafdec
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 694e268d07307e02914f9a2961b40c95231f2991c69d7267cb98a04f89b59cdb
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : SoyFPxDNPn4K19cldb+sEGBvjrA9sDfTycjGRfHUiYJU9TaDu57VrLy0225apxoiv1PmgQsU2JI2WcLQo0Z7Ak6v3/SfWOqSRdRUDzEw+gS9j416/waYfAP+6vHdy54MApQol7f+pCeYilzOkClNKjMcTonl+n/5sDen5HSAYF9xlxicPvp4LDdZ9KNNBVzHQ/5zKExALz1CXvaboMYRmgXTxYz+wF9vCDcaXTeWGOE8V+0NXVz2qT0aTDOz4xhb6dmFZEFFbAMnq1NbK+rKb4MjXfjNJYOy0OzFFDy5g1sGcD545750SCvHTL3xfN/rHF5kUKhYUuaPuZrmSUNhLA==
signature_date    : 2024-07-23T12:01:47.898230
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('google-chat-electron-setup-win-x64-*.exe')[0]
    # Installing the software
    
    install_exe_if_needed(bin_name,
        silentflags='/VERYSILENT',
        key='{E458AEFA-2577-4543-8554-F6335BC2D994}_is1',
        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 = "ankurk91/google-chat-electron"
    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"]
            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()

a798944e5d76925fac845f058a9047e8a2166c5a865663d536368f6948212019 : setup.py
952143d28f04ee1a6997faeabf804fd3b1644e71481dbbcb96913879c06404e7 : update_package.py
afd2d3a3a4d3f454e2e1cc7eca69762f456f2f1768cf775e12306c8c21588161 : google-chat-electron-setup-win-x64-2.20.0.exe
694e268d07307e02914f9a2961b40c95231f2991c69d7267cb98a04f89b59cdb : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
eb6f6a39f9021ad37b79583aae5582bb33e8e09e9ca8850d378be777d15731b0 : luti.json
023d1984265a573015081f236927b526a1f3bb8480fffcca69d3d17de593662f : WAPT/control