tis-bisq icon

Bisq

Paquet d'installation silencieuse pour Bisq

1.10.1.0-1

Les paquets PREPROD sont des paquets construits via LUTI. Ils restent généralement 5 jours en PREPROD, après quoi un deuxième scan VirusTotal est effectué pour vérifier que le status n'a pas changé.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.

  • package: tis-bisq
  • name: Bisq
  • version: 1.10.1.0-1
  • maintainer: Administrator
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 462.69 Mo

package           : tis-bisq
version           : 1.10.1.0-1
architecture      : x64
section           : base
priority          : optional
name              : Bisq
categories        : 
maintainer        : Administrator
description       : Decentralized bitcoin trading network: trade bitcoin for fiat or other cryptocurrencies
depends           : 
conflicts         : 
maturity          : PREPROD
locale            : 
target_os         : windows
min_wapt_version  : 
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : Réseau décentralisé d'échange de bitcoins : échangez des bitcoins contre des devises fiduciaires ou d'autres crypto-monnaies
description_pl    : Zdecentralizowana sieć handlu bitcoinami: wymiana bitcoinów na fiat lub inne kryptowaluty
description_de    : Dezentrales Bitcoin-Handelsnetzwerk: Tauschen Sie Bitcoin gegen Fiat oder andere Kryptowährungen
description_es    : Red descentralizada de intercambio de bitcoins: intercambia bitcoins por dinero fiduciario u otras criptomonedas
description_pt    : Rede de negociação descentralizada de bitcoin: troque bitcoin por moeda fiduciária ou outras criptomoedas
description_it    : Rete di scambio di bitcoin decentralizzata: scambio di bitcoin con valute fiat o altre criptovalute
description_nl    : Gedecentraliseerd bitcoin-handelsnetwerk: ruil bitcoin voor fiat of andere cryptocurrencies
description_ru    : Децентрализованная торговая сеть биткоина: обменивайте биткоин на фиат или другие криптовалюты
audit_schedule    : 
editor            : 
keywords          : 
licence           : 
homepage          : 
package_uuid      : 11ddd572-354c-4268-9931-b57093794d42
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 10.0
max_os_version    : 
icon_sha256sum    : b004a39fe0535cfadb402ba501c8de17c3a0f91f6f7ce1aa7ccd5c760283f1f4
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2026-05-30T04:31:18.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         : rA2HiTK/we+fjtZ5lGTX+5P1fOelaaemqM7PMsQeQn/N7yeynY44bMPi5SkXjf72yCps/bi/lVNfp0MUg0lnnFaoapPuctX4wSQPhP+Ew9XAeivzhmWtWcg5LnMvWRSiZBnzc5TJYABTQfwqAyZtMX+XuuJAbQ8KDNeiG0/n5LkSYip5CX8GJjDs/YjJnvEak0ulWdTJiWB76nOmaTPNmqIpUVS5zEXgRlHuUmWb3teDdrPPDC/6kZxouP0ppIo4zu0yoghDR7GzHfyfM/bxeVimTbBdg0WzCiSJehpwDk43N6rJeFFl8B85ydDMfLVQpBXUB1h3Grp/YKS/5nN88g==

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

r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
 {
   "key":"{3E523521-53D7-31A8-85CC-B2BE2D6BA5FC}",
   "name":"Bisq",
   "version":"1.9.17",
   "install_date":"2024-06-24 00:00:00",
   "install_location":"C:\\Users\\Administrator\\AppData\\Local\\Bisq\\",
   "uninstall_string":"MsiExec.exe /X{3E523521-53D7-31A8-85CC-B2BE2D6BA5FC}",
   "publisher":"Bisq",
   "system_component":0,
   "win64":true
  }

"""
# 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('Bisq-64bit-*.exe')[0]
    # Installing the software
   
    install_exe_if_needed(bin_name,
        silentflags='/quiet',
        name = 'Bisq',
        min_version=control.get_software_version(),
    )



# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import json

# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls


def update_package():
    result = False
    proxies = get_proxies()

    if not proxies:
        proxies = get_proxies_from_wapt_console()
   
    git_repo = "bisq-network/bisq"
    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()

a6203da985e584cc2f04044b5c3e344da4e7c49601844744b8016909d4cb03a6 : Bisq-64bit-1.10.1.exe
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
754e3306a48735c3525e8969b0e2f4fae43b80aaef5f50e8f0fd76ad951290cd : WAPT/control
b004a39fe0535cfadb402ba501c8de17c3a0f91f6f7ce1aa7ccd5c760283f1f4 : WAPT/icon.png
1bf0ac8bd0ea04ed8b4aa413c291e8b4ed50a4486c2084e15d733d478f99e4b5 : luti.json
52394b726399491f4f8c7d70ec941f33888d7376ea0a7b3fca82556f7cde54e3 : setup.py
84eeb26475e959315cfacaaf87cb32b51f163d8489e13ccecbeb700b0952550b : update_package.py