Go to file
Craftplacer cf94ec5506
Extract URL from instance field
2022-09-07 12:02:00 +02:00
.github Update ci.yml 2022-09-03 14:50:41 +02:00
.vscode add vscode launch configuration 2020-10-30 04:15:52 +01:00
assets Add README banner 2022-07-15 05:29:16 +02:00
docs Move file down to docs folder 2020-10-20 10:18:19 +02:00
packaging/linux Downgrade .desktop version to 1.0 2021-11-13 08:51:51 +01:00
removed Move unused notification_poster to removed 2021-04-02 12:55:04 +02:00
src/kaiteki Extract URL from instance field 2022-09-07 12:02:00 +02:00
.gitignore Update .gitignore 2022-06-02 20:20:24 +02:00
.gitmodules Add submodule to translations repository 2022-09-03 14:28:57 +02:00
CONTRIBUTING.md Change repo docs 2021-07-08 14:23:16 +02:00
LICENSE Update license to AGPL-3.0-only 2021-11-14 11:59:34 +01:00
README.md Move and symlink README to Kaiteki source 2022-06-25 11:11:25 +02:00
render-icons.ps1 Use `Write-Output` instead of `Write-Host` 2022-06-25 11:16:20 +02:00

README.md

Kaiteki

Build status CodeFactor Translation status

A 快適 (kaiteki) Fediverse client for microblogging instances, made with Flutter and Dart.

Currently, Kaiteki is still in a proof-of-concept/alpha stage, with simple Mastodon/Pleroma and Misskey support, future backends could follow. See "What's working, what's missing?".

Screenshots

Screenshot of a Misskey feed inside Kaiteki on a phone Screenshot of an user inside Kaiteki on a tablet

Platforms & Releases

If you want to try out Kaiteki, there are automatic builds available for use.

Web
(recommended)
Windows Linux Android macOS iOS
Binaries Visit web version Download latest binaries Download latest binaries Download latest APK Not supported.
Packages / Installers No reliable packaging yet.
Help us!
AppImage

Help us package for more platforms!

What's working, what's missing?

Currently, Kaiteki only allows viewing timelines, making text posts and viewing users.

Most important API calls for Misskey, Mastodon/Pleroma are already implemented but need a UI implementation.

Other features that are missing are extensive settings, unit tests, and many other things. If you'd like to contribute, feel free to do so.

Compiling Kaiteki

Depending on your platform you might have to take extra steps. See this page for steps on compiling for desktop, and this page for steps on compiling for web.

flutter upgrade # upgrade flutter to its latest version
flutter pub get # get packages

# run
flutter run

# ... or compile a release build
flutter build apk --release
flutter build windows --release
flutter build linux --release
flutter build web --release