mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
chore: bump version 0.6.4 (#5744)
This commit is contained in:
parent
dc6349b4b1
commit
f36e3ae378
@ -1,9 +1,11 @@
|
|||||||
# Release Notes
|
# Release Notes
|
||||||
## Version 0.6.4 - 15/07/2024
|
## Version 0.6.4 - 16/07/2024
|
||||||
### New Features
|
### New Features
|
||||||
-
|
- Enhanced the message style on the AI chat page.
|
||||||
|
- Added the ability to choose cursor color and selection color from a palette in settings page.
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
-
|
- Optimized the performance for loading recent pages.
|
||||||
|
- Fixed an issue where the cursor would jump randomly when typing in the document title on mobile.
|
||||||
|
|
||||||
## Version 0.6.3 - 08/07/2024
|
## Version 0.6.3 - 08/07/2024
|
||||||
### New Features
|
### New Features
|
||||||
|
@ -75,7 +75,9 @@ class _DocumentImmersiveCoverState extends State<DocumentImmersiveCover> {
|
|||||||
child: BlocConsumer<DocumentImmersiveCoverBloc,
|
child: BlocConsumer<DocumentImmersiveCoverBloc,
|
||||||
DocumentImmersiveCoverState>(
|
DocumentImmersiveCoverState>(
|
||||||
listener: (context, state) {
|
listener: (context, state) {
|
||||||
textEditingController.text = state.name;
|
if (textEditingController.text.isEmpty) {
|
||||||
|
textEditingController.text = state.name;
|
||||||
|
}
|
||||||
},
|
},
|
||||||
builder: (_, state) {
|
builder: (_, state) {
|
||||||
final iconAndTitle = _buildIconAndTitle(context, state);
|
final iconAndTitle = _buildIconAndTitle(context, state);
|
||||||
@ -159,8 +161,16 @@ class _DocumentImmersiveCoverState extends State<DocumentImmersiveCover> {
|
|||||||
state.cover.isNone || state.cover.isPresets ? null : Colors.white,
|
state.cover.isNone || state.cover.isPresets ? null : Colors.white,
|
||||||
overflow: TextOverflow.ellipsis,
|
overflow: TextOverflow.ellipsis,
|
||||||
),
|
),
|
||||||
onChanged: _rename,
|
onChanged: (name) => Debounce.debounce(
|
||||||
onSubmitted: _rename,
|
'rename',
|
||||||
|
const Duration(milliseconds: 300),
|
||||||
|
() => _rename(name),
|
||||||
|
),
|
||||||
|
onSubmitted: (name) => Debounce.debounce(
|
||||||
|
'rename',
|
||||||
|
const Duration(milliseconds: 300),
|
||||||
|
() => _rename(name),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user