mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
chore: bump version 0.4.0 (#4255)
This commit is contained in:
parent
b0bf99da34
commit
827d7c381e
16
CHANGELOG.md
16
CHANGELOG.md
@ -1,5 +1,21 @@
|
|||||||
# Release Notes
|
# Release Notes
|
||||||
|
|
||||||
|
## Version 0.4.0 - 12/30/2023
|
||||||
|
|
||||||
|
## Version 0.3.9.1 - 12/07/2023
|
||||||
|
|
||||||
|
### Bug fixes
|
||||||
|
- Fix potential blank pages that may occur in an empty document
|
||||||
|
|
||||||
|
## Version 0.3.9 - 12/07/2023
|
||||||
|
|
||||||
|
### New Features
|
||||||
|
- Support inserting a new field to the left or right of an existing one
|
||||||
|
|
||||||
|
### Bug fixes
|
||||||
|
- Fix some emojis are shown in black/white
|
||||||
|
- Fix unable to rename a subpage of subpage
|
||||||
|
|
||||||
## Version 0.3.8 - 11/13/2023
|
## Version 0.3.8 - 11/13/2023
|
||||||
|
|
||||||
### New Features
|
### New Features
|
||||||
|
@ -2,6 +2,7 @@ import 'package:appflowy/env/cloud_env.dart';
|
|||||||
import 'package:appflowy/generated/flowy_svgs.g.dart';
|
import 'package:appflowy/generated/flowy_svgs.g.dart';
|
||||||
import 'package:appflowy/generated/locale_keys.g.dart';
|
import 'package:appflowy/generated/locale_keys.g.dart';
|
||||||
import 'package:appflowy/user/presentation/screens/sign_in_screen/widgets/widgets.dart';
|
import 'package:appflowy/user/presentation/screens/sign_in_screen/widgets/widgets.dart';
|
||||||
|
import 'package:appflowy_editor/appflowy_editor.dart';
|
||||||
import 'package:easy_localization/easy_localization.dart';
|
import 'package:easy_localization/easy_localization.dart';
|
||||||
import 'package:flowy_infra_ui/flowy_infra_ui.dart';
|
import 'package:flowy_infra_ui/flowy_infra_ui.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
@ -67,9 +68,12 @@ class MobileSignInScreen extends StatelessWidget {
|
|||||||
const Spacer(
|
const Spacer(
|
||||||
flex: 2,
|
flex: 2,
|
||||||
),
|
),
|
||||||
|
if (!PlatformExtension.isMobile) ...[
|
||||||
const SignInAnonymousButton(),
|
const SignInAnonymousButton(),
|
||||||
const VSpace(spacing),
|
const VSpace(spacing),
|
||||||
|
],
|
||||||
if (isAuthEnabled) ...[
|
if (isAuthEnabled) ...[
|
||||||
|
if (!PlatformExtension.isMobile) ...[
|
||||||
Row(
|
Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
children: [
|
children: [
|
||||||
@ -87,6 +91,7 @@ class MobileSignInScreen extends StatelessWidget {
|
|||||||
],
|
],
|
||||||
),
|
),
|
||||||
const VSpace(spacing),
|
const VSpace(spacing),
|
||||||
|
],
|
||||||
const ThirdPartySignInButtons(),
|
const ThirdPartySignInButtons(),
|
||||||
],
|
],
|
||||||
if (!isAuthEnabled)
|
if (!isAuthEnabled)
|
||||||
|
Loading…
Reference in New Issue
Block a user