Skip to content

Commit

Permalink
Merge pull request #19 from LucasXu0/release/0.4.0
Browse files Browse the repository at this point in the history
chore: bump version 0.4.0
  • Loading branch information
LucasXu0 authored Dec 30, 2023
2 parents b0bf99d + 663fb02 commit 18b1561
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 17 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# 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

### New Features
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import 'package:appflowy/env/cloud_env.dart';
import 'package:appflowy/generated/flowy_svgs.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_editor/appflowy_editor.dart';
import 'package:easy_localization/easy_localization.dart';
import 'package:flowy_infra_ui/flowy_infra_ui.dart';
import 'package:flutter/material.dart';
Expand Down Expand Up @@ -67,26 +68,30 @@ class MobileSignInScreen extends StatelessWidget {
const Spacer(
flex: 2,
),
const SignInAnonymousButton(),
const VSpace(spacing),
if (!PlatformExtension.isMobile) ...[
const SignInAnonymousButton(),
const VSpace(spacing),
],
if (isAuthEnabled) ...[
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const Expanded(child: Divider()),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 8),
child: Text(
LocaleKeys.signIn_or.tr(),
style: style.textTheme.bodyMedium?.copyWith(
color: style.colorScheme.onSecondary,
if (!PlatformExtension.isMobile) ...[
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const Expanded(child: Divider()),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 8),
child: Text(
LocaleKeys.signIn_or.tr(),
style: style.textTheme.bodyMedium?.copyWith(
color: style.colorScheme.onSecondary,
),
),
),
),
const Expanded(child: Divider()),
],
),
const VSpace(spacing),
const Expanded(child: Divider()),
],
),
const VSpace(spacing),
],
const ThirdPartySignInButtons(),
],
if (!isAuthEnabled)
Expand Down

0 comments on commit 18b1561

Please sign in to comment.