Live data from Hacker News

Ask HN: Is there any interest in a native Qt/C++ Discord client?

news.ycombinator.com

1–10 of 43 posts

Ask HN: Is there any interest in a native Qt/C++ Discord client?

#1
I've been building a third-party cross-platform Discord client called kind (kind is not discord) in C++ and Qt 6. No Electron, no web wrapper. A proper native app for Windows, macOS, and Linux.

The UI always loads instantly. On first load, things take as long to appear as Discord's network responses. On subsequent loads, everything comes from cache and is validated against REST in the background. It feels as fast as opening a plaintext file.

It's further along than I expected when I started. What's working right now: gateway with exponential backoff and reconnect, REST with per-route rate limiting, SQLite-backed cache with async reads/writes, full Discord permission resolution, and a composable block renderer that handles every Discord message type including embeds, attachments, reactions, stickers, and components. There's a full markdown parser, an async image cache with memory LRU and disk persistence, an unread and mute state system that survives restarts, and 370 passing unit and integration tests.

Voice is a post-launch problem. So are Nitro features.

Is there actually an audience for this outside of Linux power users? I know that's where the pain is most acute, but I'm genuinely curious whether Windows users would switch for the performance alone or whether the official client is good enough there that it doesn't matter.

Re: Ask HN: Is there any interest in a native Qt/C++ Discord client?

#2
Sounds good to me! If you ever need some architectural help I'd be happy to.

I have a lot of experience with Qt and QML, I've created a block editor[1] and an LLM chat client[2] and many other projects.

[1] https://rubymamistvalove.com/block-editor

[2] https://www.get-vox.com/

Re: Ask HN: Is there any interest in a native Qt/C++ Discord client?

#3

Sounds good to me! If you ever need some architectural help I'd be happy to. I have a lot of experience with Qt and QML, I've created a block editor[1] and an LLM chat client[2] and many other projects. [1] https://rubymamistvalove.com/block-editor [2] https://www.get-vox.com/

Thanks, I'm using Qt Widgets to make this though.

And I made a website for it shortly after I made this post:

https://kind.ihavea.quest

Re: Ask HN: Is there any interest in a native Qt/C++ Discord client?

#5
post #4

Well FYI that's against Discord's TOS, you risk getting banned if you use a third-party client. There's already clients like dissent, dorion, abaddon and previously ripcord (RIP my fav)

While I can't argue against the risk, all these third party clients continue to be allowed to exist.

Ripcord and discordo were my favorites amongst the alternatives.

kind is the missing Qt FOSS alternative.

Post reply on HN