diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c9f7796c7..14ad8b823a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Release Notes +## Version 0.3.4 - 10/02/2023 + +### New Features +- Added support for creating a reminder. +- Added support for finding and replacing in the document page. +- Added support for showing the hidden fields in row detail page. +- Adjust the toolbar style in RTL mode. + +### Bug fixes +- Improve snackbar UI design. +- Improve dandelion theme. +- Improve id-ID and pl-PL language translations. + ## Version 0.3.3 - 09/24/2023 ### New Features diff --git a/frontend/Makefile.toml b/frontend/Makefile.toml index 39e5554698..e96e21dec4 100644 --- a/frontend/Makefile.toml +++ b/frontend/Makefile.toml @@ -25,7 +25,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.3.3" +CURRENT_APP_VERSION = "0.3.4" 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 6e922bc22a..783d92867d 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.3.3 +version: 0.3.4 environment: sdk: ">=3.0.0 <4.0.0" diff --git a/frontend/scripts/docker-buildfiles/Dockerfile b/frontend/scripts/docker-buildfiles/Dockerfile index 9a3b39d4b3..d874ec7805 100644 --- a/frontend/scripts/docker-buildfiles/Dockerfile +++ b/frontend/scripts/docker-buildfiles/Dockerfile @@ -47,7 +47,7 @@ RUN flutter doctor RUN dart pub global activate protoc_plugin 20.0.1 # Install build dependencies for AppFlowy -RUN sudo pacman -S --noconfirm git libkeybinder3 sqlite clang rsync +RUN sudo pacman -S --noconfirm git libkeybinder3 sqlite clang rsync libnotify RUN source ~/.cargo/env && cargo install --force cargo-make duckscript_cli # Build AppFlowy diff --git a/frontend/scripts/install_dev_env/install_linux.sh b/frontend/scripts/install_dev_env/install_linux.sh index 48da5c4416..ae874e6bb8 100755 --- a/frontend/scripts/install_dev_env/install_linux.sh +++ b/frontend/scripts/install_dev_env/install_linux.sh @@ -72,6 +72,15 @@ else echo 'Your system is not supported, please install keybinder3 manually.' fi +printMessage "Installing libnotify" +if command apt-get &>/dev/null; then + sudo apt-get install libnotify-dev +elif command dnf &>/dev/null; then + sudo dnf install libnotify-dev +else + echo 'Your system is not supported, please install keybinder3 manually.' +fi + # Add the githooks directory to your git configuration printMessage "Setting up githooks." git config core.hooksPath .githooks