tis-bisq icon

Bisq

Paquet d’installation silencieuse pour Bisq

1.9.18.0-1

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

package           : tis-bisq
version           : 1.9.18.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      : df42d474-0543-4ade-a9b0-825178096e83
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    : 2024-12-07T11:07:24.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         : zCXAuAefS0gLa6N4mqHUF0uBakTeNCRHRlhg4ogxtT9gxOZAmkEkA9B9olc7VJXlrucx4tq+voRx/65EaNnNitsXJA3cmEhE+nlzjV1+QRhymT62f6x8IuY/NPkgiYbkcq8pR05G5z+M1bgGye7xC7jSE8B1Cw4IVXrOBFfhJ22e1s33pE410pxki75IJp74PQuzXHO2uzSLfz9dB7znqKfpsbSV9FqpJuvWNlAXDg9GdumqFn2sZUBHRgmXZz3LOSCaAcdxTm7iKZYyhQPPKgRmcEkiH+SBoEvsc9UB+hFpe05A1I7HPDBrlnf9UxemmVXfmWbnBcrwvJOy/Kf32A==

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

2da7404c2f4ebf0e2656be7963b129b295e8d4f07d69cc13e3761e8dec6a5c76 : Bisq-64bit-1.9.18.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
2d5dfd5130ecf00b5288c4a5d5e50221ec3591ed52dc47db2180f3fed141e016 : WAPT/control
b004a39fe0535cfadb402ba501c8de17c3a0f91f6f7ce1aa7ccd5c760283f1f4 : WAPT/icon.png
03a7583f5f7107e8a3ba06100ef23d4341ae19e17dc60915556adbccb9d52504 : luti.json
52394b726399491f4f8c7d70ec941f33888d7376ea0a7b3fca82556f7cde54e3 : setup.py
84eeb26475e959315cfacaaf87cb32b51f163d8489e13ccecbeb700b0952550b : update_package.py