- Add collision resolution pass after Y-snapping: sweeps each generation row left-to-right pushing overlapping cards apart, then re-centers the row to prevent drift - Reset default generations to 3 (up from 4) to avoid layout issues - Remove generation sliders from chart page for simplicity - Add sync.sh for deployment to server
14 lines
384 B
Bash
Executable File
14 lines
384 B
Bash
Executable File
#!/bin/sh
|
|
rsync -avz --delete \
|
|
--exclude 'node_modules' \
|
|
--exclude '.git' \
|
|
--exclude 'docker' \
|
|
--exclude 'build' \
|
|
--exclude 'resources/js/modules' \
|
|
--exclude 'rollup.config.js' \
|
|
--exclude 'package.json' \
|
|
--exclude 'package-lock.json' \
|
|
--exclude 'CLAUDE.md' \
|
|
--exclude 'sync.sh' \
|
|
./ root@bocken.org:/usr/share/webapps/webtrees/modules_v4/full-diagram/
|