Skip to content

Commit d24625c

Browse files
authored
Merge pull request #1375 from LucasXu0/release/0.0.6.1
Release 0.0.6.1
2 parents 6884e97 + b293150 commit d24625c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+1071
-558
lines changed

.github/workflows/appflowy_editor_test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@ on:
44
push:
55
branches:
66
- "main"
7+
- "release/*"
78

89
pull_request:
910
branches:
1011
- "main"
12+
- "release/*"
1113
paths:
1214
- "frontend/app_flowy/packages/appflowy_editor/**"
1315

.github/workflows/ci.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@ on:
44
push:
55
branches:
66
- "main"
7+
- "release/*"
78

89
pull_request:
910
branches:
1011
- "main"
12+
- "release/*"
1113

1214
jobs:
1315
build:

.github/workflows/dart_lint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,14 @@ on:
99
push:
1010
branches:
1111
- "main"
12+
- "release/*"
1213
paths:
1314
- "frontend/app_flowy/**"
1415

1516
pull_request:
1617
branches:
1718
- "main"
19+
- "release/*"
1820
paths:
1921
- "frontend/app_flowy/**"
2022

.github/workflows/dart_test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@ on:
44
push:
55
branches:
66
- "main"
7+
- "release/*"
78
paths:
89
- "frontend/app_flowy/**"
910

1011
pull_request:
1112
branches:
1213
- "main"
14+
- "release/*"
1315
paths:
1416
- "frontend/app_flowy/**"
1517

.github/workflows/rust_coverage.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@ on:
44
push:
55
branches:
66
- "main"
7+
- "release/*"
78
paths:
89
- "frontend/rust-lib/**"
910
- "shared-lib/**"
1011

1112
pull_request:
1213
branches:
1314
- "main"
15+
- "release/*"
1416
paths:
1517
- "frontend/rust-lib/**"
1618
- "shared-lib/**"

.github/workflows/rust_lint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@ on:
44
push:
55
branches:
66
- "main"
7+
- "release/*"
78
paths:
89
- "frontend/rust-lib/**"
910
- "shared-lib/**"
1011

1112
pull_request:
1213
branches:
1314
- "main"
15+
- "release/*"
1416
paths:
1517
- "frontend/rust-lib/**"
1618
- "shared-lib/**"

.github/workflows/rust_test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@ on:
44
push:
55
branches:
66
- "main"
7+
- "release/*"
78
paths:
89
- "frontend/rust-lib/**"
910
- "shared-lib/**"
1011

1112
pull_request:
1213
branches:
1314
- "main"
15+
- "release/*"
1416
paths:
1517
- "frontend/rust-lib/**"
1618
- "shared-lib/**"

CHANGELOG.md

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

3+
## Version 0.0.6.1 - 10/26/2022
4+
5+
New features
6+
- Optimzie appflowy_editor dark mode style
7+
8+
### Bug Fixes
9+
- Unable to copy the text with checkbox or link style
10+
311
## Version 0.0.6 - 10/23/2022
412

513
New features

frontend/Makefile.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = true
2222
CARGO_MAKE_CRATE_FS_NAME = "dart_ffi"
2323
CARGO_MAKE_CRATE_NAME = "dart-ffi"
2424
LIB_NAME = "dart_ffi"
25-
CURRENT_APP_VERSION = "0.0.6"
25+
CURRENT_APP_VERSION = "0.0.6.1"
2626
FEATURES = "flutter"
2727
PRODUCT_NAME = "AppFlowy"
2828
# CRATE_TYPE: https://doc.rust-lang.org/reference/linkage.html

frontend/app_flowy/lib/plugins/board/application/board_data_controller.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ class BoardDataController {
3434

3535
// key: the block id
3636
final LinkedHashMap<String, GridBlockCache> _blocks;
37-
LinkedHashMap<String, GridBlockCache> get blocks => _blocks;
37+
UnmodifiableMapView<String, GridBlockCache> get blocks =>
38+
UnmodifiableMapView(_blocks);
3839

3940
OnFieldsChanged? _onFieldsChanged;
4041
OnGridChanged? _onGridChanged;

0 commit comments

Comments
 (0)