diff --git a/.github/workflows/flutter_ci.yaml b/.github/workflows/flutter_ci.yaml index ebb5f2c5a2451..7c34d9b667aa8 100644 --- a/.github/workflows/flutter_ci.yaml +++ b/.github/workflows/flutter_ci.yaml @@ -69,6 +69,13 @@ jobs: flutter-version: ${{ env.FLUTTER_VERSION }} cache: true + - name: Cache the Flutter build + uses: actions/cache@v3 + with: + path: | + frontend/appflowy_flutter/build + key: ${{ runner.os }}-${{ hashFiles('frontend/appflowy_flutter/pubspec.lock') }}-${{ hashFiles('frontend/rust-lib/Cargo.lock') }} + - uses: Swatinem/rust-cache@v2 with: prefix-key: ${{ matrix.os }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ce4e9f66b9ab..e532a0230d63b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,14 @@ ### New Features -- Dynamic load themes -- Inline math equation +- Added support for opening the page in tabs +- Toggle list +- Alt/Option + click to add a text block above + +### Bug fixes + +- Pasting or inserting text on Grid will cause a crash on Windows +- Some UI issues ## Version 0.2.6 - 07/11/2023 diff --git a/frontend/appflowy_flutter/lib/plugins/document/presentation/editor_page.dart b/frontend/appflowy_flutter/lib/plugins/document/presentation/editor_page.dart index 1d8ac5a47c0ad..5f8c491349002 100644 --- a/frontend/appflowy_flutter/lib/plugins/document/presentation/editor_page.dart +++ b/frontend/appflowy_flutter/lib/plugins/document/presentation/editor_page.dart @@ -111,6 +111,7 @@ class _AppFlowyEditorPageState extends State { indentableBlockTypes.add(ToggleListBlockKeys.type); convertibleBlockTypes.add(ToggleListBlockKeys.type); + slashMenuItems = _customSlashMenuItems(); effectiveScrollController = widget.scrollController ?? ScrollController(); diff --git a/frontend/scripts/code_generation/language_files/generate_language_files.cmd b/frontend/scripts/code_generation/language_files/generate_language_files.cmd index e147c45a8ea61..91b40cbb1d49b 100644 --- a/frontend/scripts/code_generation/language_files/generate_language_files.cmd +++ b/frontend/scripts/code_generation/language_files/generate_language_files.cmd @@ -12,8 +12,8 @@ cd ..\..\..\appflowy_flutter REM copy the resources/translations folder to REM the appflowy_flutter/assets/translation directory -echo Copying resources/translations to appflowy_flutter/assets/translations -xcopy /E /Y /I ..\resources\translations\ assets\translations\ +echo Copying resources\translations to \assets\translations +xcopy /E /Y /I ..\resources\translations assets\translations call flutter packages pub get diff --git a/frontend/scripts/makefile/flutter.toml b/frontend/scripts/makefile/flutter.toml index 3d4c5ab513930..d0c876deaaf4c 100644 --- a/frontend/scripts/makefile/flutter.toml +++ b/frontend/scripts/makefile/flutter.toml @@ -185,7 +185,6 @@ script_runner = "@shell" script = [ """ cd appflowy_flutter - flutter clean flutter pub get cd ../ sh scripts/code_generation/generate.sh