Skip to content

Commit f9c399a

Browse files
committed
Initial commit: Fresh start
- Removed all old commits
0 parents  commit f9c399a

134 files changed

Lines changed: 33400 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/FUNDING.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# These are supported funding model platforms
2+
3+
github: [voxhash] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+
patreon: voxhash # Replace with a single Patreon username
5+
open_collective: voxhash # Replace with a single Open Collective username
6+
ko_fi: voxhash # Replace with a single Ko-fi username
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
liberapay: voxhash # Replace with a single Liberapay username
10+
issuehunt: voxhash # Replace with a single IssueHunt username
11+
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
12+
polar: # Replace with a single Polar username
13+
buy_me_a_coffee: voxhash # Replace with a single Buy Me a Coffee username
14+
thanks_dev: voxhash # Replace with a single thanks.dev username
15+
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: '[BUG] '
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Environment (please complete the following information):**
27+
- OS: [e.g. Windows 10, macOS 12, Ubuntu 20.04]
28+
- Python version: [e.g. 3.10.0]
29+
- Application version: [e.g. 1.0.0]
30+
- Telegram API version: [e.g. 1.28.0]
31+
32+
**Logs**
33+
Please include relevant log entries:
34+
35+
```
36+
Paste log entries here
37+
```
38+
39+
**Additional context**
40+
Add any other context about the problem here.
41+
42+
**Checklist**
43+
- [ ] I have searched existing issues to avoid duplicates
44+
- [ ] I have checked the documentation
45+
- [ ] I have provided all required information
46+
- [ ] I have included relevant logs
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
name: Documentation improvement
3+
about: Suggest an improvement to the documentation
4+
title: '[DOCS] '
5+
labels: documentation
6+
assignees: ''
7+
---
8+
9+
**What documentation needs improvement?**
10+
A clear description of which documentation section or file needs improvement.
11+
12+
**Current state**
13+
Describe what the current documentation says or what's missing.
14+
15+
**Proposed improvement**
16+
Describe what should be changed or added to improve the documentation.
17+
18+
**Why is this improvement needed?**
19+
Explain why this documentation improvement would be helpful.
20+
21+
**Additional context**
22+
Add any other context, examples, or screenshots about the documentation improvement here.
23+
24+
**Checklist**
25+
- [ ] I have searched existing documentation issues to avoid duplicates
26+
- [ ] I have identified the specific documentation that needs improvement
27+
- [ ] I have provided a clear description of the proposed improvement
28+
- [ ] I have explained why this improvement is needed
29+
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: '[FEATURE] '
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Use case**
20+
Describe the specific use case for this feature. How would it benefit users?
21+
22+
**Implementation details**
23+
If you have ideas about how this feature could be implemented, please describe them.
24+
25+
**Screenshots/Mockups**
26+
If applicable, add screenshots or mockups to help explain your feature request.
27+
28+
**Additional context**
29+
Add any other context or screenshots about the feature request here.
30+
31+
**Checklist**
32+
- [ ] I have searched existing feature requests to avoid duplicates
33+
- [ ] I have provided a clear use case
34+
- [ ] I have considered the implementation complexity
35+
- [ ] I have provided all required information

.github/pull_request_template.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
## Description
2+
Brief description of the changes made.
3+
4+
## Type of Change
5+
- [ ] Bug fix (non-breaking change which fixes an issue)
6+
- [ ] New feature (non-breaking change which adds functionality)
7+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
8+
- [ ] Documentation update
9+
- [ ] Code refactoring
10+
- [ ] Performance improvement
11+
- [ ] Test coverage improvement
12+
13+
## Related Issues
14+
Fixes #(issue number)
15+
Closes #(issue number)
16+
Related to #(issue number)
17+
18+
## Changes Made
19+
- [ ] List the specific changes made
20+
- [ ] Include any new files added
21+
- [ ] Include any files modified
22+
- [ ] Include any files removed
23+
24+
## Testing
25+
- [ ] Unit tests added/updated
26+
- [ ] Integration tests added/updated
27+
- [ ] Manual testing performed
28+
- [ ] All tests pass locally
29+
30+
## Screenshots (if applicable)
31+
Add screenshots to help explain your changes.
32+
33+
## Checklist
34+
- [ ] My code follows the project's style guidelines
35+
- [ ] I have performed a self-review of my own code
36+
- [ ] I have commented my code, particularly in hard-to-understand areas
37+
- [ ] I have made corresponding changes to the documentation
38+
- [ ] My changes generate no new warnings
39+
- [ ] I have added tests that prove my fix is effective or that my feature works
40+
- [ ] New and existing unit tests pass locally with my changes
41+
- [ ] Any dependent changes have been merged and published
42+
43+
## Additional Notes
44+
Any additional information that reviewers should know about this PR.
45+
46+
## Breaking Changes
47+
If this is a breaking change, please describe the impact and migration path.
48+
49+
## Performance Impact
50+
If this change affects performance, please describe the impact.
51+
52+
## Security Considerations
53+
If this change affects security, please describe the considerations.

0 commit comments

Comments
 (0)