From 7c43664652dd6ea5afe6c6b1e736204567a9f034 Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Wed, 10 Nov 2021 00:18:01 +0000 Subject: [PATCH 01/10] Update 'README.md' --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 43bbc79..501fa78 100644 --- a/README.md +++ b/README.md @@ -84,6 +84,12 @@ SilentDragonLite does automatic note and utxo management, which means it doesn't * Will automatically shield your transparent funds at the first opportunity * When sending an outgoing transaction to a shielded address, SilentDragonLite can decide to use the transaction to additionally shield your transparent funds (i.e., send your transparent funds to your own shielded address in the same transaction) +## Where is my wallet stored? + +Linux: `~/.silentdragonlite` + +Windows 10: `C:\Users\%user\AppData\Roaming\silentdragonlite` + ## Support For support join us on [Telegram Support](https://hush.is/telegram_support), or our [Main Telegram](https://hush.is/telegram) or tweet at [@MyHushTeam](https://twitter.com/MyHushTeam), or toot at our [Mastodon](https://fosstodon.org/@myhushteam), or [file an issue](https://git.hush.is/hush/SilentDragonLite/issues). From dbd352d18a2720d7539798da7a6f338853c13e16 Mon Sep 17 00:00:00 2001 From: onryo Date: Thu, 23 Dec 2021 16:20:03 +0000 Subject: [PATCH 02/10] already in util --- SilentDragonLite.desktop | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 SilentDragonLite.desktop diff --git a/SilentDragonLite.desktop b/SilentDragonLite.desktop deleted file mode 100644 index 490da53..0000000 --- a/SilentDragonLite.desktop +++ /dev/null @@ -1,6 +0,0 @@ -[Desktop Entry] -Name=SilentDragonLite -Exec=/home/user/SilentDragonLite/SilentDragonLite -Icon=/home/user/SilentDragonLite/res/SDLogo.png -Terminal=false -Type=Application From 5eb4b2af241b9670d4e1f03888c0557e8c0eebc9 Mon Sep 17 00:00:00 2001 From: onryo Date: Thu, 23 Dec 2021 16:21:07 +0000 Subject: [PATCH 03/10] already in util dev --- install.sh | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100755 install.sh diff --git a/install.sh b/install.sh deleted file mode 100755 index 2d7299d..0000000 --- a/install.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash -# Copyright 2019-2021 The Hush Developers - -./build.sh linguist && ./build.sh - -username=$(id -un) - -sed -i "s|\/home\/.*\/SilentDragonLite\/|\/home\/$username\/SilentDragonLite\/|g" SilentDragonLite.desktop - -mv SilentDragonLite.desktop ~/.local/share/applications From 91f64b235edd2a565f8fb9e4ca6aa2915ae38c20 Mon Sep 17 00:00:00 2001 From: onryo Date: Sat, 29 Jan 2022 09:28:17 +0000 Subject: [PATCH 04/10] copying files from dev to master --- util/SilentDragonLite.desktop | 9 +++++++++ util/add-linux-icons.sh | 6 ++++++ util/install.sh | 12 ++++++++++++ 3 files changed, 27 insertions(+) create mode 100644 util/SilentDragonLite.desktop create mode 100644 util/add-linux-icons.sh create mode 100644 util/install.sh diff --git a/util/SilentDragonLite.desktop b/util/SilentDragonLite.desktop new file mode 100644 index 0000000..d659ab5 --- /dev/null +++ b/util/SilentDragonLite.desktop @@ -0,0 +1,9 @@ +[Desktop Entry] +Version=1.0 +Name=SilentDragonLite +Comment=Full-node wallet for HUSH cryptocurrency +Exec=/home/user/SilentDragonLite/SilentDragonLite +Icon=/home/user/SilentDragonLite/res/SDLogo.png +Terminal=false +Type=Application +Categories=Network; diff --git a/util/add-linux-icons.sh b/util/add-linux-icons.sh new file mode 100644 index 0000000..614e0fb --- /dev/null +++ b/util/add-linux-icons.sh @@ -0,0 +1,6 @@ +#!/bin/bash +# Copyright 2019-2021 The Hush Developers + +username=$(id -un) +sed -i "s|\/home\/.*\/SilentDragonLite\/|\/home\/$username\/SilentDragonLite\/|g" SilentDragonLite.desktop +cp SilentDragonLite.desktop ~/.local/share/applications diff --git a/util/install.sh b/util/install.sh new file mode 100644 index 0000000..250f530 --- /dev/null +++ b/util/install.sh @@ -0,0 +1,12 @@ +#!/bin/bash +# Copyright 2019-2021 The Hush Developers + +cd ../ && ./build.sh linguist && ./build.sh +# should be better + +username=$(id -un) + +cd util/ && sed -i "s|\/home\/.*\/SilentDragonLite\/|\/home\/$username\/SilentDragonLite\/|g" SilentDragonLite.desktop + +cp SilentDragonLite.desktop ~/.local/share/applications +# might be /usr/share/applications/ that requires sudo \ No newline at end of file From 448a0800539b8b1ad0f520a6063e6be7bd415211 Mon Sep 17 00:00:00 2001 From: onryo Date: Sat, 29 Jan 2022 09:42:40 +0000 Subject: [PATCH 07/10] Delete 'util/install.sh' --- util/install.sh | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 util/install.sh diff --git a/util/install.sh b/util/install.sh deleted file mode 100644 index 250f530..0000000 --- a/util/install.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash -# Copyright 2019-2021 The Hush Developers - -cd ../ && ./build.sh linguist && ./build.sh -# should be better - -username=$(id -un) - -cd util/ && sed -i "s|\/home\/.*\/SilentDragonLite\/|\/home\/$username\/SilentDragonLite\/|g" SilentDragonLite.desktop - -cp SilentDragonLite.desktop ~/.local/share/applications -# might be /usr/share/applications/ that requires sudo \ No newline at end of file From 9c1c46f3176f9343ee26be7a5f67d048d38ff8fe Mon Sep 17 00:00:00 2001 From: onryo Date: Sat, 29 Jan 2022 09:42:58 +0000 Subject: [PATCH 08/10] Upload files to 'util' --- util/install.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 util/install.sh diff --git a/util/install.sh b/util/install.sh new file mode 100644 index 0000000..250f530 --- /dev/null +++ b/util/install.sh @@ -0,0 +1,12 @@ +#!/bin/bash +# Copyright 2019-2021 The Hush Developers + +cd ../ && ./build.sh linguist && ./build.sh +# should be better + +username=$(id -un) + +cd util/ && sed -i "s|\/home\/.*\/SilentDragonLite\/|\/home\/$username\/SilentDragonLite\/|g" SilentDragonLite.desktop + +cp SilentDragonLite.desktop ~/.local/share/applications +# might be /usr/share/applications/ that requires sudo \ No newline at end of file From 5d7856b4cfc233a5d8c650109b8acef0adc3402f Mon Sep 17 00:00:00 2001 From: onryo Date: Sat, 29 Jan 2022 10:46:13 +0100 Subject: [PATCH 09/10] adding install.sh --- util/add-linux-icons.sh | 0 util/install.sh | 0 2 files changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 util/add-linux-icons.sh mode change 100644 => 100755 util/install.sh diff --git a/util/add-linux-icons.sh b/util/add-linux-icons.sh old mode 100644 new mode 100755 diff --git a/util/install.sh b/util/install.sh old mode 100644 new mode 100755 From 6b04faefddfc9d5b623b17d96a15e8125a5c36bf Mon Sep 17 00:00:00 2001 From: fekt Date: Thu, 10 Feb 2022 22:30:13 -0500 Subject: [PATCH 10/10] Update mainwindow.cpp Another server --- src/mainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index ffd42b2..0284221 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -829,6 +829,7 @@ void MainWindow::setupSettingsModal() { settings.cmbServer->addItem("https://lite.hush.land"); settings.cmbServer->addItem("https://devo.crabdance.com"); settings.cmbServer->addItem("https://lite.nyami.org"); + settings.cmbServer->addItem("https://lite.hushpool.is"); //settings.cmbServer->addItem("https://hush.leto.net:5420"); //TODO: seperate lists of https/Tor servers, only show user or attempt // connection to .onion if user has it enabled