File tree Expand file tree Collapse file tree 5 files changed +25
-3
lines changed Expand file tree Collapse file tree 5 files changed +25
-3
lines changed Original file line number Diff line number Diff line change 11# Release Notes
22
3+ ## Version 0.3.4 - 10/02/2023
4+
5+ ### New Features
6+ - Added support for creating a reminder.
7+ - Added support for finding and replacing in the document page.
8+ - Added support for showing the hidden fields in row detail page.
9+ - Adjust the toolbar style in RTL mode.
10+
11+ ### Bug fixes
12+ - Improve snackbar UI design.
13+ - Improve dandelion theme.
14+ - Improve id-ID and pl-PL language translations.
15+
316## Version 0.3.3 - 09/24/2023
417
518### New Features
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = true
2525CARGO_MAKE_CRATE_FS_NAME = " dart_ffi"
2626CARGO_MAKE_CRATE_NAME = " dart-ffi"
2727LIB_NAME = " dart_ffi"
28- CURRENT_APP_VERSION = " 0.3.3 "
28+ CURRENT_APP_VERSION = " 0.3.4 "
2929FLUTTER_DESKTOP_FEATURES = " dart,rev-sqlite"
3030PRODUCT_NAME = " AppFlowy"
3131# CRATE_TYPE: https://doc.rust-lang.org/reference/linkage.html
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
1515# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
1616# Read more about iOS versioning at
1717# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
18- version : 0.3.3
18+ version : 0.3.4
1919
2020environment :
2121 sdk : " >=3.0.0 <4.0.0"
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ RUN flutter doctor
4747RUN dart pub global activate protoc_plugin 20.0.1
4848
4949# Install build dependencies for AppFlowy
50- RUN sudo pacman -S --noconfirm git libkeybinder3 sqlite clang rsync
50+ RUN sudo pacman -S --noconfirm git libkeybinder3 sqlite clang rsync libnotify
5151RUN source ~/.cargo/env && cargo install --force cargo-make duckscript_cli
5252
5353# Build AppFlowy
Original file line number Diff line number Diff line change 7272 echo ' Your system is not supported, please install keybinder3 manually.'
7373fi
7474
75+ printMessage " Installing libnotify"
76+ if command apt-get & > /dev/null; then
77+ sudo apt-get install libnotify-dev
78+ elif command dnf & > /dev/null; then
79+ sudo dnf install libnotify-dev
80+ else
81+ echo ' Your system is not supported, please install keybinder3 manually.'
82+ fi
83+
7584# Add the githooks directory to your git configuration
7685printMessage " Setting up githooks."
7786git config core.hooksPath .githooks
You can’t perform that action at this time.
0 commit comments