mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
feat: video block support (#5199)
* feat: video block support * chore: workaround for ci failing * chore: test * chore: check status * chore: revert apt-get * chore: add mpv * chore: add mpv to appimagebuilder * chore: try again * chore: update after merge * ci: remove workaround for microsoft issue * chore: update editor plugins * feat: add video block option on mobile * fix: final changes for menu * chore: undo cocoapods version
This commit is contained in:
@ -78,7 +78,17 @@ if command apt-get &>/dev/null; then
|
||||
elif command dnf &>/dev/null; then
|
||||
sudo dnf install libnotify-dev
|
||||
else
|
||||
echo 'Your system is not supported, please install libnotify manually.'
|
||||
echo 'Your system is not supported, please install libnotify-dev manually.'
|
||||
fi
|
||||
|
||||
# For Video Block support
|
||||
printMessage "Installing libmpv-dev mpv"
|
||||
if command apt-get &>/dev/null; then
|
||||
sudo apt-get install libmpv-dev mpv
|
||||
elif command dnf &>/dev/null; then
|
||||
sudo dnf install libmpv-dev mpv
|
||||
else
|
||||
echo 'Your system is not supported, please install libmpv-dev mpv manually.'
|
||||
fi
|
||||
|
||||
# Add the githooks directory to your git configuration
|
||||
|
Reference in New Issue
Block a user