fix: create document (#2701)

* fix: create a new document

* fix: the banner don't show after deleteing the page

* fix: inserting a divider through the slash menu the cursor should stay active in the next line

* fix: the overlay doesn't dismiss after selecting a page

* fix: typo

* fix: delete the page in document if it has been deleted

* chore: l10n

* chore: rename events

* ci: rm install_diesel in ci

* fix: cover color not working

* ci: fix tauri build

---------

Co-authored-by: nathan <nathan@appflowy.io>
This commit is contained in:
Lucas.Xu
2023-06-05 13:10:14 +08:00
committed by GitHub
parent 2bd90ba7ab
commit 80a273edae
37 changed files with 352 additions and 165 deletions

View File

@ -1,8 +1,14 @@
[tasks.appflowy-flutter-deps-tools]
run_task = { name = ["install_flutter_prerequests","install_diesel"] }
run_task = { name = ["install_flutter_prerequests"] }
[tasks.appflowy-tauri-deps-tools]
run_task = { name = ["install_tauri_prerequests","install_diesel"] }
run_task = { name = ["install_tauri_prerequests"] }
[tasks.appflowy-flutter-dev-tools]
run_task = { name = ["appflowy-flutter-deps-tools","install_diesel"] }
[tasks.appflowy-tauri-dev-tools]
run_task = { name = ["appflowy-tauri-deps-tools","install_diesel"] }
[tasks.install_windows_deps.windows]
dependencies=["check_duckscript_installation", "check_visual_studio_installation", "check_vcpkg", "install_vcpkg_sqlite", "install_rust_vcpkg_cli"]
@ -78,9 +84,9 @@ dependencies = ["check_vcpkg"]
[tasks.install_targets.mac]
script = """
rustup target add x86_64-apple-ios
rustup target add x86_64-apple-darwin
rustup target add aarch64-apple-ios
#rustup target add x86_64-apple-ios
#rustup target add x86_64-apple-darwin
#rustup target add aarch64-apple-ios
rustup target add aarch64-apple-darwin
"""