diff --git a/.github/workflows/integration_test.yml b/.github/workflows/integration_test.yml index 16a004c1d3..37d947c6ec 100644 --- a/.github/workflows/integration_test.yml +++ b/.github/workflows/integration_test.yml @@ -6,14 +6,18 @@ on: - "main" - "release/*" paths: - - "frontend/appflowy_flutter/**" + - ".github/workflows/flutter_ci.yaml" + - "frontend/**" + - "!frontend/appflowy_tauri/**" pull_request: branches: - "main" - "release/*" paths: - - "frontend/appflowy_flutter/**" + - ".github/workflows/flutter_ci.yaml" + - "frontend/**" + - "!frontend/appflowy_tauri/**" env: CARGO_TERM_COLOR: always diff --git a/CHANGELOG.md b/CHANGELOG.md index d10547c09a..216c712395 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,55 @@ # Release Notes +## Version 0.2.1 - 06/11/2023 +### New Features +- Added support for creating or referencing a calendar in the document +- Added `+` icon in grid's add field +- + +### Other Updates +- Added vertical padding for progress bar +- Hide url cell accessory when the content is empty + +### Bug fixes: +- Fixed unable to export markdown +- Fixed adding vertical padding for progress bar +- Fixed database view didn't update after the database layout changed. + +## Version 0.2.0 - 06/08/2023 + +### New Features +- Improved checklists to support each cell having its own list +- Drag and drop calendar events +- Switch layouts (calendar, grid, kanban) of a database +- New database properties: 'Updated At' and 'Created At' +- Enabled hiding properties on the row detail page +- Added support for reordering and saving row order in different database views. +- Enabled each database view to have its own settings, including filter and sort options +- Added support to convert `“` (double quote) into a block quote +- Added support to convert `***` (three stars) into a divider +- Added support for an 'Add' button to insert a paragraph in a document and display the slash menu +- Added support for an 'Option' button to delete, duplicate, and customize block actions + +### Other Updates +- Added support for importing v0.1.x documents and databases +- Added support for database import and export to CSV +- Optimized scroll behavior in documents. +- Redesigned the launch page + +### Bug fixes +- Fixed bugs related to numbers +- Fixed issues with referenced databases in documents +- Fixed menu overflow issues in documents + +### Data migration +The data format of this version is not compatible with previous versions. Therefore, to migrate your data to the new version, you need to use the export and import functions. Please follow the guide to learn how to export and import your data. + +#### Export files in v0.1.6 +https://github.com/AppFlowy-IO/AppFlowy/assets/11863087/0c89bf2b-cd97-4a7b-b627-59df8d2967d9 + +#### Import files in v0.2.0 +https://github.com/AppFlowy-IO/AppFlowy/assets/11863087/7b392f35-4972-497a-8a7f-f38efced32e2 + ## Version 0.1.5 - 11/05/2023 ### Bug Fixes diff --git a/frontend/Makefile.toml b/frontend/Makefile.toml index b12a6fea7f..a4a4edf406 100644 --- a/frontend/Makefile.toml +++ b/frontend/Makefile.toml @@ -23,7 +23,7 @@ CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = true CARGO_MAKE_CRATE_FS_NAME = "dart_ffi" CARGO_MAKE_CRATE_NAME = "dart-ffi" LIB_NAME = "dart_ffi" -CURRENT_APP_VERSION = "0.2.0" +CURRENT_APP_VERSION = "0.2.1" FLUTTER_DESKTOP_FEATURES = "dart,rev-sqlite" PRODUCT_NAME = "AppFlowy" # CRATE_TYPE: https://doc.rust-lang.org/reference/linkage.html diff --git a/frontend/appflowy_flutter/pubspec.yaml b/frontend/appflowy_flutter/pubspec.yaml index 0f715e932e..0f0f41ed5b 100644 --- a/frontend/appflowy_flutter/pubspec.yaml +++ b/frontend/appflowy_flutter/pubspec.yaml @@ -15,7 +15,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 0.2.0 +version: 0.2.1 environment: sdk: ">=3.0.0 <4.0.0"