diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fbd72a5b9..c4ceae1976 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +# Release Notes +## Version 0.4.4 - 01/31/2024 +### New Features +- Added functionality for uploading images to cloud storage. +- Enabled anonymous sign-in option for mobile platform users. +- Introduced the ability to customize cloud settings directly from the startup page. +- Added support for inserting reminders on the mobile platform. +- Overhauled the user interface on mobile devices, including improvements to the action bottom sheet, editor toolbar, database details page, and app bar. +- Implemented a shortcut (F2 key) to rename the current view. + +### Bug Fixes +- Fixed an issue where the font family was not displaying correctly on the mobile platform. +- Resolved a problem with the mobile row detail title not updating correctly. +- Fixed issues related to deleting images and refactored the image actions menu for better usability. +- Fixed other known issues. + # Release Notes ## Version 0.4.3 - 01/16/2024 ### Bug Fixes diff --git a/frontend/Makefile.toml b/frontend/Makefile.toml index 5d97e78bc0..32d220cab6 100644 --- a/frontend/Makefile.toml +++ b/frontend/Makefile.toml @@ -26,7 +26,7 @@ CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = true CARGO_MAKE_CRATE_FS_NAME = "dart_ffi" CARGO_MAKE_CRATE_NAME = "dart-ffi" LIB_NAME = "dart_ffi" -APPFLOWY_VERSION = "0.4.3" +APPFLOWY_VERSION = "0.4.4" FLUTTER_DESKTOP_FEATURES = "dart,rev-sqlite" PRODUCT_NAME = "AppFlowy" MACOSX_DEPLOYMENT_TARGET = "11.0" diff --git a/frontend/appflowy_flutter/pubspec.yaml b/frontend/appflowy_flutter/pubspec.yaml index 6d9152a930..6334769d0e 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.4.3 +version: 0.4.4 environment: flutter: ">=3.18.0-0.2.pre"