mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
chore: bump version 0.3.4 (#3572)
* chore: bump version 0.3.4 * fix: docker file build
This commit is contained in:
parent
7f44b181bd
commit
8d9d0e9358
13
CHANGELOG.md
13
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
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user