-
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #477 from HotcakesCommerce/development
Sync dev and main
- Loading branch information
Showing
428 changed files
with
1,073 additions
and
584 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Contributor Covenant Code of Conduct | ||
|
||
## Our Pledge | ||
|
||
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. | ||
|
||
## Our Standards | ||
|
||
Examples of behavior that contributes to creating a positive environment include: | ||
|
||
* Using welcoming and inclusive language | ||
* Being respectful of differing viewpoints and experiences | ||
* Gracefully accepting constructive criticism | ||
* Focusing on what is best for the community | ||
* Showing empathy towards other community members | ||
|
||
Examples of unacceptable behavior by participants include: | ||
|
||
* The use of sexualized language or imagery and unwelcome sexual attention or advances | ||
* Trolling, insulting/derogatory comments, and personal or political attacks | ||
* Public or private harassment | ||
* Publishing others' private information, such as a physical or electronic address, without explicit permission | ||
* Other conduct which could reasonably be considered inappropriate in a professional setting | ||
|
||
## Our Responsibilities | ||
|
||
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. | ||
|
||
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. | ||
|
||
## Scope | ||
|
||
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. | ||
|
||
## Enforcement | ||
|
||
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [email protected]. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. | ||
|
||
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. | ||
|
||
## Attribution | ||
|
||
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] | ||
|
||
[homepage]: http://contributor-covenant.org | ||
[version]: http://contributor-covenant.org/version/1/4/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# How to contribute | ||
|
||
Community contributions are essential part of any open source project. The community has access to a large number of unique configurations which would be extremely difficult for the core maintainers to reproduce. We want to keep it as easy as possible to contribute changes that get things working in your environment. There are a few guidelines that we need contributors to follow so that we can have a chance of keeping on top of things. | ||
|
||
Make sure you have a [GitHub account](https://github.com/signup/free) to start with. | ||
|
||
## Level 1 contributions: easy ways to contribute | ||
There are several ways to contribute, depending on your background, level of expertise and willingness to spend some time. Everybody should be able to contribute on a minimal level: | ||
* Create or document issues | ||
* Create or improve documentation | ||
* Be a tester | ||
|
||
### Create issues | ||
Anybody with a GutHub account can create new issues. Please verify that a simlar issue has not been created before. Clearly describe the issue you encounter. | ||
|
||
### Create or improve documentation | ||
Create an issue with suggestions for document improvements. If you have an idea about the new documenation, add that text (prefereably in markdown format) in the issue as proposed new or improved documentation. | ||
|
||
### Be a tester | ||
Download an install version of the extension and test it in your own environment. If you are reviewing issues, try to reproduce issues that have been created and enhance documentation of the issue to reproduce any bugs. | ||
|
||
If there is a new version of an extension, be one of the first to test that new version on a fresh install and as an upgrade of a previous version. Report your findings as issues. | ||
|
||
# Level 2 contributions: Provide improved or new code | ||
If you are commited as community member and have programming skills, there is more that you can do: | ||
* Create code fixes | ||
* Create new functionality | ||
|
||
We asume that you have some basic Git(Hub) knowledge and know how to work with fork, clone, create issue, commit, push, pull requests | ||
|
||
## Get started with code contributions | ||
|
||
### Fork the repository on GitHub | ||
If this is your first time working with the repository, you will need to fork the repository to get your system configured for local development. | ||
|
||
If you are new to Dnn Development, you can start by watching this video playlist which explains how to setup the required tools, your development environment and submit pull requests for modules, the Platform and the Persona Bar. | ||
[How to make a pull requests playlist](https://www.youtube.com/playlist?list=PLIx1M8IdVvqZ0bnODGqJyxvONNPj5BzMP) | ||
|
||
* Click fork on the project. You will get a fork of the repository in your own GitHub account | ||
* Clone your fork locally with `git clone | ||
* Add the *upstream connection* to the original repository, so you can rebase and update your fork with `git remote add upstream` to the base (the original) repository | ||
* To update your fork to the latest, you can then run `git fetch upstream` followed by `git push` | ||
|
||
## Making Changes | ||
* Create a topic branch from where you want to base your work. This is usually a branch linked to the *issue #* your are trying to solve | ||
* Make commits of logical units | ||
* When ready to publish your changes, you can with `git push -u origin my_contribution` | ||
* Make sure your pull request description tags the GitHub issue ID, so it is clear what issue you have fixed | ||
* Make sure your commit messages are in the proper format | ||
|
||
## Submitting changes | ||
* Push your changes to a topic branch in your fork of the repository | ||
* Submit a pull request to the original (upstream( repository | ||
* The committers will handle updating the associated issue in the DNN Tracker to ensure it gets the necessary code review and QA | ||
|
||
## Acceptance of your changes | ||
* We have a group of fellow developers that review pull requests submitted by developers like yourself | ||
* If your changes look good, then changes are merged to an appropriate release | ||
* You should get an email notification as we complete processing of your pull request | ||
|
||
# Level 3 contributions: Become a repository custodian | ||
If you are really commited, want to work with highly commited team members (like yourself?) and want to contibute by taking care of one or more repositories, you might want to become a *repository custodian*. | ||
|
||
Contact one of the team members of the organisation and discuss the opportunities. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
github: hismightiness | ||
patreon: willstrohl | ||
custom: ["https://venmo.com/Will-Strohl","https://amzn.to/2WcD0jZ"] | ||
github: UpendoVentures |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,52 @@ | ||
--- | ||
name: Bug Report | ||
about: Create a report to help us improve | ||
|
||
--- | ||
|
||
## Describe the bug | ||
A clear and concise description of what the bug is. | ||
|
||
## Software Versions | ||
- DNN: 00.00.00 | ||
- Hotcakes: 00.00.00 | ||
|
||
## To Reproduce | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
## Expected behavior | ||
A clear and concise description of what you expected to happen. | ||
|
||
## Actual behavior | ||
A clear and concise description of what happened instead. | ||
|
||
## Screenshots | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
## Error log | ||
**Note: Debug DLL's** | ||
Please replace the current extension DLL's with the debug DLL's (if these are available with the release) and reproduce the error with the debug DLL's before pasting the error log. | ||
|
||
Paste the error log that is related to this issue. | ||
|
||
## Additional context | ||
Add any other context about the problem here. | ||
--- | ||
name: Bug Report | ||
about: Create a report to help us improve | ||
|
||
--- | ||
|
||
## Sponsorship | ||
<!-- | ||
Open-Source is not free. We need to eat too. ~wink!~ | ||
We manage a TON of DNN extensions... Look! | ||
https://upendoventures.com/What/CMS/DNN/Extensions | ||
--> | ||
|
||
If this request requires additional support (e.g., such as direct email/phone/meeting/development), I have the following interest in helping to [sponsor the effot via GitHub Sponsors](https://github.com/sponsors/UpendoVentures): | ||
|
||
- [ ] None, please continute to work for me for free :P | ||
- [ ] Absolutely, I get value out of this! | ||
- [ ] Maybe later | ||
- [ ] I'm already a sponsor... Woot! | ||
|
||
## Describe the bug | ||
A clear and concise description of what the bug is. | ||
|
||
## Software Versions | ||
- DNN: 00.00.00 | ||
- Hotcakes: 00.00.00 | ||
|
||
## To Reproduce | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
## Expected behavior | ||
A clear and concise description of what you expected to happen. | ||
|
||
## Actual behavior | ||
A clear and concise description of what happened instead. | ||
|
||
## Screenshots | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
## Error log | ||
**Note: Debug DLL's** | ||
Please replace the current extension DLL's with the debug DLL's (if these are available with the release) and reproduce the error with the debug DLL's before pasting the error log. | ||
|
||
Paste the error log that is related to this issue. | ||
|
||
## Additional context | ||
Add any other context about the problem here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,33 @@ | ||
--- | ||
name: Feature Request | ||
about: Suggest an idea for this project | ||
|
||
--- | ||
|
||
## Is your feature request related to a problem? | ||
**Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
## Describe the solution you'd like | ||
A clear and concise description of what you want to happen. | ||
|
||
## Describe alternatives you've considered | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
## Additional context | ||
Add any other context or screenshots about the feature request here. | ||
--- | ||
name: Feature Request | ||
about: Suggest an idea for this project | ||
|
||
--- | ||
|
||
## Sponsorship | ||
<!-- | ||
Open-Source is not free. We need to eat too. ~wink!~ | ||
We manage a TON of DNN extensions... Look! | ||
https://upendoventures.com/What/CMS/DNN/Extensions | ||
--> | ||
|
||
If this request requires additional support (e.g., such as direct email/phone/meeting/development), I have the following interest in helping to [sponsor the effot via GitHub Sponsors](https://github.com/sponsors/UpendoVentures): | ||
|
||
- [ ] None, please continute to work for me for free :P | ||
- [ ] Absolutely, I get value out of this! | ||
- [ ] Maybe later | ||
- [ ] I'm already a sponsor... Woot! | ||
|
||
## Is your feature request related to a problem? | ||
**Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
## Describe the solution you'd like | ||
A clear and concise description of what you want to happen. | ||
|
||
## Describe alternatives you've considered | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
## Additional context | ||
Add any other context or screenshots about the feature request here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,31 @@ | ||
--- | ||
name: Help and Other Questions | ||
about: Use this to ask questions that don't relate to features and bug reports | ||
|
||
--- | ||
|
||
## Please summarize your question in one sentence | ||
|
||
|
||
## Give a more extended description | ||
|
||
|
||
## Steps to reproduce (if needed) | ||
|
||
|
||
## Other comments or remarks | ||
--- | ||
name: Help and Other Questions | ||
about: Use this to ask questions that don't relate to features and bug reports | ||
|
||
--- | ||
|
||
## Sponsorship | ||
<!-- | ||
Open-Source is not free. We need to eat too. ~wink!~ | ||
We manage a TON of DNN extensions... Look! | ||
https://upendoventures.com/What/CMS/DNN/Extensions | ||
--> | ||
|
||
If this request requires additional support (e.g., such as direct email/phone/meeting/development), I have the following interest in helping to [sponsor the effot via GitHub Sponsors](https://github.com/sponsors/UpendoVentures): | ||
|
||
- [ ] None, please continute to work for me for free :P | ||
- [ ] Absolutely, I get value out of this! | ||
- [ ] Maybe later | ||
- [ ] I'm already a sponsor... Woot! | ||
|
||
## Please summarize your question in one sentence | ||
|
||
|
||
## Give a more extended description | ||
|
||
|
||
## Steps to reproduce (if needed) | ||
|
||
|
||
## Other comments or remarks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<!--- Provide a general summary of your changes in the Title above --> | ||
## Related to Issue | ||
Fixes # | ||
|
||
## Description | ||
<!--- Describe your changes in detail --> | ||
|
||
## How Has This Been Tested? | ||
<!--- Please describe in detail how you tested your changes. --> | ||
<!--- Include details of your testing environment, tests ran to see how --> | ||
<!--- your change affects other areas of the code, etc. --> | ||
|
||
## Screenshots (if appropriate): | ||
|
||
## Types of changes | ||
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> | ||
- [ ] Bug fix (non-breaking change which fixes an issue) | ||
- [ ] New feature (non-breaking change which adds functionality) | ||
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) | ||
|
||
## Checklist: | ||
<!--- Go over all the following points, and put an `x` in all the boxes that apply. --> | ||
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> | ||
- [ ] My code follows the code style of this project. | ||
- [ ] My change requires a change to the documentation. | ||
- [ ] I have updated the documentation accordingly. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.