refactor: remove pocketbase (#1138)

This commit is contained in:
Jonas Plum
2025-09-02 21:58:08 +02:00
committed by GitHub
parent f28c238135
commit eba2615ec0
435 changed files with 42677 additions and 4730 deletions

22
ui/screenshot.sh Normal file
View File

@@ -0,0 +1,22 @@
UI_DIR=$(dirname $0)
SCREENSHOT_DIR=../docs/screenshots/
cd ${UI_DIR}
bun screenshots
files=(
"dashboard.png"
"ticket.png"
"tasks.png"
"reactions.png"
)
for file in "${files[@]}"; do
echo "Processing ${file}..."
magick ${SCREENSHOT_DIR}${file} \
\( -size 1280x720 xc:none -fill white \
-draw "rectangle 0,0 1280,700 roundrectangle 0,700 1280,720 20,20" \) \
-alpha on -compose DstIn -composite "${SCREENSHOT_DIR}${file}"
magick "${SCREENSHOT_DIR}${file}" -crop 1280x719+0+0 +repage "${SCREENSHOT_DIR}${file}"
magick composite -geometry +56+91 "${SCREENSHOT_DIR}${file}" screenshots/frame.png "${SCREENSHOT_DIR}${file}"
done