Skip to content

Commit ecb803e

Browse files
author
Bugfish
committed
4.10
1 parent 9a18158 commit ecb803e

File tree

108 files changed

+17442
-11153
lines changed

Some content is hidden

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

108 files changed

+17442
-11153
lines changed

.gitattributes

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,42 @@
1414
*.lang text eol=lf
1515
*.txt text eol=lf
1616
*.md text eol=lf
17-
*.bat text eol=lf
17+
*.bat text eol=crlf
18+
*.sh text eol=lf
19+
*.bash text eol=lf
20+
*.pl text eol=lf
21+
*.py text eol=lf
22+
*.json text eol=lf
23+
*.xml text eol=lf
24+
*.yml text eol=lf
25+
*.yaml text eol=lf
1826

1927
# Denote all files that are truly binary and should not be modified.
2028
*.ico binary
2129
*.png binary
2230
*.jpg binary
31+
*.jpeg binary
32+
*.gif binary
33+
*.bmp binary
34+
*.tiff binary
35+
*.tif binary
2336
*.odt binary
2437
*.odf binary
38+
*.pdf binary
39+
*.zip binary
40+
*.tar binary
41+
*.gz binary
42+
*.7z binary
43+
*.rar binary
44+
*.mp3 binary
45+
*.wav binary
46+
*.flac binary
47+
*.mp4 binary
48+
*.mov binary
49+
*.avi binary
50+
*.mkv binary
51+
*.exe binary
52+
*.dll binary
53+
*.woff binary
54+
*.woff2 binary
55+
*.eot binary

.github/CODE_OF_CONDUCT.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,11 @@
11
# 🤝 Code of Conduct
22

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.
3+
We’re focused on developing innovative solutions and advancing technology. By being part of this, you contribute to our progress.
44

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.
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.
96

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.
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.
148

15-
Let’s collaborate, inspire one another, and build something extraordinary together!
9+
Together, we can partner to achieve common goals by following guidelines designed to promote effective collaboration and positive teamwork.
1610

1711
🐟 Bugfish

.github/CONTRIBUTING.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,19 @@
22

33
I am excited that you're considering contributing to our project! Here are some guidelines to help you get started.
44

5-
## How to Contribute
5+
We primarily accept security fixes and critical patches to maintain project stability and coherence. Feature updates are not accepted to preserve our backend architecture and overall project integrity.
66

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.
7+
Below is an example of how to contribute to this GitHub project. Please follow this guideline and all other contribution rules carefully; otherwise, your request may be denied.
158

16-
## Coding Style
9+
- Fork the repository to create your own copy.
10+
- Create a new branch for your changes (e.g., feature/my-feature).
11+
- Make your changes and verify everything works correctly.
12+
- Commit your changes with clear and concise messages.
13+
- Push your branch to your forked repository.
14+
- Open a pull request to the main repository’s main branch with a detailed description of your changes.
15+
- Reference any related issues or discussions in your pull request.
16+
17+
To ensure your implementation is effective and maintainable by other developers, please follow the code quality guidelines outlined below.
1718

1819
- Keep your code clean and well-organized.
1920
- Add comments to explain complex logic or functions.
@@ -23,8 +24,6 @@ I am excited that you're considering contributing to our project! Here are some
2324
- Avoid code duplication by reusing existing functions or modules.
2425
- Ensure your code is easily readable and maintainable by others.
2526

26-
## Issues
27-
2827
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.
2928

3029
🐟 Bugfish

.gitignore

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
# This is just an internal File to ignore Files during git operations
22

3-
# Block a File
4-
# folder/file.php
5-
# Block a Folder
6-
# folder/
7-
83
# Ignore all htaccess & htpasswd Files
9-
# **/.htaccess*
10-
# **/.htpasswd*
4+
**/.htaccess*
5+
**/.htpasswd*

CONTRIBUTING.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,19 @@
22

33
I am excited that you're considering contributing to our project! Here are some guidelines to help you get started.
44

5-
## How to Contribute
5+
We primarily accept security fixes and critical patches to maintain project stability and coherence. Feature updates are not accepted to preserve our backend architecture and overall project integrity.
66

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.
7+
Below is an example of how to contribute to this GitHub project. Please follow this guideline and all other contribution rules carefully; otherwise, your request may be denied.
158

16-
## Coding Style
9+
- Fork the repository to create your own copy.
10+
- Create a new branch for your changes (e.g., feature/my-feature).
11+
- Make your changes and verify everything works correctly.
12+
- Commit your changes with clear and concise messages.
13+
- Push your branch to your forked repository.
14+
- Open a pull request to the main repository’s main branch with a detailed description of your changes.
15+
- Reference any related issues or discussions in your pull request.
16+
17+
To ensure your implementation is effective and maintainable by other developers, please follow the code quality guidelines outlined below.
1718

1819
- Keep your code clean and well-organized.
1920
- Add comments to explain complex logic or functions.
@@ -23,8 +24,6 @@ I am excited that you're considering contributing to our project! Here are some
2324
- Avoid code duplication by reusing existing functions or modules.
2425
- Ensure your code is easily readable and maintainable by others.
2526

26-
## Issues
27-
2827
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.
2928

3029
🐟 Bugfish

_changelogs/4.10.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<b>Release 4.10</b><br /> - Bugfish Framework 4.10 update on dolibarr module
484 KB
Binary file not shown.

0 commit comments

Comments
 (0)