mirror of
https://github.com/MarekWo/mc-webui.git
synced 2026-07-05 17:31:39 +02:00
927d2a046f
- Change message byte limit from 200 to 140 bytes - Remove keyboard hint text to save space - Simplify navbar to show only notification bell and channel selector - Add slide-out offcanvas menu for less-used options: * Refresh Messages * Manage Channels * Message History (archive selector) * Settings - Increase font sizes in dropdowns and menu for better readability - Add icons and text labels to all menu items - Auto-close menu after selecting options - Update clipboard API to modern navigator.clipboard with fallback 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
86 lines
1.4 KiB
Plaintext
86 lines
1.4 KiB
Plaintext
# mc-webui .gitignore
|
|
|
|
# ============================================
|
|
# Environment and Configuration
|
|
# ============================================
|
|
.env
|
|
*.env
|
|
!.env.example
|
|
|
|
# ============================================
|
|
# Python
|
|
# ============================================
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# ============================================
|
|
# Virtual Environment
|
|
# ============================================
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv
|
|
|
|
# ============================================
|
|
# IDE and Editors
|
|
# ============================================
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# ============================================
|
|
# Testing and Coverage
|
|
# ============================================
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
*.cover
|
|
.hypothesis/
|
|
|
|
# ============================================
|
|
# Docker
|
|
# ============================================
|
|
docker-compose.override.yml
|
|
|
|
# ============================================
|
|
# Logs and Databases
|
|
# ============================================
|
|
*.log
|
|
*.sql
|
|
*.sqlite
|
|
*.db
|
|
|
|
# ============================================
|
|
# OS
|
|
# ============================================
|
|
Thumbs.db
|
|
.DS_Store
|
|
|
|
# ============================================
|
|
# Miscellaneous
|
|
# ============================================
|
|
.claude/
|
|
technotes/prompt-dms.md
|