mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
7113269802
* chore: adjust buttons padding in row record page
* fix: disable more button in row page
* fix: upload image button ui on mobile
* fix: embed link button ui on mobile
* fix: add missing border for ai text field and ai translate field
* fix: delete AI can make mistakes on mobile
* chore: disable sentry
* fix: invite error toast
* fix: add member limit hint text in invite member screen
* feat: show toast after opening workspace on mobile
* chore: remove sentry
* chore: filter row page in recent views
* feat: support display field name as row page title
* chore: remove scroll bar on home page
* chore: remove legacy code
* chore: optimize mobile speed
* Revert "chore: remove sentry"
This reverts commit 73b45e2590
.
* fix: reduce document page rebuild time
* chore: improve tooltip style
76 lines
1.6 KiB
Bash
Executable File
76 lines
1.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
args=("$@")
|
|
|
|
# check the cost time
|
|
start_time=$(date +%s)
|
|
|
|
# read the arguments to skip the pub get and package get
|
|
skip_pub_get=false
|
|
skip_pub_packages_get=false
|
|
verbose=false
|
|
|
|
# Parse command line arguments
|
|
while [[ $# -gt 0 ]]; do
|
|
case "$1" in
|
|
--skip-pub-get)
|
|
skip_pub_get=true
|
|
shift
|
|
;;
|
|
--skip-pub-packages-get)
|
|
skip_pub_packages_get=true
|
|
shift
|
|
;;
|
|
--verbose)
|
|
verbose=true
|
|
shift
|
|
;;
|
|
--exclude-packages)
|
|
shift
|
|
;;
|
|
*)
|
|
echo "Unknown option: $1"
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
# Store the current working directory
|
|
original_dir=$(pwd)
|
|
|
|
# Change the current working directory to the script's location
|
|
cd "$(dirname "$0")"
|
|
|
|
# Call the script in the 'language_files' folder
|
|
cd language_files
|
|
# Allow execution permissions on CI
|
|
chmod +x ./generate_language_files.sh
|
|
# Pass the arguments to the script
|
|
./generate_language_files.sh "${args[@]}"
|
|
|
|
# Return to the main script directory
|
|
cd ..
|
|
|
|
# Call the script in the 'flowy_icons' folder
|
|
cd flowy_icons
|
|
# Allow execution permissions on CI
|
|
chmod +x ./generate_flowy_icons.sh
|
|
./generate_flowy_icons.sh "${args[@]}"
|
|
|
|
# Return to the main script directory
|
|
cd ..
|
|
|
|
# Call the script in the 'freezed' folder
|
|
cd freezed
|
|
# Allow execution permissions on CI
|
|
chmod +x ./generate_freezed.sh
|
|
./generate_freezed.sh "${args[@]}" --show-loading
|
|
|
|
# Return to the original directory
|
|
cd "$original_dir"
|
|
|
|
# echo the cost time
|
|
end_time=$(date +%s)
|
|
cost_time=$((end_time - start_time))
|
|
echo "✅ Code generation cost $cost_time seconds."
|