Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/flutter_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ class _AppFlowyEditorPageState extends State<AppFlowyEditorPage> {

indentableBlockTypes.add(ToggleListBlockKeys.type);
convertibleBlockTypes.add(ToggleListBlockKeys.type);

slashMenuItems = _customSlashMenuItems();

effectiveScrollController = widget.scrollController ?? ScrollController();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
1 change: 0 additions & 1 deletion frontend/scripts/makefile/flutter.toml
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,6 @@ script_runner = "@shell"
script = [
"""
cd appflowy_flutter
flutter clean
flutter pub get
cd ../
sh scripts/code_generation/generate.sh
Expand Down