Bisq
Paquet d’installation silencieuse pour Bisq
1.9.22.0-1
- package: tis-bisq
- name: Bisq
- version: 1.9.22.0-1
- maintainer: Administrator
- target_os: windows
- architecture: x64
- signature_date:
- size: 447.14 Mo
package : tis-bisq
version : 1.9.22.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 : 4d6c58ae-4205-40ad-b52e-c8b707ed878a
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-12-29T14:02:01.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 : SY9LES+Qwy0shNQ0XjK0+Y3qXPS15BMgb/yt6QhjwF6k/PiFqmHctmeZig8M1RdQWUBqZMj2dXKtXvAUycfzi5L1//ex1IYf9SP8m05hjXIzRFhxI0/24tjVEoWSNqKBylLaxnL6wTMWkykbvHOuS9ZyfsNb4plAN4lkpxmzQjHRjcyyWY3cnpsm7PWz2FK0kN2kKzEkPeOQ1BaRIcHkfVMdPXbek29VdjbgLgJDD5wYnTKQ3bYmZSnDtdiJM1pf3h9UVKNARyBHtqyfR87YWDZw1c4Gm8z+IbwMIFzlV7Z71auLel/CmNoOqi8IzzfdzhS6rA1FB+rq6g96ErEwvA==
# -*- 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()
839c0fd615b1b4ce4bb19c183fcadd580c29b124e04033177abb9e9ecd7dd1d8 : Bisq-64bit-1.9.22.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
e7570478b64cffb61c0a7bda6a8e5c8c47b497fad9c3bf81f5b51058ff8aff09 : WAPT/control
b004a39fe0535cfadb402ba501c8de17c3a0f91f6f7ce1aa7ccd5c760283f1f4 : WAPT/icon.png
f8eeb973aa819bf5ead185f865bff0249b638c20b0698d5794763f7a15b19d5a : luti.json
52394b726399491f4f8c7d70ec941f33888d7376ea0a7b3fca82556f7cde54e3 : setup.py
84eeb26475e959315cfacaaf87cb32b51f163d8489e13ccecbeb700b0952550b : update_package.py