chore: bump version 0.3.4 (#3572)

* chore: bump version 0.3.4

* fix: docker file build
This commit is contained in:
Lucas.Xu 2023-10-02 20:48:56 +08:00 committed by GitHub
parent 7f44b181bd
commit 8d9d0e9358
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 25 additions and 3 deletions

View File

@ -1,5 +1,18 @@
# Release Notes # 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 ## Version 0.3.3 - 09/24/2023
### New Features ### New Features

View File

@ -25,7 +25,7 @@ CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = true
CARGO_MAKE_CRATE_FS_NAME = "dart_ffi" CARGO_MAKE_CRATE_FS_NAME = "dart_ffi"
CARGO_MAKE_CRATE_NAME = "dart-ffi" CARGO_MAKE_CRATE_NAME = "dart-ffi"
LIB_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" FLUTTER_DESKTOP_FEATURES = "dart,rev-sqlite"
PRODUCT_NAME = "AppFlowy" PRODUCT_NAME = "AppFlowy"
# CRATE_TYPE: https://doc.rust-lang.org/reference/linkage.html # CRATE_TYPE: https://doc.rust-lang.org/reference/linkage.html

View File

@ -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. # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at # Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 0.3.3 version: 0.3.4
environment: environment:
sdk: ">=3.0.0 <4.0.0" sdk: ">=3.0.0 <4.0.0"

View File

@ -47,7 +47,7 @@ RUN flutter doctor
RUN dart pub global activate protoc_plugin 20.0.1 RUN dart pub global activate protoc_plugin 20.0.1
# Install build dependencies for AppFlowy # 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 RUN source ~/.cargo/env && cargo install --force cargo-make duckscript_cli
# Build AppFlowy # Build AppFlowy

View File

@ -72,6 +72,15 @@ else
echo 'Your system is not supported, please install keybinder3 manually.' echo 'Your system is not supported, please install keybinder3 manually.'
fi 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 # Add the githooks directory to your git configuration
printMessage "Setting up githooks." printMessage "Setting up githooks."
git config core.hooksPath .githooks git config core.hooksPath .githooks