Skip to content

Commit 7b23a47

Browse files
author
unknown
committed
1.0
0 parents  commit 7b23a47

626 files changed

Lines changed: 48255 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.

.gitattributes

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# This is just an internal File to setup the repository
2+
3+
# Set default behaviour, in case users don't have core.autocrlf set.
4+
* text=auto
5+
6+
# Explicitly declare text files we want to always be normalized and converted
7+
# to native line endings on checkout.
8+
*.php text eol=lf
9+
*.sql text eol=lf
10+
*.htm text eol=lf
11+
*.html text eol=lf
12+
*.js text eol=lf
13+
*.css text eol=lf
14+
*.lang text eol=lf
15+
*.txt text eol=lf
16+
*.md text eol=lf
17+
*.bat text eol=lf
18+
19+
# Denote all files that are truly binary and should not be modified.
20+
*.ico binary
21+
*.png binary
22+
*.jpg binary
23+
*.odt binary
24+
*.odf binary

.github/CODE_OF_CONDUCT.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# 🤝 Code of Conduct
2+
3+
We’re focused on developing innovative solutions and advancing technology. By being part of this, you contribute to our progress.
4+
5+
Positive guidelines include being kind, empathetic, and respectful in all interactions. It is important to engage thoughtfully and offer constructive, solution-oriented feedback. Fostering an environment of collaboration, support, and mutual respect is essential.
6+
7+
Unacceptable behaviors include harassment, hate speech, or offensive language. Personal attacks, discrimination, or any form of bullying are not tolerated. Sharing private or sensitive information without explicit consent is strictly prohibited.
8+
9+
Together, we can partner to achieve common goals by following guidelines designed to promote effective collaboration and positive teamwork.
10+
11+
🐟 Bugfish

.github/CONTRIBUTING.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# 🌱 Contributing
2+
3+
Thank you for your interest in this project.
4+
5+
At this time, this repository is **not open for external contributions**.
6+
Please do **not** submit pull requests or patches.
7+
8+
- Pull requests from external contributors are not accepted.
9+
- Any unsolicited pull requests will be closed without review.
10+
- All code in this repository is maintained by the project owner.
11+
- By design, no third‑party code will be merged into this project via GitHub.
12+
13+
If you encounter a bug or have an enhancement suggestion, please check the "Issues" section of our GitHub repository or visit our official website for guidance before beginning any work on it.
14+
15+
🐟 Bugfish

.github/FUNDING.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
custom: https://paypal.me/bugfish
2+
patreon: bugfish
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
name: Bug Report
3+
about: Report a problem with the project.
4+
title: "[BUG] Short description of the issue"
5+
labels: bug
6+
assignees: 'bugfishtm'
7+
---
8+
9+
## Describe the bug
10+
A clear and concise description of what the bug is.
11+
12+
## To Reproduce
13+
Steps to reproduce the behavior:
14+
1. Go to '...'
15+
2. Do '....'
16+
3. See error
17+
18+
## Expected behavior
19+
A clear and concise description of what you expected to happen.
20+
21+
## Screenshots
22+
If applicable, add screenshots to help explain your problem.
23+
24+
## Environment:
25+
- OS: [e.g. Windows, macOS, Linux]
26+
- Version [e.g. Software Version, Browser Version]
27+
28+
## Additional context
29+
Add any other context about the problem here.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
name: Feature Request
3+
about: Suggest a new feature or improvement for this project.
4+
title: "[FEATURE] Short description of the feature"
5+
labels: enhancement
6+
assignees: 'bugfishtm'
7+
---
8+
9+
## Describe the solution you'd like
10+
A clear and concise description of what you want to happen.
11+
12+
## Describe alternatives you've considered
13+
A clear and concise description of any alternative solutions or features you've considered.
14+
15+
## Additional context
16+
Add any other context or screenshots about the feature request here.

.github/ISSUE_TEMPLATE/QUESTION.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Question
3+
about: Ask a question about the project.
4+
title: "[QUESTION] Short description of your question"
5+
labels: question
6+
assignees: 'bugfishtm'
7+
---
8+
9+
## Question
10+
A clear and concise question about the project.
11+
12+
## Context
13+
Provide any relevant details, such as what you're trying to achieve, any challenges you're facing, or related documentation/code references.
14+
15+
## What Have You Tried?
16+
List any steps you've taken to find an answer, such as searching the documentation, checking previous issues, or testing solutions.
17+
18+
## Additional Information
19+
If applicable, include screenshots, code snippets, or links that might help clarify your question.
20+

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
# contact_links:
3+
# - name: Visit
4+
# url: https://www.bugfish.eu
5+
# about: Please ask and answer questions there.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
## Description
2+
[Provide a brief description of the changes in this pull request]
3+
4+
## Related Issue
5+
[Reference any related issue(s) here using the syntax: Fixes #123 or Relates to #456]
6+
7+
## Proposed Changes
8+
- [Change 1]
9+
- [Change 2]
10+
- [Change 3]
11+
12+
## Additional Information
13+
[Any additional information or context that would be helpful for reviewers]
14+
15+
## Checklist
16+
- [ ] I have tested these changes locally
17+
- [ ] I have updated the documentation accordingly
18+
- [ ] My code follows the project's coding standards
19+
20+
## Screenshots (if applicable)
21+
[Add screenshots here to demonstrate visual changes]

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# This is just an internal File to ignore Files during git operations
2+
3+
# Block a File
4+
# folder/file.php
5+
# Block a Folder
6+
# folder/
7+
8+
# Ignore all htaccess & htpasswd Files
9+
# **/.htaccess*
10+
# **/.htpasswd*

0 commit comments

Comments
 (0)