Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/japandotorg/LemonCord
A fast & light weight Discord Client made with love using the Rust programming language.
https://github.com/japandotorg/LemonCord
client discord discord-client discordclient
Last synced: 10 days ago
JSON representation
A fast & light weight Discord Client made with love using the Rust programming language.
- Host: GitHub
- URL: https://github.com/japandotorg/LemonCord
- Owner: japandotorg
- License: mit
- Created: 2023-01-01T17:35:51.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-14T14:11:35.000Z (12 months ago)
- Last Synced: 2024-07-31T15:05:19.071Z (3 months ago)
- Topics: client, discord, discord-client, discordclient
- Language: Rust
- Homepage:
- Size: 321 KB
- Stars: 37
- Watchers: 3
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-discord - LemonCord - A fast & light weight Discord client written in Rust. (Clients / Public Bots)
README
# LemonCord
A fast & light-weight Discord Client written in Rust using the [wry](https://docs.rs/wry/) crate.## Features
- Fast, light-weight, easy to use.
- 100% Open sourced.
- No suspicious activity unlike some other modded clients.
- Cross-platform support.## Is this against the Discord ToS?
Long story short. LemonCord is "possibly" against the Discord Terms-of-Service, LemonCord is an embedded version of the [Discord](https://discord.com/app) website. It cannot be guaranteed if LemonCord is against ToS or not, but you should keep reading:As of right now, Discord is not going out of their way to detect client mods or ban client mod users. On top of that, LemonCord does not make any manual HTTP requests unlike certain client mods / plugins, so your client's user agent is the same as a legitimate client. Meaning Discord doesn't detect a client app like LemonCord. They can go our of their way to start detecting it, but they don't. Even if they somehow did start detecting LemonCord, users are very unlikely to be banned on sight. It doesn't make sense for Discord to start banning a substantial part of it's user-base (unofficial client users) without any kind of warning. Not to mention that LemonCord doesn't have any type of client modifications or anything suspicious, implying LemonCord users can't be banned for indirect ToS violations (e.g. self-botting).
## Platform-specific notes
All platforms use [TAO](https://github.com/tauri-apps/tao) to build the window, and [wry](https://github.com/tauri-apps/wry) re-exports it as an application module. Here's the underlying web engine each platform uses, and some dependencies you might need to install before running [LemonCord](https://github.com/japandotorg/LemonCord).Linux
Tao uses [gtk-rs](https://gtk-rs.org/) and it's related libraries for window creation and wry also needs [WebKitGTK](https://webkitgtk.org/) for WebView. So please make sure the following packages are installed:
**Arch based distributions:**
```sh
$ sudo pacman -Syu webkit2gtk-4.1 libappindicator-gtk3
```The `libayatana-indicator` package can be installed from the Arch User Repository (AUR).
**Debian based distributions**
```sh
$ sudo apt install libwebkit2gtk-4.1-dev libayatana-appindicator3-dev
```**Fedora:**
```sh
$ sudo dnf install gtk3-devel webkit2gtk4.1-devel libappindicator-gtk3-devel
```Fedora does not have the Ayatana package yet, so you need to use the GTK one.
MacOS
WebKit is native on macOS so everything should be fine.
If you are cross-compiling for macOS using [osxcross](https://github.com/tpoechtrager/osxcross) and encounter a runtime panic like Class with name `WKWebViewConfiguration could not be found` it's possible that `WebKit.framework` has not been linked correctly, to fix this set the `RUSTFLAGS` environment variable:
```sh
RUSTFLAGS="-l framework=WebKit" cargo build --target=x86_64-apple-darwin --release
```Windows
WebView2 provided by Microsoft Edge Chromium is used. So wry supports Windows 7, 8, 10 and 11.
## Installation
> **Note**
> In the future, there will be a GUI installer for general users. For now, you will have to use the
> command line.First of all, to install LemonCord you'll have to install [Rust](https://rustup.rs/) in your machine.
You can check if you've successfully installed Rust or not using the following command below:
```sh
# To check the currently active rustc compiler version, run
$ rustc --version
```Alright, now that we have rust installed, it's time to download LemonCord:
```sh
# Download from github
$ git clone https://github.com/japandotorg/LemonCord.git
$ cd LemonCord
# Build LemonCord
$ cargo build --release
```You can run the executable everytime by either running the following command:
```sh
$ cargo run --release
```
or you can wish to use the executable file you just built using the `cargo build --release` command, to use the executable instead, run the following commands first:
```sh
# *nix
$ sudo mv /LemonCord/target/release/lemon-cord /usr/local/bin/LemonCord
$ LemonCord # Opening!# Windows
move /LemonCord/target/release/lemon-cord.exe /LemonCord/
# Open "lemon-cord.exe"
```## Discord / Support
Join our [Discord Server](https://melonbot.io/support) for further updates, announcements and support, or just to chat with the developer.
## ♥ Contributors
For information on contributing to this project, please see [CONTRIBUTING.md](/CONTRIBUTING.md).
[![♥ Contributors][contributors-image]][contributors-link]
[contributors-image]: https://contrib.rocks/image?repo=japandotorg/LemonCord
[contributors-link]: https://github.com/japandotorg/LemonCord/graphs/contributors