tis-bisq icon

Bisq

Paquet d’installation silencieuse pour Bisq

1.9.21.0-1

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

package           : tis-bisq
version           : 1.9.21.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          : PROD
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      : cdbc06f0-167c-4cfa-91f5-c939e6d5d05b
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 10.0
max_os_version    : 
icon_sha256sum    : b004a39fe0535cfadb402ba501c8de17c3a0f91f6f7ce1aa7ccd5c760283f1f4
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-07-09T18:01:57.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         : Wi+M8v1dBXobB6eLKngmY8qHQyvb7Yz32UE8oA/9D/qyzaWKFwhw3coenIhx7HJDx/voiUZ/+8NNBSDMia8qXPNTjw11jh8fZ+Z95tuPDmewwThQJn8VlB3oLNcKAd1Xi30YRgYl+E+3GVYcxLwkID+Ni0J0o3cVMbRhkBzdELj0w3PBu4byc7TQMyNjRHV6zlmrUeygFQ9Xn/atnT58ce0y/aqV+fXKXL4VGsStbx6F+p0KnN7jw1to+6DLKKqHjFWYwC8yvoylivmXB8bDABmswf0PDaw2BhkXAsCpWcyl+Wzj5KK3cxHy6TcXeJ9NYAUZDWxz/MTvxwpgXmGK1Q==

# -*- 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()

d174e77f273336a35aa3b8b0541b2b92057e62fe52c88416a6e598036dd69665 : Bisq-64bit-1.9.21.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
d769f064721bf5b23530eb6ef5d441ce3c9409adb935147cae302754eebd8a66 : WAPT/control
b004a39fe0535cfadb402ba501c8de17c3a0f91f6f7ce1aa7ccd5c760283f1f4 : WAPT/icon.png
b0b9850c90f7cfd0ac7f617a53706b5e462d6fdbc58c7899dde50d94718ee620 : luti.json
52394b726399491f4f8c7d70ec941f33888d7376ea0a7b3fca82556f7cde54e3 : setup.py
84eeb26475e959315cfacaaf87cb32b51f163d8489e13ccecbeb700b0952550b : update_package.py