Browse Source

chore: bump version 0.3.4 (#3572)

* chore: bump version 0.3.4

* fix: docker file build
Lucas.Xu 1 year ago
parent
commit
8d9d0e9358

+ 13 - 0
CHANGELOG.md

@@ -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

+ 1 - 1
frontend/Makefile.toml

@@ -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

+ 1 - 1
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.
 # 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"

+ 1 - 1
frontend/scripts/docker-buildfiles/Dockerfile

@@ -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

+ 9 - 0
frontend/scripts/install_dev_env/install_linux.sh

@@ -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