-
Notifications
You must be signed in to change notification settings - Fork 22
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 #531 from bitpredator/dev
chore: removed unused files in es_extended
- Loading branch information
Showing
16 changed files
with
192 additions
and
345 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,6 @@ | ||
# Changelog | ||
|
||
<!-- ⚠⚠ Please follow the format provided ⚠⚠ --> | ||
<!-- Always use "1." at the start instead of "2. " or "X. " as GitHub will auto renumber everything. --> | ||
<!-- Use the following format below --> | ||
<!-- 1. [Changed Area] Title of changes - @github username --> |
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,52 @@ | ||
# Welcome | ||
|
||
Welcome to the "Empiretown" project repository. Thank you for your interest in contributing to the project. Full details and guidelines on how to ensure this project is managed well are included below. | ||
|
||
## Helping others | ||
|
||
Please help other contributors to the project wherever you can, as people all start somewhere. If you require assistance or wish to provide assistance you can ask/answer questions on the `#dev-support` channel on discord. | ||
|
||
## Contributing to the project | ||
|
||
As this is an open source project, anyone is free to contribute as much or as little as they like. If you're just getting started with GitHub or project contributions then we suggest you take a look at issues on the repository. These issues will vary in complexity depending on the issue itself. | ||
|
||
If you're comfortable contributing to Open Source projects on GitHub please ensure you read our expectations for issue tracking, feature proposals and pull requests. | ||
|
||
## Testing the project | ||
|
||
If changes are made they should always be tested to make sure they work as intended and don't conflict with other systems. If you see a pull request open it's recommended that you test the features that were implemented to check for errors or it works as intended. | ||
|
||
## Issue Tracking | ||
|
||
If you require **support** with the bpt_doorlock, please utilise the channels on our official [Discord](https://discord.gg/YYrdWu4mQP). Issues regarding the features or bugs will not be handled on Discord. Please use GitHub issues to track new features or bugs. | ||
|
||
When submitting an issue, there's a few guidelines we'd ask you to respect to make it easier to manage and for others to understand: | ||
* **Search the issue tracker** before you submit your issue - it may already be present. | ||
* When opening an issue, a template is provided for you. Please provide as much information as requested to ensure others are able to act upon the requests or bug report. | ||
* Please ensure you add screenshots or documentation references for bugs/changes so we can quickly ascertain if the request is suitable. | ||
|
||
**In order to be 'assigned' an issue**, please comment on the issue itself letting others know you are working on it. | ||
|
||
## Pull Requests | ||
|
||
We welcome pull requests with fixes and improvements to the project. | ||
|
||
The work-flow for submitting a new pull request is designed to be simple, but also to ensure consistency from **all** contributors: | ||
* Fork the project into your personal space on GitHub.com. | ||
* Add changes to CHANGELOG.md with credits to yourself. | ||
* Commit your changes. | ||
* When writing commit messages make sure they are clear about what has been changed. | ||
* Push the commit(s) to your fork. | ||
* Submit a pull request (PR) to the master branch. | ||
* The PR title should describe the change that has been made. | ||
* Follow the PR template and write as much detail as necessary for your changes and include documents/screenshots if needed. | ||
* Be prepared to answer any questions about your PR when it is reviewed for acceptance. | ||
|
||
**Please** keep your changes in a single PR as small as possible (relating to one issue) as this makes it easier to review and accept. Large PRs with a small error will prevent the entire PR from being accepted. | ||
|
||
**Ensure** that you include a CHANGELOG with your PR. | ||
|
||
## Expectations | ||
As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities. | ||
|
||
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, issues and other contributions that are not aligned to this Code of Conduct. |
This file was deleted.
Oops, something went wrong.
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,65 @@ | ||
name: "🐛 Bug Report" | ||
description: Create a new ticket for a bug. | ||
title: "🐛 [BUG] - <title>" | ||
labels: [ | ||
"bug" | ||
] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: "Description" | ||
description: Please enter an explicit description of your issue | ||
placeholder: Short and explicit description of your incident... | ||
validations: | ||
required: true | ||
- type: input | ||
id: reprod-url | ||
attributes: | ||
label: "Reproduction URL" | ||
description: Please enter your GitHub URL to provide a reproduction of the issue | ||
placeholder: ex. https://github.com/USERNAME/REPO-NAME | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reprod | ||
attributes: | ||
label: "Reproduction steps" | ||
description: Please enter an explicit description of your issue | ||
value: | | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
render: bash | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: screenshot | ||
attributes: | ||
label: "Screenshots" | ||
description: If applicable, add screenshots to help explain your problem. | ||
value: | | ||
![DESCRIPTION](LINK.png) | ||
render: bash | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: "Logs" | ||
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. | ||
render: bash | ||
validations: | ||
required: false | ||
- type: dropdown | ||
id: os | ||
attributes: | ||
label: "OS" | ||
description: What is the impacted environment ? | ||
multiple: true | ||
options: | ||
- Windows | ||
- Linux | ||
validations: | ||
required: false |
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,24 @@ | ||
<!-- ⚠⚠ Do not delete this pull request template! ⚠⚠ --> | ||
<!-- Pull requests that do not follow this template are likely to be ignored. --> | ||
|
||
Fixes #[issue_no] | ||
### All Submissions: | ||
|
||
* [ ] Have you followed the guidelines in our Contributing document? | ||
* [ ] Have you checked to ensure there aren't other open [Pull Requests](../../../pulls) for the same update/change? | ||
|
||
<!-- You can erase any parts of this template not applicable to your Pull Request. --> | ||
|
||
### New Feature Submissions: | ||
|
||
1. [ ] Does your submission pass tests? | ||
2. [ ] Have you lint your code locally prior to submission? | ||
|
||
### Changes to Core Features: | ||
|
||
* [ ] Have you added an explanation of what your changes do and why you'd like us to include them? | ||
* [ ] Have you written new tests for your core changes, as applicable? | ||
* [ ] Have you successfully ran tests with your changes locally? | ||
|
||
<!-- You may optionally provide your discord username, so that we may contact you directly about the issue. --> | ||
Discord username (if different from GitHub): |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.