- Translate search placeholder to German and Dutch, fallback to English - Fix magnifying glass icon invisible in light mode (now uses dark color) - Reduce placeholder font size from 1.6rem to 1rem - Add form-label dark mode override for diagram generation labels - Add sync.sh deploy script
11 lines
293 B
Bash
Executable File
11 lines
293 B
Bash
Executable File
#!/bin/sh
|
|
rsync -avz --delete \
|
|
--exclude 'node_modules' \
|
|
--exclude 'src' \
|
|
--exclude 'vite.config.js' \
|
|
--exclude 'package.json' \
|
|
--exclude 'package-lock.json' \
|
|
--exclude '.git' \
|
|
--exclude 'sync.sh' \
|
|
./ root@bocken.org:/usr/share/webapps/webtrees/modules_v4/BockenTheme/
|