mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-12-24 14:32:37 +01:00
New version
This commit is contained in:
parent
8014bf7b10
commit
519f32c8d1
11
CHANGELOG.md
11
CHANGELOG.md
@ -1,5 +1,12 @@
|
|||||||
# Version 0.5.1 - 2020-MM-DD
|
# Version 0.5.2 - 2020-01-29
|
||||||
### New features
|
### Changes
|
||||||
|
- New default homeserver: tchncs.de
|
||||||
|
### Fixes
|
||||||
|
- Translation fixed
|
||||||
|
- Parsing of m.room.aliases events
|
||||||
|
|
||||||
|
# Version 0.5.1 - 2020-01-28
|
||||||
|
### Changes
|
||||||
- Refactoring under the hood
|
- Refactoring under the hood
|
||||||
### Fixes
|
### Fixes
|
||||||
- Fixed the bug that when revoking permissions for a user makes the user an admin
|
- Fixed the bug that when revoking permissions for a user makes the user an admin
|
||||||
|
@ -18,7 +18,7 @@ class _LoginState extends State<Login> {
|
|||||||
final TextEditingController usernameController = TextEditingController();
|
final TextEditingController usernameController = TextEditingController();
|
||||||
final TextEditingController passwordController = TextEditingController();
|
final TextEditingController passwordController = TextEditingController();
|
||||||
final TextEditingController serverController =
|
final TextEditingController serverController =
|
||||||
TextEditingController(text: "matrix-client.matrix.org");
|
TextEditingController(text: "tchncs.de");
|
||||||
String usernameError;
|
String usernameError;
|
||||||
String passwordError;
|
String passwordError;
|
||||||
String serverError;
|
String serverError;
|
||||||
|
@ -19,7 +19,7 @@ class SignUp extends StatefulWidget {
|
|||||||
class _SignUpState extends State<SignUp> {
|
class _SignUpState extends State<SignUp> {
|
||||||
final TextEditingController usernameController = TextEditingController();
|
final TextEditingController usernameController = TextEditingController();
|
||||||
final TextEditingController serverController =
|
final TextEditingController serverController =
|
||||||
TextEditingController(text: "matrix-client.matrix.org");
|
TextEditingController(text: "tchncs.de");
|
||||||
String usernameError;
|
String usernameError;
|
||||||
String serverError;
|
String serverError;
|
||||||
bool loading = false;
|
bool loading = false;
|
||||||
|
@ -11,7 +11,7 @@ description: Chat with your friends.
|
|||||||
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
|
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
|
||||||
# Read more about iOS versioning at
|
# Read more about iOS versioning at
|
||||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||||
version: 0.5.1+17
|
version: 0.5.2+18
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=2.6.0 <3.0.0"
|
sdk: ">=2.6.0 <3.0.0"
|
||||||
|
Loading…
Reference in New Issue
Block a user