AddOn Fancybox

This addon loads all media attachments of a post into a "fancybox" instead of linking directly to the media.
Each post gets its own attachment library, when there are more than one media attached you can scroll through them.
This commit is contained in:
Grischa Brockhaus 2022-11-24 23:48:08 +01:00
parent 30329df0dd
commit ae28f6ef01
15 changed files with 6761 additions and 0 deletions

17
fancybox/createrelease Executable file
View file

@ -0,0 +1,17 @@
MODULE=fancybox
cd ..
# read actual version from module.json
# old releases not needed anymore
mkdir -p $MODULE/dist
rm $MODULE/dist/*
# create release for actual version
zip -r9 $MODULE/dist/release.zip $MODULE/* -x $MODULE/dist/\* -x $MODULE/test/\* $MODULE/createrelease
echo release/release.zip created.
cd $MODULE