update README and pubspec.yaml
This commit is contained in:
parent
8c976f5f3c
commit
451c05b98e
56
README.md
56
README.md
|
|
@ -1,20 +1,5 @@
|
||||||

|
# Extera Next
|
||||||
|
Extera Next is another generation of Extera, made on top of FluffyChat.
|
||||||
[FluffyChat](https://fluffychat.im) is an open source, nonprofit and cute [[matrix](https://matrix.org)] client written in [Flutter](https://flutter.dev). The goal of the app is to create an easy to use instant messenger which is open source and accessible for everyone.
|
|
||||||
|
|
||||||
### Links:
|
|
||||||
|
|
||||||
- 🌐 [[Weblate] Translate FluffyChat into your language](https://hosted.weblate.org/projects/fluffychat/)
|
|
||||||
- 🌍 [[m] Join the community](https://matrix.to/#/#fluffychat:matrix.org)
|
|
||||||
- 📰 [[Mastodon] Get updates on social media](https://troet.cafe/@krille)
|
|
||||||
- 🖥️ [[Famedly] Server hosting and professional support](https://famedly.com/kontakt)
|
|
||||||
- 💝 [[Liberapay] Support FluffyChat development](https://de.liberapay.com/KrilleChritzelius)
|
|
||||||
|
|
||||||
<a href='https://ko-fi.com/C1C86VN53' target='_blank'><img height='36' style='border:0px;height:36px;' src='https://storage.ko-fi.com/cdn/kofi5.png?v=3' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a>
|
|
||||||
|
|
||||||
### Screenshots:
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
# Features
|
# Features
|
||||||
|
|
||||||
|
|
@ -35,33 +20,20 @@
|
||||||
- 🔐 End to end encryption
|
- 🔐 End to end encryption
|
||||||
- 🔒 Encrypted chat backup
|
- 🔒 Encrypted chat backup
|
||||||
- 😀 Emoji verification & cross signing
|
- 😀 Emoji verification & cross signing
|
||||||
|
- Built-in message translation
|
||||||
|
- Message recovery for Synapse admins
|
||||||
|
- Pitch black theme for AMOLED devices
|
||||||
|
|
||||||
... and much more.
|
... and much more.
|
||||||
|
|
||||||
|
|
||||||
# Installation
|
# Build
|
||||||
|
To build, make sure you have [matrix-dart-sdk](https://git.extera.xyz/OfficialDakari/matrix-dart-sdk) in the same directory as Extera Next.
|
||||||
|
|
||||||
Please visit the website for installation instructions:
|
Or, replace `matrix` in pubspec.yaml:
|
||||||
|
```yaml
|
||||||
- https://fluffychat.im
|
matrix:
|
||||||
|
git:
|
||||||
# How to build
|
url: https://git.extera.xyz/OfficialDakari/matrix-dart-sdk.git
|
||||||
|
ref: main
|
||||||
Please visit the [Wiki](https://github.com/krille-chan/fluffychat/wiki) for build instructions:
|
```
|
||||||
|
|
||||||
- https://github.com/krille-chan/fluffychat/wiki/How-To-Build
|
|
||||||
|
|
||||||
|
|
||||||
# Special thanks
|
|
||||||
|
|
||||||
* <a href="https://github.com/fabiyamada">Fabiyamada</a> is a graphics designer and has made the fluffychat logo and the banner. Big thanks for her great designs.
|
|
||||||
|
|
||||||
* <a href="https://github.com/advocatux">Advocatux</a> 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.
|
|
||||||
|
|
||||||
* <a href="https://github.com/madsrh/WoodenBeaver">WoodenBeaver</a> sound theme for the notification sound.
|
|
||||||
|
|
||||||
* The Matrix Foundation for making and maintaining the [emoji translations](https://github.com/matrix-org/matrix-spec/blob/main/data-definitions/sas-emoji.json) used for emoji verification, licensed Apache 2.0
|
|
||||||
|
|
@ -11,7 +11,6 @@ class AddWidgetTileView extends StatelessWidget {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
|
||||||
return ExpansionTile(
|
return ExpansionTile(
|
||||||
title: Text(L10n.of(context).addWidget),
|
title: Text(L10n.of(context).addWidget),
|
||||||
leading: const Icon(Icons.add),
|
leading: const Icon(Icons.add),
|
||||||
|
|
|
||||||
|
|
@ -63,7 +63,7 @@ Future<DatabaseApi> flutterMatrixSdkDatabaseBuilder(Client client) async {
|
||||||
Future<MatrixSdkDatabase> _constructDatabase(Client client) async {
|
Future<MatrixSdkDatabase> _constructDatabase(Client client) async {
|
||||||
if (kIsWeb) {
|
if (kIsWeb) {
|
||||||
html.window.navigator.storage?.persist();
|
html.window.navigator.storage?.persist();
|
||||||
return MatrixSdkDatabase.init(client.clientName);
|
return MatrixSdkDatabase(client.clientName);
|
||||||
}
|
}
|
||||||
|
|
||||||
final cipher = await getDatabaseCipher();
|
final cipher = await getDatabaseCipher();
|
||||||
|
|
@ -113,7 +113,7 @@ Future<MatrixSdkDatabase> _constructDatabase(Client client) async {
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
return MatrixSdkDatabase.init(
|
return MatrixSdkDatabase(
|
||||||
client.clientName,
|
client.clientName,
|
||||||
database: database,
|
database: database,
|
||||||
maxFileSize: 1000 * 1000 * 10,
|
maxFileSize: 1000 * 1000 * 10,
|
||||||
|
|
|
||||||
|
|
@ -1153,11 +1153,9 @@ packages:
|
||||||
matrix:
|
matrix:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
path: "."
|
path: "/home/officialdakari/repos/matrix-dart-sdk"
|
||||||
ref: main
|
relative: false
|
||||||
resolved-ref: "6f3bdad65c079a3784ce487f320195f93a8708a8"
|
source: path
|
||||||
url: "https://git.extera.xyz/OfficialDakari/MatrixDartSdk.git"
|
|
||||||
source: git
|
|
||||||
version: "0.40.0"
|
version: "0.40.0"
|
||||||
meta:
|
meta:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
|
|
|
||||||
|
|
@ -63,9 +63,7 @@ dependencies:
|
||||||
linkify: ^5.0.0
|
linkify: ^5.0.0
|
||||||
material: ^1.0.0+2
|
material: ^1.0.0+2
|
||||||
matrix:
|
matrix:
|
||||||
git:
|
path: ../matrix-dart-sdk
|
||||||
url: https://git.extera.xyz/OfficialDakari/MatrixDartSdk.git
|
|
||||||
ref: main
|
|
||||||
mime: ^1.0.6
|
mime: ^1.0.6
|
||||||
native_imaging: ^0.2.0
|
native_imaging: ^0.2.0
|
||||||
opus_caf_converter_dart: ^1.0.1
|
opus_caf_converter_dart: ^1.0.1
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue