Skip to content

Commit 8d9d0e9

Browse files
authored
chore: bump version 0.3.4 (#3572)
* chore: bump version 0.3.4 * fix: docker file build
1 parent 7f44b18 commit 8d9d0e9

File tree

5 files changed

+25
-3
lines changed

5 files changed

+25
-3
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
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

frontend/Makefile.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = true
2525
CARGO_MAKE_CRATE_FS_NAME = "dart_ffi"
2626
CARGO_MAKE_CRATE_NAME = "dart-ffi"
2727
LIB_NAME = "dart_ffi"
28-
CURRENT_APP_VERSION = "0.3.3"
28+
CURRENT_APP_VERSION = "0.3.4"
2929
FLUTTER_DESKTOP_FEATURES = "dart,rev-sqlite"
3030
PRODUCT_NAME = "AppFlowy"
3131
# CRATE_TYPE: https://doc.rust-lang.org/reference/linkage.html

frontend/appflowy_flutter/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

2020
environment:
2121
sdk: ">=3.0.0 <4.0.0"

frontend/scripts/docker-buildfiles/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ RUN flutter doctor
4747
RUN 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
5151
RUN source ~/.cargo/env && cargo install --force cargo-make duckscript_cli
5252

5353
# Build AppFlowy

frontend/scripts/install_dev_env/install_linux.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,15 @@ else
7272
echo 'Your system is not supported, please install keybinder3 manually.'
7373
fi
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
7685
printMessage "Setting up githooks."
7786
git config core.hooksPath .githooks

0 commit comments

Comments
 (0)