Browse Source

Merge pull request 'fixed port of poop SDL server' (#75) from jahway603/SilentDragonLite:dev into dev

Reviewed-on: #75
pull/84/head
Duke Leto 2 years ago
parent
commit
890b95665b
  1. 23
      README.md
  2. 2
      doc/win/DEVELOPING-Ubuntu-18-04.md
  3. 2
      src/mainwindow.cpp
  4. 2
      src/settings.cpp

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!
![HushChat screenshot](hushchat-screenshot.png)
@ -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).

2
DEVELOPING.md → doc/win/DEVELOPING-Ubuntu-18-04.md

@ -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

2
src/mainwindow.cpp

@ -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");

2
src/settings.cpp

@ -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",

Loading…
Cancel
Save