From 48ba5733ab941873ddb652d70d5953551f5de653 Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Fri, 1 Nov 2019 06:02:38 -0400 Subject: [PATCH 1/5] Update README.md --- README.md | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index fc23cac..d1a6433 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,10 @@ -SilenDragonLite is z-Addr first, Sapling compatible wallet lightwallet for hush still in very experimental status! Use it on your own Risk! +# SilentDragonLite + +SilentDragonLite is a GUI wallet for the [Hush](https://myhush.org) cryptocoin, which does not require you to download the full blockchain! + ## Compiling from source + * silentdragon is written in C++ 14, and can be compiled with g++/clang++/visual c++. * It also depends on Qt5, which you can get from [here](https://www.qt.io/download). * You'll need Rust v1.37 + @@ -8,13 +12,13 @@ SilenDragonLite is z-Addr first, Sapling compatible wallet lightwallet for hush ### Building on Linux ``` -git clone https://github.com/DenioD/SilenDragonLite.git -cd silentdragon -/path/to/qt5/bin/qmake silentdragon-lite.pro CONFIG+=debug +git clone https://github.com/MyHush/SilenDragonLite +cd SilentDragonLite +qmake silentdragon-lite.pro CONFIG+=debug make -j$(nproc) - -./silentdragon ``` -Right now, you'll also need to run `lightwalletd` on your local machine for silentdragon to connect to. +And to run the binary: -_PS: silentdragon is NOT an official wallet, and is not affiliated with the Electric Coin Company in any way._ +``` +./silentdragonlite +``` From 92d23abdeaa32db3c52bc9eda7b7281b39ed88ad Mon Sep 17 00:00:00 2001 From: Denio <41270280+DenioD@users.noreply.github.com> Date: Sun, 3 Nov 2019 21:29:24 +0100 Subject: [PATCH 2/5] Add Screenshots --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 457524b..1db9ca3 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,12 @@ SilentDragonLite is a lightwallet for HUSH ($HUSH) runs on Linux and Windows which does not require you to download the full blockchain. This is experimental software under active development! +[![Front.png](https://i.postimg.cc/KjNpvVGk/Front.png)](https://postimg.cc/fSVf880D) + +[![Sendtab.png](https://i.postimg.cc/25hwSJTk/Sendtab.png)](https://postimg.cc/mcZMdm0J) + +[![Hushd-tab.png](https://i.postimg.cc/x8TygdQ8/Hushd-tab.png)](https://postimg.cc/sQqhgsvC) + ## PRIVACY NOTICE SilentDragonLite contacts a few different external websites to get various bits of data. * coingecko.com for price data API * explorer.myhush.org for explorer links * dexstats.info for address utilities, hush-lightwallet.de to get Data. From dd11d9823e6f5f780653dd034d315dbba4404f97 Mon Sep 17 00:00:00 2001 From: Denio Date: Tue, 12 Nov 2019 15:42:43 +0100 Subject: [PATCH 3/5] change version to v1.0.1 --- src/version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/version.h b/src/version.h index 76325eb..c404d2b 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define APP_VERSION "1.1" +#define APP_VERSION "1.0.1" From 22c9b60ebd5a6ac92ffd7d632e64c8d2c154ed09 Mon Sep 17 00:00:00 2001 From: Denio <41270280+DenioD@users.noreply.github.com> Date: Tue, 12 Nov 2019 15:49:03 +0100 Subject: [PATCH 4/5] Update Screenshot --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2e96746..1848931 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ SilentDragonLite is a lightwallet for HUSH ($HUSH) runs on Linux and Windows whi [![Sendtab.png](https://i.postimg.cc/25hwSJTk/Sendtab.png)](https://postimg.cc/mcZMdm0J) -[![Hushd-tab.png](https://i.postimg.cc/x8TygdQ8/Hushd-tab.png)](https://postimg.cc/sQqhgsvC) +[![Neueslogo.png](https://i.postimg.cc/63j67MH5/Neueslogo.png)](https://postimg.cc/KkThwDSd) ## PRIVACY NOTICE From 51a8b8798e7e251252892cebdbd0bcf368ada5a0 Mon Sep 17 00:00:00 2001 From: Denio Date: Tue, 12 Nov 2019 19:39:11 +0100 Subject: [PATCH 5/5] change building name to SilentDragonLite --- silentdragon-lite.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/silentdragon-lite.pro b/silentdragon-lite.pro index e54460a..0121d8e 100644 --- a/silentdragon-lite.pro +++ b/silentdragon-lite.pro @@ -13,7 +13,7 @@ PRECOMPILED_HEADER = src/precompiled.h QT += widgets QT += websockets -TARGET = Silentdragonlite +TARGET = SilentDragonLite TEMPLATE = app