mirror of
https://github.com/sol1/rustguac.git
synced 2026-09-10 17:47:13 +00:00
ea72c52a31
Theme system: - 6 built-in presets (dark, light, high-contrast, terminal, nord, corporate) - Admin configures preset + per-color overrides in [theme] config section - Client-side theme switching via localStorage (flash-free) - All static pages updated with 28 CSS custom properties Proxy telemetry: - Track which side terminated connection (guacd/browser/cancelled) - Timing-based log levels (guacd close <5s = warning) - Clamp session dimensions to safe ranges (width 640-8192, height 480-8192, DPI 16-384) Docker fixes (#37): - Fix port mismatch: Dockerfile now uses 8089 consistently - Auto-generate admin API key on first run - Add API key setup docs and recordings volume to compose example ARM64 support: - Multi-platform Docker builds (linux/amd64 + linux/arm64) - Native ARM64 .deb and tarball builds via ubuntu-24.04-arm runner Dependency updates: - rustls 0.23.37, chrono 0.4.44, clap 4.5.60, toml 1.0.3 - futures-util 0.3.32, uuid 1.21.0, pulldown-cmark 0.13.1 - actions/upload-artifact v7, actions/download-artifact v8 Also: FreeRDP 3.x NULL deref patch (003), .gitignore for .playwright-mcp/ Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
53 lines
730 B
Plaintext
53 lines
730 B
Plaintext
# Rust build artifacts
|
|
/target/
|
|
**/*.rs.bk
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# guacd local build (built by dev.sh)
|
|
/.guacd-build/
|
|
|
|
# Session recordings (runtime data, not code)
|
|
/recordings/
|
|
|
|
# Runtime config overrides
|
|
config.local.toml
|
|
|
|
# SQLite database (runtime data)
|
|
*.db
|
|
*.db-journal
|
|
*.db-wal
|
|
|
|
# TLS certificates
|
|
*.pem
|
|
|
|
# Debian packaging (build artifacts)
|
|
debian/.debhelper/
|
|
debian/rustguac/
|
|
debian/staging/
|
|
debian/changelog
|
|
debian/debhelper-build-stamp
|
|
debian/files
|
|
debian/rustguac.debhelper.log
|
|
debian/rustguac.postrm.debhelper
|
|
debian/rustguac.substvars
|
|
|
|
# RPM packaging (build artifacts)
|
|
rpm/staging/
|
|
*.rpm
|
|
|
|
# Playwright MCP artifacts
|
|
.playwright-mcp/
|
|
|
|
# Claude Code project memory
|
|
.claude/
|