Skip to content

Commit 827d7c3

Browse files
authored
chore: bump version 0.4.0 (#4255)
1 parent b0bf99d commit 827d7c3

File tree

2 files changed

+38
-17
lines changed

2 files changed

+38
-17
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Release Notes
22

3+
## Version 0.4.0 - 12/30/2023
4+
5+
## Version 0.3.9.1 - 12/07/2023
6+
7+
### Bug fixes
8+
- Fix potential blank pages that may occur in an empty document
9+
10+
## Version 0.3.9 - 12/07/2023
11+
12+
### New Features
13+
- Support inserting a new field to the left or right of an existing one
14+
15+
### Bug fixes
16+
- Fix some emojis are shown in black/white
17+
- Fix unable to rename a subpage of subpage
18+
319
## Version 0.3.8 - 11/13/2023
420

521
### New Features

frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/mobile_sign_in_screen.dart

Lines changed: 22 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import 'package:appflowy/env/cloud_env.dart';
22
import 'package:appflowy/generated/flowy_svgs.g.dart';
33
import 'package:appflowy/generated/locale_keys.g.dart';
44
import 'package:appflowy/user/presentation/screens/sign_in_screen/widgets/widgets.dart';
5+
import 'package:appflowy_editor/appflowy_editor.dart';
56
import 'package:easy_localization/easy_localization.dart';
67
import 'package:flowy_infra_ui/flowy_infra_ui.dart';
78
import 'package:flutter/material.dart';
@@ -67,26 +68,30 @@ class MobileSignInScreen extends StatelessWidget {
6768
const Spacer(
6869
flex: 2,
6970
),
70-
const SignInAnonymousButton(),
71-
const VSpace(spacing),
71+
if (!PlatformExtension.isMobile) ...[
72+
const SignInAnonymousButton(),
73+
const VSpace(spacing),
74+
],
7275
if (isAuthEnabled) ...[
73-
Row(
74-
mainAxisAlignment: MainAxisAlignment.center,
75-
children: [
76-
const Expanded(child: Divider()),
77-
Padding(
78-
padding: const EdgeInsets.symmetric(horizontal: 8),
79-
child: Text(
80-
LocaleKeys.signIn_or.tr(),
81-
style: style.textTheme.bodyMedium?.copyWith(
82-
color: style.colorScheme.onSecondary,
76+
if (!PlatformExtension.isMobile) ...[
77+
Row(
78+
mainAxisAlignment: MainAxisAlignment.center,
79+
children: [
80+
const Expanded(child: Divider()),
81+
Padding(
82+
padding: const EdgeInsets.symmetric(horizontal: 8),
83+
child: Text(
84+
LocaleKeys.signIn_or.tr(),
85+
style: style.textTheme.bodyMedium?.copyWith(
86+
color: style.colorScheme.onSecondary,
87+
),
8388
),
8489
),
85-
),
86-
const Expanded(child: Divider()),
87-
],
88-
),
89-
const VSpace(spacing),
90+
const Expanded(child: Divider()),
91+
],
92+
),
93+
const VSpace(spacing),
94+
],
9095
const ThirdPartySignInButtons(),
9196
],
9297
if (!isAuthEnabled)

0 commit comments

Comments
 (0)