0
0
Fork 0
mirror of https://github.com/krille-chan/fluffychat.git synced 2026-05-14 11:06:26 +00:00
The cutest instant messenger in the [matrix] https://fluffychat.im/
  • Dart 93.7%
  • C++ 2.2%
  • CMake 1.4%
  • Shell 0.8%
  • Swift 0.7%
  • Other 1%
Find a file
Krille-chan ea42515daf
Merge pull request #2934 from krille-chan/krille/fix-ios-get-push-token
chore: iOS push token with newest fcm shared isolate
2026-05-14 12:02:27 +02:00
.github chore: iOS push token with newest fcm shared isolate 2026-05-14 11:16:16 +02:00
.vscode refactor: Replace import_sorter with directives_ordering lint 2026-03-21 13:09:45 +01:00
android chore: Follow up android deep link 2026-03-24 07:36:03 +01:00
assets build: Follow up vodozemac web 2025-06-09 08:37:08 +02:00
integration_test chore: Add integration tests 2026-05-08 09:42:34 +02:00
ios fix: share dialog on iOS 2026-05-10 16:29:11 +02:00
lib chore: iOS push token with newest fcm shared isolate 2026-05-14 11:16:16 +02:00
linux fix: Open deep links 2026-03-09 17:42:54 +01:00
macos build: Update macos podfile 2026-05-10 10:14:00 +02:00
scripts fix: add prepare-web.sh support for both python and go yq versions 2026-04-18 20:41:27 +03:00
snap build: Add changelog for 2.6.0 2026-05-08 14:36:03 +02:00
test refactor: Avoid redundant async 2026-02-19 08:47:10 +01:00
web refactor: Remove native imaging and enable web worker 2025-12-24 13:09:57 +01:00
windows refactor: Remove unused dependencies and add CI check 2026-03-16 09:44:00 +01:00
.gitignore refactor: Remove native imaging and enable web worker 2025-12-24 13:09:57 +01:00
.mailmap
.metadata build: Use gradle in kotlin 2025-07-12 08:39:51 +02:00
.tool_versions.yaml build: Update to flutter 3.41.9 2026-05-02 09:45:57 +09:00
analysis_options.yaml refactor: Enable lint use_build_context_synchronously 2026-03-27 11:57:04 +01:00
CHANGELOG.md chore: no longer send deprecated score when reporting an event 2026-05-10 14:15:46 +02:00
config.sample.json feat(chat): make messagePreviewMaxLines configurable, with default 128 2026-04-10 21:57:50 +02:00
CONTRIBUTING.md refactor: Replace import_sorter with directives_ordering lint 2026-03-21 13:09:45 +01:00
dart_dependency_validator.yaml refactor: Remove unused dependencies and add CI check 2026-03-16 09:44:00 +01:00
devtools_options.yaml
Dockerfile build: Update dockerfile to build vodozemac 2025-06-20 14:02:27 +02:00
l10n.yaml
LICENSE
licenses.yaml chore: Override sqlcipher license 2025-12-03 08:09:08 +01:00
PRIVACY.md chore: Update privacy policy links 2025-11-25 09:37:49 +01:00
pubspec.lock build: (deps): bump matrix from 7.1.0 to 7.1.2 2026-05-13 00:17:20 +00:00
pubspec.yaml build: (deps): bump matrix from 7.1.0 to 7.1.2 2026-05-13 00:17:20 +00:00
README.md refactor: Switch from maestro to flutter integration tests 2026-03-20 10:34:30 +01:00
recommended_homeservers.json chore: Implement pick SSO provider from dialog and add tchncs.de 2026-03-10 10:07:43 +01:00
SECURITY.md chore: Add security.md file 2026-01-12 09:01:32 +01:00

Screenshot

FluffyChat is an open source, nonprofit and cute [matrix] client written in Flutter. The goal of the app is to create an easy to use instant messenger which is open source and accessible for everyone.

Buy Me a Coffee at ko-fi.com

Screenshots:

Features

  • 📩 Send all kinds of messages, images and files
  • 🎙️ Voice messages
  • 📍 Location sharing
  • 🔔 Push notifications
  • 💬 Unlimited private and public group chats
  • 📣 Public channels with thousands of participants
  • 🛠️ Feature rich group moderation including all matrix features
  • 🔍 Discover and join public groups
  • 🌙 Dark mode
  • 🎨 Material You design
  • 📟 Hides complexity of Matrix IDs behind simple QR codes
  • 😄 Custom emotes and stickers
  • 🌌 Spaces
  • 🔄 Compatible with Element, Nheko, NeoChat and all other Matrix apps
  • 🔐 End to end encryption
  • 🔒 Encrypted chat backup
  • 😀 Emoji verification & cross signing

... and much more.

Installation

Please visit the website for installation instructions:

How to build

  1. To build FluffyChat you need Flutter and Rust

  2. Clone the repo:

git clone https://github.com/krille-chan/fluffychat.git
cd fluffychat
  1. Choose your target platform below and enable support for it. 3.1 If you want, enable Googles Firebase Cloud Messaging:

./scripts/add-firebase-messaging.sh

  1. Debug with: flutter run

Android

  • Build with: flutter build apk

iOS / iPadOS

  • Have a Mac with Xcode installed, and set up for Xcode-managed app signing
  • If you want automatic app installation to connected devices, make sure you have Apple Configurator installed, with the Automation Tools (cfgutil) enabled
  • Set a few environment variables
    • FLUFFYCHAT_NEW_TEAM: the Apple Developer team that your certificates should live under
    • FLUFFYCHAT_NEW_GROUP: the group you want App IDs and such to live under (ie: com.example.fluffychat)
    • FLUFFYCHAT_INSTALL_IPA: set to 1 if you want the IPA to be deployed to connected devices after building, otherwise unset
  • Run ./scripts/build-ios.sh

Web

  • Build with:
./scripts/prepare-web.sh # To install Vodozemac
flutter build web --release
  • Optionally configure by serving a config.json at the same path as fluffychat. An example can be found at config.sample.json. All values there are optional. Please only the values, you really need. If you e.g. only want to change the default homeserver, then only modify the defaultHomeserver key.

Desktop (Linux, Windows, macOS)

Install custom dependencies (Linux)

sudo apt install libjsoncpp1 libsecret-1-dev libsecret-1-0 librhash0 libwebkit2gtk-4.0-dev lld
  • Build with one of these:
flutter build linux --release
flutter build windows --release
flutter build macos --release

How to run integration tests

You need to have docker installed locally! Run the preparation script before every test run:

./scripts/prepare_integration_test.sh

Then run all tests with:

flutter test integration_test/mobile_test.dart

Special thanks

  • Fabiyamada is a graphics designer and has made the fluffychat logo and the banner. Big thanks for her great designs.

  • Advocatux has made the Spanish translation with great love and care. He always stands by my side and supports my work with great commitment.

  • Thanks to MTRNord and Sorunome for developing.

  • Also thanks to all translators and testers! With your help, fluffychat is now available in more than 12 languages.

  • WoodenBeaver sound theme for the notification sound.

  • The Matrix Foundation for making and maintaining the emoji translations used for emoji verification, licensed Apache 2.0