New version

This commit is contained in:
Christian Pauly 2020-01-29 15:19:55 +00:00
parent 8014bf7b10
commit 519f32c8d1
4 changed files with 12 additions and 5 deletions

View File

@ -1,5 +1,12 @@
# Version 0.5.1 - 2020-MM-DD
### New features
# Version 0.5.2 - 2020-01-29
### 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
### Fixes
- Fixed the bug that when revoking permissions for a user makes the user an admin

View File

@ -18,7 +18,7 @@ class _LoginState extends State<Login> {
final TextEditingController usernameController = TextEditingController();
final TextEditingController passwordController = TextEditingController();
final TextEditingController serverController =
TextEditingController(text: "matrix-client.matrix.org");
TextEditingController(text: "tchncs.de");
String usernameError;
String passwordError;
String serverError;

View File

@ -19,7 +19,7 @@ class SignUp extends StatefulWidget {
class _SignUpState extends State<SignUp> {
final TextEditingController usernameController = TextEditingController();
final TextEditingController serverController =
TextEditingController(text: "matrix-client.matrix.org");
TextEditingController(text: "tchncs.de");
String usernameError;
String serverError;
bool loading = false;

View File

@ -11,7 +11,7 @@ description: Chat with your friends.
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 0.5.1+17
version: 0.5.2+18
environment:
sdk: ">=2.6.0 <3.0.0"