Improve floor grid and add dev tooling
- Scale floor perspective with viewport height so grid reaches horizon on full-screen KDE (was broken with fixed 700px perspective value) - Increase grid line thickness 1px → 2px to reduce sub-pixel flickering - Remove DANCEBOT-9000 title text - Add viewport meta tag for correct layout in WebEngineView - Add dev-server.sh (port 3000) with in-browser music ticker shim Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
c5668b8d62
commit
22d9f9672b
2 changed files with 49 additions and 30 deletions
12
dev-server.sh
Executable file
12
dev-server.sh
Executable file
|
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
PORT=${1:-3000}
|
||||
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/plugin/contents/ui" && pwd)"
|
||||
|
||||
echo "==> Serving $DIR on http://localhost:$PORT/dancer.html"
|
||||
echo " Press Ctrl+C to stop."
|
||||
echo ""
|
||||
|
||||
cd "$DIR"
|
||||
exec python3 -m http.server "$PORT"
|
||||
Loading…
Add table
Add a link
Reference in a new issue