Skip to content

Commit b663a43

Browse files
author
bugfish\bugfishtm
committed
1.3
0 parents  commit b663a43

File tree

170 files changed

+27953
-0
lines changed

Some content is hidden

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

170 files changed

+27953
-0
lines changed

.gitattributes

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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+
*.sh text eol=lf
19+
*.bash text eol=lf
20+
21+
# Denote all files that are truly binary and should not be modified.
22+
*.ico binary
23+
*.png binary
24+
*.jpg binary
25+
*.odt binary
26+
*.odf binary

.github/CODE_OF_CONDUCT.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# 🤝 Code of Conduct
2+
3+
We’re on a mission to create groundbreaking solutions, pushing the boundaries of technology. By being here, you’re an integral part of that journey.
4+
5+
**Positive Guidelines:**
6+
- Be kind, empathetic, and respectful in all interactions.
7+
- Engage thoughtfully, offering constructive, solution-oriented feedback.
8+
- Foster an environment of collaboration, support, and mutual respect.
9+
10+
**Unacceptable Behavior:**
11+
- Harassment, hate speech, or offensive language.
12+
- Personal attacks, discrimination, or any form of bullying.
13+
- Sharing private or sensitive information without explicit consent.
14+
15+
Let’s collaborate, inspire one another, and build something extraordinary together!
16+
17+
🐟 Bugfish

.github/CONTRIBUTING.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# 🌱 Contributing
2+
3+
I am excited that you're considering contributing to our project! Here are some guidelines to help you get started.
4+
5+
## How to Contribute
6+
7+
1. Fork the repository to create your own copy.
8+
2. Create a new branch for your work (e.g., `feature/my-feature`).
9+
3. Make your changes and ensure they work as expected.
10+
4. Run tests to confirm everything is functioning correctly.
11+
5. Commit your changes with a clear, concise message.
12+
6. Push your branch to your forked repository.
13+
7. Submit a pull request with a detailed description of your changes.
14+
8. Reference any related issues or discussions in your pull request.
15+
16+
## Coding Style
17+
18+
- Keep your code clean and well-organized.
19+
- Add comments to explain complex logic or functions.
20+
- Use meaningful and consistent variable and function names.
21+
- Break down code into smaller, reusable functions and components.
22+
- Follow proper indentation and formatting practices.
23+
- Avoid code duplication by reusing existing functions or modules.
24+
- Ensure your code is easily readable and maintainable by others.
25+
26+
## Issues
27+
28+
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.
29+
30+
🐟 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

.github/ISSUE_TEMPLATE/BUG_REPORT.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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: ''
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. Do '....'
17+
3. See error
18+
19+
## Expected behavior
20+
A clear and concise description of what you expected to happen.
21+
22+
## Screenshots
23+
If applicable, add screenshots to help explain your problem.
24+
25+
## Environment:
26+
- OS: [e.g. Windows, macOS, Linux]
27+
- Version [e.g. Software Version, Browser Version]
28+
29+
## Additional context
30+
Add any other context about the problem here.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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: ''
7+
8+
---
9+
10+
## Describe the solution you'd like
11+
A clear and concise description of what you want to happen.
12+
13+
## Describe alternatives you've considered
14+
A clear and concise description of any alternative solutions or features you've considered.
15+
16+
## Additional context
17+
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: ''
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*

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# 📑 Changelog
2+
3+
Refer to the `_changelogs` folder for detailed insights into the changes made across different versions. The changelogs are available in **HTML format** within this folder, providing a structured record of updates, modifications, and improvements over time. Additionally, **GitHub Releases** follow the same structure and also include these changelogs for easy reference.
4+
5+
🐟 Bugfish

CONTRIBUTING.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# 🌱 Contributing
2+
3+
I am excited that you're considering contributing to our project! Here are some guidelines to help you get started.
4+
5+
## How to Contribute
6+
7+
1. Fork the repository to create your own copy.
8+
2. Create a new branch for your work (e.g., `feature/my-feature`).
9+
3. Make your changes and ensure they work as expected.
10+
4. Run tests to confirm everything is functioning correctly.
11+
5. Commit your changes with a clear, concise message.
12+
6. Push your branch to your forked repository.
13+
7. Submit a pull request with a detailed description of your changes.
14+
8. Reference any related issues or discussions in your pull request.
15+
16+
## Coding Style
17+
18+
- Keep your code clean and well-organized.
19+
- Add comments to explain complex logic or functions.
20+
- Use meaningful and consistent variable and function names.
21+
- Break down code into smaller, reusable functions and components.
22+
- Follow proper indentation and formatting practices.
23+
- Avoid code duplication by reusing existing functions or modules.
24+
- Ensure your code is easily readable and maintainable by others.
25+
26+
## Issues
27+
28+
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.
29+
30+
🐟 Bugfish

0 commit comments

Comments
 (0)