mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-12-23 22:12:34 +01:00
feat: Next version
This commit is contained in:
parent
fcdcdfd53e
commit
1af048ed35
48
CHANGELOG.md
48
CHANGELOG.md
@ -3,6 +3,52 @@ Chat with your friends.
|
||||
|
||||
## Unreleased
|
||||
|
||||
### Chore
|
||||
* Update adaptive dialogs [0061660]
|
||||
* Prettier redacted events [d1e291e]
|
||||
* Minor design changes in user viewer [b4fb283]
|
||||
* Minor design changes in chatlist item [6977112]
|
||||
* Implement playstore CD [4c5760c]
|
||||
* Only load google services if needed [bae779a]
|
||||
|
||||
### Feature
|
||||
* Annoy user with dialog to add a recovery method [d9ec9f6]
|
||||
* Implement password recovery [4b2fef5]
|
||||
* Collapse room create states [fc0c038]
|
||||
* Minor design improvements [0b8cc24]
|
||||
* Improved encryption UI [2516848]
|
||||
|
||||
### Fixes
|
||||
* Broken dialog [97bb692]
|
||||
* set email dialog [72e325a]
|
||||
* Minor fixes [11e2dd5]
|
||||
* redacted icon color [d60709b]
|
||||
* Unban [f056e65]
|
||||
* Minor design issues [d9590dd]
|
||||
* Buttons in chatlist [7d08817]
|
||||
* Sendername prefix [a6b60ad]
|
||||
* Sendername prefix [8aaff6f]
|
||||
* Minor key request design fix [0ed29b6]
|
||||
* removal of appbundle from the release artifacts [b1c248f]
|
||||
* Copying an event did not obey edits [0cb262c]
|
||||
* Suggest correct rooms [59ec9de]
|
||||
|
||||
### Refactor
|
||||
* Make verification in dialogs [1f9e953]
|
||||
* matrix to link prefix [1aa9c08]
|
||||
|
||||
## v0.22.1 - 2020-11-21
|
||||
|
||||
### Chore
|
||||
* fix CI [00ed0d6]
|
||||
* fix CI [bb4bb9f]
|
||||
* Fix CI variables [d3822b0]
|
||||
|
||||
### Fixes
|
||||
* Input bar not working, making app unusable [10773b4]
|
||||
|
||||
## v0.22.0 - 2020-11-21
|
||||
|
||||
### Chore
|
||||
* update flutter_matrix_html [ed27bee]
|
||||
* update flutter_matrix_html [af36533]
|
||||
@ -32,7 +78,7 @@ Chat with your friends.
|
||||
* Sentry and small null fix [5dc22be]
|
||||
|
||||
### Refactor
|
||||
* CI [5ac773e]
|
||||
* CI [34d7fdd]
|
||||
* SDK update [7e23280]
|
||||
|
||||
## v0.21.1 - 2020-10-28
|
||||
|
@ -1,6 +1,7 @@
|
||||
import 'dart:convert';
|
||||
import 'dart:io';
|
||||
|
||||
import 'package:fluffychat/utils/platform_infos.dart';
|
||||
import 'package:flushbar/flushbar_helper.dart';
|
||||
import 'package:famedlysdk/famedlysdk.dart';
|
||||
import 'package:firebase_messaging/firebase_messaging.dart';
|
||||
@ -33,6 +34,7 @@ abstract class FirebaseController {
|
||||
|
||||
static Future<void> setupFirebase(
|
||||
MatrixState matrix, String clientName) async {
|
||||
if (!PlatformInfos.isMobile) return;
|
||||
final client = matrix.client;
|
||||
if (Platform.isIOS) iOS_Permission();
|
||||
|
||||
|
@ -16,7 +16,7 @@ static void my_application_activate(GApplication* application) {
|
||||
GTK_WINDOW(gtk_application_window_new(GTK_APPLICATION(application)));
|
||||
GtkHeaderBar *header_bar = GTK_HEADER_BAR(gtk_header_bar_new());
|
||||
gtk_widget_show(GTK_WIDGET(header_bar));
|
||||
gtk_header_bar_set_title(header_bar, "fluffychat");
|
||||
gtk_header_bar_set_title(header_bar, "FluffyChat");
|
||||
gtk_header_bar_set_show_close_button(header_bar, TRUE);
|
||||
gtk_window_set_titlebar(window, GTK_WIDGET(header_bar));
|
||||
gtk_window_set_default_size(window, 802, 520);
|
||||
|
44
pubspec.lock
44
pubspec.lock
@ -70,7 +70,7 @@ packages:
|
||||
name: async
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.5.0-nullsafety.1"
|
||||
version: "2.5.0-nullsafety.3"
|
||||
base58check:
|
||||
dependency: transitive
|
||||
description:
|
||||
@ -84,7 +84,7 @@ packages:
|
||||
name: boolean_selector
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.1.0-nullsafety.1"
|
||||
version: "2.1.0-nullsafety.3"
|
||||
cached_network_image:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
@ -105,14 +105,14 @@ packages:
|
||||
name: characters
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.1.0-nullsafety.3"
|
||||
version: "1.1.0-nullsafety.5"
|
||||
charcode:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: charcode
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.2.0-nullsafety.1"
|
||||
version: "1.2.0-nullsafety.3"
|
||||
circular_check_box:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
@ -133,14 +133,14 @@ packages:
|
||||
name: clock
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.1.0-nullsafety.1"
|
||||
version: "1.1.0-nullsafety.3"
|
||||
collection:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: collection
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.15.0-nullsafety.3"
|
||||
version: "1.15.0-nullsafety.5"
|
||||
convert:
|
||||
dependency: transitive
|
||||
description:
|
||||
@ -203,7 +203,7 @@ packages:
|
||||
name: fake_async
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.2.0-nullsafety.1"
|
||||
version: "1.2.0-nullsafety.3"
|
||||
famedlysdk:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
@ -533,7 +533,7 @@ packages:
|
||||
name: js
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.6.3-nullsafety.2"
|
||||
version: "0.6.3-nullsafety.3"
|
||||
localstorage:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
@ -561,7 +561,7 @@ packages:
|
||||
name: matcher
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.12.10-nullsafety.1"
|
||||
version: "0.12.10-nullsafety.3"
|
||||
matrix_file_e2ee:
|
||||
dependency: transitive
|
||||
description:
|
||||
@ -582,7 +582,7 @@ packages:
|
||||
name: meta
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.3.0-nullsafety.3"
|
||||
version: "1.3.0-nullsafety.6"
|
||||
mime:
|
||||
dependency: transitive
|
||||
description:
|
||||
@ -689,7 +689,7 @@ packages:
|
||||
name: path
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.8.0-nullsafety.1"
|
||||
version: "1.8.0-nullsafety.3"
|
||||
path_drawing:
|
||||
dependency: transitive
|
||||
description:
|
||||
@ -925,7 +925,7 @@ packages:
|
||||
name: source_span
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.8.0-nullsafety.2"
|
||||
version: "1.8.0-nullsafety.4"
|
||||
sqflite:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
@ -960,21 +960,21 @@ packages:
|
||||
name: stack_trace
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.10.0-nullsafety.1"
|
||||
version: "1.10.0-nullsafety.6"
|
||||
stream_channel:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: stream_channel
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.1.0-nullsafety.1"
|
||||
version: "2.1.0-nullsafety.3"
|
||||
string_scanner:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: string_scanner
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.1.0-nullsafety.1"
|
||||
version: "1.1.0-nullsafety.3"
|
||||
swipe_to_action:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
@ -995,28 +995,28 @@ packages:
|
||||
name: term_glyph
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.2.0-nullsafety.1"
|
||||
version: "1.2.0-nullsafety.3"
|
||||
test:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: test
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.16.0-nullsafety.5"
|
||||
version: "1.16.0-nullsafety.12"
|
||||
test_api:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: test_api
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.2.19-nullsafety.2"
|
||||
version: "0.2.19-nullsafety.6"
|
||||
test_core:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: test_core
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.3.12-nullsafety.5"
|
||||
version: "0.3.12-nullsafety.11"
|
||||
timezone:
|
||||
dependency: transitive
|
||||
description:
|
||||
@ -1037,7 +1037,7 @@ packages:
|
||||
name: typed_data
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.3.0-nullsafety.3"
|
||||
version: "1.3.0-nullsafety.5"
|
||||
universal_html:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
@ -1121,7 +1121,7 @@ packages:
|
||||
name: vector_math
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.1.0-nullsafety.3"
|
||||
version: "2.1.0-nullsafety.5"
|
||||
vm_service:
|
||||
dependency: transitive
|
||||
description:
|
||||
@ -1193,5 +1193,5 @@ packages:
|
||||
source: hosted
|
||||
version: "0.1.2"
|
||||
sdks:
|
||||
dart: ">=2.10.2 <2.11.0"
|
||||
dart: ">=2.12.0-0.0 <=2.12.0-29.10.beta"
|
||||
flutter: ">=1.22.2 <2.0.0"
|
||||
|
@ -1,7 +1,7 @@
|
||||
name: fluffychat
|
||||
description: Chat with your friends.
|
||||
publish_to: none
|
||||
version: 0.22.1+0
|
||||
version: 0.23.0+0
|
||||
|
||||
environment:
|
||||
sdk: ">=2.6.0 <3.0.0"
|
||||
|
@ -92,10 +92,10 @@ BEGIN
|
||||
VALUE "CompanyName", "chat.fluffy" "\0"
|
||||
VALUE "FileDescription", "A new Flutter project." "\0"
|
||||
VALUE "FileVersion", VERSION_AS_STRING "\0"
|
||||
VALUE "InternalName", "Fluffychat" "\0"
|
||||
VALUE "InternalName", "FluffyChat" "\0"
|
||||
VALUE "LegalCopyright", "Copyright (C) 2020 chat.fluffy. All rights reserved." "\0"
|
||||
VALUE "OriginalFilename", "fluffychat.exe" "\0"
|
||||
VALUE "ProductName", "Fluffychat" "\0"
|
||||
VALUE "ProductName", "FluffyChat" "\0"
|
||||
VALUE "ProductVersion", VERSION_AS_STRING "\0"
|
||||
END
|
||||
END
|
||||
|
@ -24,7 +24,7 @@ int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev,
|
||||
FlutterWindow window(&run_loop, project);
|
||||
Win32Window::Point origin(10, 10);
|
||||
Win32Window::Size size(1280, 720);
|
||||
if (!window.CreateAndShow(L"Fluffychat", origin, size)) {
|
||||
if (!window.CreateAndShow(L"FluffyChat", origin, size)) {
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
window.SetQuitOnClose(true);
|
||||
|
Loading…
Reference in New Issue
Block a user