Skip to content

Commit 88e1500

Browse files
committed
Update docs (3), config (1), ci (1)
A .github/ISSUE_TEMPLATE/bug_report.md A .github/ISSUE_TEMPLATE/feature_request.md A .github/dependabot.yml A .github/pull_request_template.md M .gitignore Committed-by: razor-autosync
1 parent 9403a99 commit 88e1500

5 files changed

Lines changed: 84 additions & 0 deletions

File tree

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: Bug report
3+
about: Report a problem in 4Charm
4+
labels: bug
5+
---
6+
7+
## App
8+
4Charm (version: <!-- see About panel or pyproject.toml -->)
9+
10+
## Environment
11+
- macOS version:
12+
- Mac model (Apple Silicon):
13+
- Python version: 3.14 (if running from source)
14+
15+
## Steps to reproduce
16+
1.
17+
2.
18+
3.
19+
20+
## Expected behavior
21+
22+
## Actual behavior
23+
24+
## Screenshots / logs
25+
<!-- Drag in screenshots or paste relevant log lines. Remove anything private. -->
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
name: Feature request
3+
about: Suggest an improvement for 4Charm
4+
labels: enhancement
5+
---
6+
7+
## App
8+
4Charm
9+
10+
## Requested feature
11+
12+
## Why it matters
13+
14+
## Preferred behavior
15+
<!-- What should it look like / how should it act? -->
16+
17+
## Risks / edge cases
18+
<!-- Anything that could break existing behavior, especially core/backend logic. -->

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "uv"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
open-pull-requests-limit: 3
8+
- package-ecosystem: "github-actions"
9+
directory: "/"
10+
schedule:
11+
interval: "weekly"
12+
open-pull-requests-limit: 3

.github/pull_request_template.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
## Summary
2+
<!-- What does this change and why? -->
3+
4+
## Changed files
5+
<!-- Key files touched and a one-line reason each. -->
6+
7+
## Testing performed
8+
- [ ] `uv run ruff check .`
9+
- [ ] `uv run pytest`
10+
- [ ] Manual run on macOS / Apple Silicon
11+
12+
## Safety notes
13+
<!-- Core/backend behavior preserved? Anything irreversible? -->
14+
15+
## Screenshots
16+
<!-- Required if the UI changed. -->

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,3 +77,16 @@ venv/
7777
# Backup files
7878
**/*.backup
7979
docs/*.backup
80+
81+
# ── Workspace standard hygiene (added 2026-06-09, appended only) ──
82+
Icon?
83+
.mypy_cache/
84+
.ty/
85+
env/
86+
*.spec.bak
87+
*.bak
88+
.env
89+
*.pem
90+
*.key
91+
*.p12
92+
*.mobileprovision

0 commit comments

Comments
 (0)