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:
Mathias Mogensen
2024-05-30 03:06:29 +02:00
committed by GitHub
parent 859eaf903b
commit 42e83b3ce9
20 changed files with 890 additions and 51 deletions

View File

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