From c08b4d077263e47771e611d57bff335f28601edb Mon Sep 17 00:00:00 2001 From: woodser Date: Thu, 12 Sep 2024 11:41:26 -0400 Subject: [PATCH 1/2] print stack trace on error closing dispute ticket --- .../desktop/main/overlays/windows/DisputeSummaryWindow.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/desktop/src/main/java/haveno/desktop/main/overlays/windows/DisputeSummaryWindow.java b/desktop/src/main/java/haveno/desktop/main/overlays/windows/DisputeSummaryWindow.java index 5f7fef3212c..7a906ec7d97 100644 --- a/desktop/src/main/java/haveno/desktop/main/overlays/windows/DisputeSummaryWindow.java +++ b/desktop/src/main/java/haveno/desktop/main/overlays/windows/DisputeSummaryWindow.java @@ -678,7 +678,8 @@ private void doClose(Button closeTicketButton, Button cancelButton) { closeTicketButton.disableProperty().unbind(); hide(); }, (errMessage, err) -> { - log.error(errMessage); + log.error("Error closing dispute ticket: " + errMessage); + err.printStackTrace(); new Popup().error(err.toString()).show(); }); } From 1ea9a6f750465806dd635b87c2252881226b3591 Mon Sep 17 00:00:00 2001 From: woodser Date: Thu, 12 Sep 2024 09:28:20 -0400 Subject: [PATCH 2/2] add notes for tails installation --- scripts/install_tails/README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/scripts/install_tails/README.md b/scripts/install_tails/README.md index aa9f81ce530..5619efe0e6d 100644 --- a/scripts/install_tails/README.md +++ b/scripts/install_tails/README.md @@ -2,7 +2,7 @@ Install Haveno on Tails by following these steps: -1. Enable persistent storage dotfiles and admin password before starting tails. +1. Enable persistent storage dotfiles and admin password before starting Tails. 2. Download [haveno-install.sh](haveno-install.sh): ``` @@ -22,3 +22,9 @@ Install Haveno on Tails by following these steps: ``` 4. Upon successful execution of the script (no errors), the Haveno release will be installed to persistent storage and can be launched via the desktop shortcut in the 'Other' section of the start menu. + +> [!note] +> If you have already installed Haveno on Tails, we recommend moving your data directory (/home/amnesia/Persistent/Haveno-example) to the new default location (/home/amnesia/Persistent/haveno/Data/Haveno-example), to retain your history and for future support. + +> [!note] +> Modern versions of Tails will invoke `curl` over Tor, but if your installation does not, then you can add `--socks5-hostname 127.0.0.1:9050` when invoking the install script. \ No newline at end of file