- Change app ID from io.github.outlay to com.outlay.app across all files - Add AppStream metainfo with full feature description, 16 screenshots, and v0.1.0 release - Update desktop file with expanded metadata (StartupNotify, SingleMainWindow) - Add summary and description fields to GSchema keys - Move toast overlay outside ScrolledWindow so notifications stay visible in viewport - Embed tray icon as ARGB pixmap data for reliable system tray display - Register hicolor icon theme path for taskbar icon on Wayland - Remove unused icon variants (old naming, web favicons, SVG, ICO, shadow) - Add screenshots to data/screenshots/ - Update build script with metainfo and screenshot bundling
66 lines
659 B
Plaintext
66 lines
659 B
Plaintext
# This file
|
|
.gitignore
|
|
|
|
# Build artifacts
|
|
/target/
|
|
outlay-core/target/
|
|
outlay-gtk/target/
|
|
|
|
# Rust
|
|
**/*.rs.bk
|
|
*.pdb
|
|
|
|
# AppImage build artifacts
|
|
AppDir/
|
|
*.AppImage
|
|
linuxdeploy-*
|
|
linuxdeploy-plugin-*
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Trash
|
|
.trash/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docs/plans (local only)
|
|
docs/
|
|
|
|
# LLM/AI/agent files and directories
|
|
.claude/
|
|
.cursor/
|
|
.copilot/
|
|
.github/copilot/
|
|
.aider*
|
|
.continue/
|
|
.codeium/
|
|
.tabnine/
|
|
.sourcery/
|
|
.windsurf/
|
|
.cody/
|
|
.supermaven/
|
|
.codex/
|
|
.replit/
|
|
.bolt/
|
|
.v0/
|
|
.devin/
|
|
.idx/
|
|
.ai/
|
|
.llm/
|
|
.agent/
|
|
.agents/
|
|
.prompts/
|
|
AGENTS.md
|
|
CLAUDE.md
|
|
.cursorrules
|
|
.cursorignore
|
|
copilot-instructions.md
|
|
.github/copilot-instructions.md
|