Abaddon
An alternative Discord client with voice support made with C++ and GTK 3
Install / Use
/learn @uowuo/AbaddonREADME
Abaddon
Alternative Discord client made in C++ with GTK
<table> <tr> <td><img src="/.readme/s5.png"></td> <td><img src="/.readme/s6.png"></td> </tr> <tr> <td><img src="/.readme/s7.png"></td> <td><img src="/.readme/s8.png"></td> </tr> </table><a href="https://discord.gg/wkCU3vuzG5"><img src="https://discord.com/api/guilds/858156817711890443/widget.png?style=shield"></a>
Current features:
- Not Electron
- Voice support
- Handles most types of chat messages including embeds, images, and replies
- Completely styleable/customizable
- Identifies to Discord as the web client unlike other clients so less likely to be falsely flagged as spam<sup>1</sup>
- Set status
- Unread and mention indicators
- Notifications (non-Windows)
- Start new DMs and group DMs
- View user profiles (notes, mutual servers, mutual friends)
- Kick, ban, and unban members
- Modify roles and modify members' roles
- Manage invites
- Manage emojis
- View audit log
- Emojis<sup>2</sup>
- Thread support<sup>3</sup>
- Animated avatars, server icons, emojis (can be turned off)
1 - Abaddon tries its best (though is not perfect) to make Discord think it's a legitimate web client. Some of the
things done to do this
include: using a browser user agent, sending the same IDENTIFY message that the official web client does, using API v9
endpoints in all cases, and not using endpoints the web client does not normally use. There are still a few smaller
inconsistencies, however. For example the web client sends lots of telemetry via the /science endpoint (uBlock origin
stops this) as well as in the headers of all requests.<br>
See here for things you might want to avoid if you are worried about being caught in the spam filter.
2 - Unicode emojis are substituted manually as opposed to rendered by GTK on non-Windows platforms. This can be changed
with the stock_emojis setting as shown at the bottom of this README. A CBDT-based font using Twemoji is provided to
allow GTK to render emojis natively on Windows.
3 - There are some inconsistencies with thread state that might be encountered in some more uncommon cases, but they are the result of fundamental issues with Discord's thread implementation.
Building manually (recommended if not on Windows):
Windows (with MSYS2):
- Install following packages:
- mingw-w64-x86_64-cmake
- mingw-w64-x86_64-ninja
- mingw-w64-x86_64-sqlite3
- mingw-w64-x86_64-nlohmann-json
- mingw-w64-x86_64-curl
- mingw-w64-x86_64-zlib
- mingw-w64-x86_64-gtkmm3
- mingw-w64-x86_64-libhandy
- mingw-w64-x86_64-opus
- mingw-w64-x86_64-libsodium
- mingw-w64-x86_64-openssl
- mingw-w64-x86_64-spdlog
git clone --recurse-submodules="subprojects" https://github.com/uowuo/abaddon && cd abaddonmkdir build && cd buildcmake -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo ..ninja- Copy resources
Mac:
git clone https://github.com/uowuo/abaddon --recurse-submodules="subprojects" && cd abaddonbrew install gtkmm3 nlohmann-json libhandy opus libsodium spdlog adwaita-icon-thememkdir build && cd buildcmake ..make- Copy resources
Linux:
- Install dependencies
- On Ubuntu 22.04 (Jammy)/Debian 12 (bookworm) and newer:
$ sudo apt install g++ cmake libgtkmm-3.0-dev libcurl4-gnutls-dev libsqlite3-dev libssl-dev nlohmann-json3-dev libhandy-1-dev libsecret-1-dev libopus-dev libsodium-dev libspdlog-dev - On Arch Linux:
$ sudo pacman -S gcc cmake gtkmm3 libcurl-gnutls lib32-sqlite lib32-openssl nlohmann-json libhandy opus libsodium spdlog - On Void Linux:
$ # Install core dependencies $ sudo xbps-install cmake make meson pkg-config gcc libcurl libcurl-devel libsecret libsecret-devel gtkmm gtkmm-devel sqlite sqlite-devel openssl openssl-devel libhandy1 libhandy1-devel opus opus-devel libsodium libsodium-devel spdlog libspdlog $ # Clone and install nlohmann json: $ git clone https://github.com/nlohmann/json && cd json $ mkdir build $ meson build $ cd build $ sudo meson install $ cd ../.. - On Fedora Linux:
$ sudo dnf install g++ cmake gtkmm3.0-devel libcurl-devel sqlite-devel openssl-devel json-devel libsecret-devel libhandy-devel opus-devel libsodium-devel spdlog-develNote: On older versions of fedora you might need to install gtkmm30-devel instead of gtkmm3.0-devel. Use
dnf search gtkmm3to see available packages.
- On Ubuntu 22.04 (Jammy)/Debian 12 (bookworm) and newer:
git clone https://github.com/uowuo/abaddon --recurse-submodules="subprojects" && cd abaddonmkdir build && cd buildcmake ..make- Copy resources
FreeBSD:
pkg install git cmake nlohmann-json spdlog gtkmm30 libhandy libsodiumgit clone https://github.com/uowuo/abaddon --recurse-submodules="subprojects" && cd abaddonmkdir build && cd buildcmake ..make- Copy resources
Downloads:
Latest release version: https://github.com/uowuo/abaddon/releases/latest
CI:
- Windows: here
- MacOS: here unsigned, unpackaged, requires gtkmm3 (e.g. from homebrew)
- Linux: here unpackaged (for now), requires gtkmm3. built on Ubuntu 22.04 + gcc9
Warning: If you use Windows, make sure to start from the
bindirectory
Resources
The two folders within the res folder (res/res and res/css) are necessary. Windows also uses the fonts folder.
You can put them directly next to the executable. On Linux, css and res can also be loaded from
~/.local/share/abaddon or /usr/local/share/abaddon
abaddon.ini will also be automatically used if located at ~/.config/abaddon/abaddon.ini and there is
no abaddon.ini in the working directory
How do I get my token?
Follow these instructions.
The Spam Filter
Discord likes disabling accounts/forcing them to reset their passwords if they think the user is a spam bot or potentially had their account compromised. While the official client still often gets users caught in the spam filter, third party clients tend to upset the spam filter more often. If you get caught by it, you can usually appeal it and get it restored. Here are some things you might want to do with the official client instead if you are particularly afraid of evoking the spam filter's wrath:
- Joining or leaving servers (usually main cause of getting caught)
- Frequently disconnecting and reconnecting
- Starting new DMs with people
- Managing your friends list
- Managing your user profile while connected to a third party client
Dependencies:
- gtkmm
- JSON for Modern C++
- IXWebSocket (provided as submodule)
- libcurl
- zlib
- SQLite3
- spdlog
- libhandy (optional)
- keychain (optional, provided as submodule)
- miniaudio (optional, provided as submodule, required for voice)
- libopus (optional, required for voice)
- libsodium (optional, required for voice)
- rnnoise (optional, provided as submodule, noise suppression and improved VAD)
- libdave (provided as submodule, required for voice E2EE)
- mlspp (provided as submodule, required for voice E2EE)
TODO:
- User activities
- More server management stuff
- A bunch of other stuff probably
Styling
<details> <summary>Show all styles</summary>CSS selectors
| Selector | Description |
|--------------------------------|---------------------------------------------------------------------------------------------------|
| .app-window | Applied to all windows. This means the main window and all popups |
| .app-popup | Additional class for .app-windows when the window is not the main window |
| .channel-list | Container of the channel list |
| .messages | Container of user messages |
| .message-container | The container which holds a user's messages |
| .message-container-author | The author label for a message container |
| .message-container-timestamp | The timestamp label for a message container |
| .message-container-avatar | Avatar for a user in a message |
| .message-container-extra | Label containing BOT/Webhook |
| .message-text | The text of a user message
