Kaiteki/src/kaiteki
Craftplacer cf94ec5506
Extract URL from instance field
2022-09-07 12:02:00 +02:00
..
.vscode Update launch.json 2022-06-20 21:32:57 +02:00
android Merge branch 'master' of https://github.com/Kaiteki-Fedi/Kaiteki 2022-09-06 10:01:43 +02:00
assets Update credits 2022-08-29 11:08:00 +02:00
ios Add/update splash screen 2022-08-28 18:53:58 +02:00
lib Extract URL from instance field 2022-09-07 12:02:00 +02:00
linux Move temporaries into tmp folder 2022-05-31 08:25:03 +02:00
macos Merge branch 'master' of https://github.com/Kaiteki-Fedi/Kaiteki 2022-06-02 06:11:11 +02:00
test Remove unrelated files 2022-05-30 23:54:27 +02:00
web Add/update splash screen 2022-08-28 18:53:58 +02:00
widgetbook Localization changes 2022-08-26 10:31:35 +02:00
windows Fix window title casing on Windows builds 2021-10-20 15:03:34 +02:00
.gitignore Add Android build workflow with app signing 2022-05-25 19:43:00 +02:00
.metadata Update .metadata 2022-09-06 10:10:51 +02:00
README.md Add README banner 2022-07-15 05:29:16 +02:00
analysis_options.yaml Apply `use_super_parameters` 2022-07-23 13:05:24 +02:00
l10n.yaml Prefer English over other languages 2022-08-25 09:37:36 +02:00
pubspec.yaml Add/update splash screen 2022-08-28 18:53:58 +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