From 0513873b0992d5f3ebe0b3d470bcd84fc86c676d Mon Sep 17 00:00:00 2001 From: "Antoine FERRON [BitLogiK]" Date: Mon, 4 Mar 2024 18:13:49 -0300 Subject: [PATCH] New version --- docs/HISTORY.md | 7 +++++++ docs/LinuxRunBin.md | 14 +++++++------- version.py | 2 +- 3 files changed, 15 insertions(+), 8 deletions(-) diff --git a/docs/HISTORY.md b/docs/HISTORY.md index 88908e1..65fcd22 100644 --- a/docs/HISTORY.md +++ b/docs/HISTORY.md @@ -1,5 +1,12 @@ Uniblow versions history +# 2.6.3 + +* Change wallet startup behavior for EOS and XTZ, allowing offline mode +* Let wallet type choice in offline mode +* Rework SendAll activation +* Add PYUSD token + # 2.6.2 * Update WalletConnect to keep chainID as string diff --git a/docs/LinuxRunBin.md b/docs/LinuxRunBin.md index 5518c8b..dabb102 100644 --- a/docs/LinuxRunBin.md +++ b/docs/LinuxRunBin.md @@ -18,14 +18,14 @@ It may run on other Linux, as RHEL or Fedora. But without any testing and no gua Get the binary and its signature file. **Download** from the uniblow website : -[Uniblow program](https://uniblow.org/dist/Uniblow-linux-x86_64-2.6.2) +[Uniblow program](https://uniblow.org/dist/Uniblow-linux-x86_64-2.6.3) and its -[PGP signature](https://uniblow.org/dist/Uniblow-linux-x86_64-2.6.2.sig) +[PGP signature](https://uniblow.org/dist/Uniblow-linux-x86_64-2.6.3.sig) **Or** using the terminal, in Tails you may need to prepend *torsocks* to these commands : ``` -wget https://uniblow.org/dist/Uniblow-linux-x86_64-2.6.2 -wget https://uniblow.org/dist/Uniblow-linux-x86_64-2.6.2.sig +wget https://uniblow.org/dist/Uniblow-linux-x86_64-2.6.3 +wget https://uniblow.org/dist/Uniblow-linux-x86_64-2.6.3.sig ``` ### Check authenticity @@ -48,7 +48,7 @@ In Tails, using the Files explorer, you can right click on the sig file and sele OR alternatively using the Terminal, in Debian/Ubuntu (also valid for Tails) : ``` -UniblowFile=Uniblow-linux-x86_64-2.6.2 +UniblowFile=Uniblow-linux-x86_64-2.6.3 gpg --verify --trust-model always $UniblowFile.sig $UniblowFile ``` @@ -82,11 +82,11 @@ Now, you can run Uniblow. In **Tails**, the *torsocks* software is required to wrap the internet queries of the Uniblow app. Else you get the network error message *Network is unreachable*. ``` -torsocks ./Uniblow-linux-x86_64-2.6.2 +torsocks ./Uniblow-linux-x86_64-2.6.3 ``` In **Debian or Ubuntu**, you can directly run it from the file explorer GUI : double-click on the Uniblow binary icon to start it. -If nothing happens after some seconds, open a terminal in the current directory and type `./Uniblow-linux-x86_64-2.6.2` +If nothing happens after some seconds, open a terminal in the current directory and type `./Uniblow-linux-x86_64-2.6.3` diff --git a/version.py b/version.py index af89eb0..5417924 100644 --- a/version.py +++ b/version.py @@ -1,3 +1,3 @@ # Shall be x.y.z, with optional dash trailing "-textstr" -VERSION = "2.6.2" +VERSION = "2.6.3"