|
| 1 | +<!-- Thank you for contributing to Hyprland-Simple-Setup! Please read CONTRIBUTING.md before submitting. --> |
| 2 | + |
| 3 | +## Summary |
| 4 | +Briefly describe the problem and how your change solves it. |
| 5 | + |
| 6 | +## Type of change |
| 7 | +- [ ] feat (new feature) |
| 8 | +- [ ] fix (bug fix) |
| 9 | +- [ ] docs (documentation only) |
| 10 | +- [ ] refactor (no functional change) |
| 11 | +- [ ] perf (performance) |
| 12 | +- [ ] test (add/update tests) |
| 13 | +- [ ] chore (build/infra/CI) |
| 14 | +- [ ] ui (visual/interaction changes) |
| 15 | +- [ ] breaking change (incompatible behavior) |
| 16 | + |
| 17 | +## Related issues |
| 18 | +Closes # |
| 19 | + |
| 20 | +## How to test |
| 21 | +List exact steps and commands to verify the change. Include flags like `--dry-run` when appropriate. |
| 22 | + |
| 23 | +```bash |
| 24 | +# examples |
| 25 | +cargo fmt --all |
| 26 | +cargo clippy --all-targets --all-features -- -D warnings |
| 27 | +cargo test -- --test-threads=1 |
| 28 | +RUST_LOG=hyprland_setup_tui=debug cargo run -- --dry-run |
| 29 | +``` |
| 30 | + |
| 31 | +## Screenshots / recordings (if UI changes) |
| 32 | +Include before/after images or a short GIF. Update files in `Images/` if relevant. |
| 33 | + |
| 34 | +## Checklist |
| 35 | +- [ ] Code compiles locally |
| 36 | +- [ ] `cargo fmt --all` ran without changes |
| 37 | +- [ ] `cargo clippy --all-targets --all-features -- -D warnings` is clean |
| 38 | +- [ ] `cargo test -- --test-threads=1` passes |
| 39 | +- [ ] Added or updated tests where it makes sense |
| 40 | +- [ ] Updated docs if behavior, options, or keybinds changed (README, config examples) |
| 41 | +- [ ] For UI changes: included screenshots and updated `Images/` if applicable |
| 42 | +- [ ] Changes respect `--dry-run` and degrade gracefully if `pacman`/`paru`/`yay` are unavailable |
| 43 | +- [ ] Not a packaging change for AUR (otherwise propose in `hyprland-simple-setup-git` repos) |
| 44 | + |
| 45 | +## Notes for reviewers |
| 46 | +Call out tricky areas, assumptions, edge cases, or follow-ups. |
| 47 | + |
| 48 | +## Breaking changes |
| 49 | +Describe any breaking changes and migration steps (e.g., config key renames). |
| 50 | + |
| 51 | +## Additional context |
| 52 | +Logs, links to discussions, design notes, or prior art. |
| 53 | + |
| 54 | + |
0 commit comments