Merge pull request 'fixed port of poop SDL server' (#75) from jahway603/SilentDragonLite:dev into dev
Reviewed-on: https://git.hush.is/hush/SilentDragonLite/pulls/75
This commit is contained in:
23
README.md
23
README.md
@@ -1,17 +1,5 @@
|
||||
# SilentDragonLite
|
||||
|
||||
<p align="left">
|
||||
<a href="https://twitter.com/MyHushTeam">
|
||||
<img src="https://img.shields.io/twitter/url?style=social&url=https%3A%2F%2Ftwitter.com%2Fmyhushteam"
|
||||
alt="MyHushTeam's Twitter"></a>
|
||||
<a href="https://twitter.com/intent/follow?screen_name=MyHushTeam">
|
||||
<img src="https://img.shields.io/twitter/follow/MyHushTeam?style=social&logo=twitter"
|
||||
alt="follow on Twitter"></a>
|
||||
<a href="https://fosstodon.org/@myhushteam">
|
||||
<img src="https://img.shields.io/badge/Mastodon-MyHushTeam-blue"
|
||||
alt="follow on Mastodon"></a>
|
||||
</p>
|
||||
|
||||
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!
|
||||
|
||||

|
||||
@@ -46,9 +34,10 @@ Go to the [releases page](https://git.hush.is/hush/SilentDragonLite/releases) an
|
||||
|
||||
#### Building on Linux
|
||||
|
||||
**Nothing below will work without rust. Check that your system has rustc 1.49. If not then you need to use [Rustup in Linux](https://rustup.rs/).**
|
||||
**Nothing below will work without rust. Check that your system has rustc 1.49. If not then you need to use [Rustup in Linux](https://rustup.rs/).**
|
||||
|
||||
An example of how to install Rust 1.49 with rustup is below:
|
||||
|
||||
##### Install Rust & Change Version
|
||||
```
|
||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
||||
Choose: 1) Proceed with installation (default)
|
||||
@@ -56,7 +45,9 @@ source $HOME/.cargo/env
|
||||
rustup install 1.49
|
||||
rustup default 1.49
|
||||
rustup -V
|
||||
```
|
||||
```
|
||||
|
||||
**Nothing below will work without the Linux "build-essential" package. Check that your system has it installed. If not, and you're using a Ubuntu/Debian distro, then you can install with `apt install build-essential`.**
|
||||
|
||||
Compiling can take some time, so be patient and wait for it to finish. It will take potentially a long time for slower systems. Be Patient and please report compiler problems!
|
||||
|
||||
@@ -102,7 +93,7 @@ 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).
|
||||
For support join us on [Telegram Support](https://hush.is/telegram_support), or our [Main Telegram](https://hush.is/telegram), or toot at our [Mastodon](https://fosstodon.org/@myhushteam), or [file an issue](https://git.hush.is/hush/SilentDragonLite/issues).
|
||||
|
||||
You can also subscribe to our channels on [PeerTube](https://videos.hush.is), on [YouTube](https://hush.is/yt), or on [Odyssee/LBRY](https://odysee.com/@MyHushTeam:3).
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
|
||||
## Crosscompile for Windows (only tested for Ubuntu 18.04)
|
||||
## Crosscompile for Windows (only tested for Ubuntu 18.04) by DenioD
|
||||
|
||||
```
|
||||
# build dependencies
|
||||
@@ -841,7 +841,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://poop.granitefone.me:9067");
|
||||
settings.cmbServer->addItem("https://poop.granitefone.me");
|
||||
settings.cmbServer->addItem("https://lite.hushpool.is");
|
||||
|
||||
//settings.cmbServer->addItem("https://hush.leto.net:5420");
|
||||
|
||||
@@ -297,7 +297,7 @@ QString Settings::getRandomServer() {
|
||||
"https://lite.hush.is",
|
||||
"https://devo.crabdance.com",
|
||||
"https://lite.nyami.org",
|
||||
"https://poop.granitefone.me:9067",
|
||||
"https://poop.granitefone.me",
|
||||
// These can be un-commented to test out how code deals with down servers
|
||||
//"https://thisisdown1.example.com",
|
||||
//"https://thisisdown2.example.com",
|
||||
|
||||
Reference in New Issue
Block a user