Spaces:
Running
Running
add security policy, config.yml for issue templates and add pull request template
Browse files
.github/ISSUE_TEMPLATE/bug_report.md
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
name: Bug report
|
3 |
+
about: Create a report to help us improve
|
4 |
+
title: "[BUG] <your bug report title>"
|
5 |
+
labels: bug
|
6 |
+
assignees: ''
|
7 |
+
|
8 |
+
---
|
9 |
+
|
10 |
+
<!-- PLEASE FILL THESE FIELDS, IT REALLY HELPS THE MAINTAINERS OF Websurfx -->
|
11 |
+
|
12 |
+
**Version of Websurfx, commit number if you are using on master branch**
|
13 |
+
<!-- If you are running on master branch using git execute this command
|
14 |
+
in order to fetch the latest commit ID:
|
15 |
+
```
|
16 |
+
git log -1
|
17 |
+
```
|
18 |
+
-->
|
19 |
+
|
20 |
+
**How did you install Websurfx?**
|
21 |
+
<!-- Did you install Websurfx following the README ? -->
|
22 |
+
|
23 |
+
**What happened?**
|
24 |
+
<!-- A clear and concise description of what the bug is. -->
|
25 |
+
|
26 |
+
**Steps To Reproduce**
|
27 |
+
<!-- How can we reproduce this issue? (as minimally and as precisely as possible) -->
|
28 |
+
|
29 |
+
**Expected behavior**
|
30 |
+
<!-- A clear and concise description of what you expected to happen. -->
|
31 |
+
|
32 |
+
**Screenshots**
|
33 |
+
<!-- If applicable, provide screenshots to help explain your problem better. -->
|
34 |
+
|
35 |
+
**Additional context**
|
36 |
+
<!-- Add any other context about the problem here. -->
|
.github/ISSUE_TEMPLATE/config.yml
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
blank_issues_enabled: true
|
.github/ISSUE_TEMPLATE/engine-request.md
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
name: Engine request
|
3 |
+
about: 'Suggest a new engine to be add '
|
4 |
+
title: "[ENGINE] <your engine request title>"
|
5 |
+
labels: engine
|
6 |
+
assignees: ''
|
7 |
+
|
8 |
+
---
|
9 |
+
|
10 |
+
<!-- PLEASE FILL THESE FIELDS, IT REALLY HELPS THE MAINTAINERS OF Websurfx -->
|
11 |
+
|
12 |
+
**Working URL of the engine**
|
13 |
+
<!-- Please check if the engine is responding correctly before submitting it. -->
|
14 |
+
|
15 |
+
**Why do you want to add this engine?**
|
16 |
+
<!-- What's special about this engine? Is it open source or libre? -->
|
17 |
+
|
18 |
+
**Features of this engine**
|
19 |
+
<!-- Features of this engine: Doesn't track its users, fast, easy to integrate, ... -->
|
20 |
+
|
21 |
+
**Applicable category of this engine**
|
22 |
+
<!-- Where should this new engine fit in Websurfx? Current categories in Websurfx:
|
23 |
+
general, files, images, it, map, music, news, science, social media and videos.
|
24 |
+
You can add multiple categories at the same time. -->
|
25 |
+
|
26 |
+
**Additional context**
|
27 |
+
<!-- Add any other context about this engine here. -->
|
.github/ISSUE_TEMPLATE/feature_request.md
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
name: Feature request
|
3 |
+
about: Suggest an idea for this project
|
4 |
+
title: "[FEATURE] <your feature request title>"
|
5 |
+
labels: enhancement
|
6 |
+
assignees: ''
|
7 |
+
|
8 |
+
---
|
9 |
+
|
10 |
+
**Is your feature request related to a problem? Please describe.**
|
11 |
+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
12 |
+
|
13 |
+
**Describe the solution you'd like**
|
14 |
+
A clear and concise description of what you want to happen.
|
15 |
+
|
16 |
+
**Describe alternatives you've considered**
|
17 |
+
A clear and concise description of any alternative solutions or features you've considered.
|
18 |
+
|
19 |
+
**Additional context**
|
20 |
+
Add any other context or screenshots about the feature request here.
|
PULL_REQUEST_TEMPLATE.md
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
## What does this PR do?
|
2 |
+
|
3 |
+
<!-- MANDATORY -->
|
4 |
+
|
5 |
+
<!-- explain the changes in your PR, algorithms, design, architecture -->
|
6 |
+
|
7 |
+
## Why is this change important?
|
8 |
+
|
9 |
+
<!-- MANDATORY -->
|
10 |
+
|
11 |
+
<!-- explain the motivation behind your PR -->
|
12 |
+
|
13 |
+
## How to test this PR locally?
|
14 |
+
|
15 |
+
<!-- commands to run the tests or instructions to test the changes-->
|
16 |
+
|
17 |
+
## Author's checklist
|
18 |
+
|
19 |
+
<!-- additional notes for reviewiers -->
|
20 |
+
|
21 |
+
## Related issues
|
22 |
+
|
23 |
+
<!--
|
24 |
+
Closes #234
|
25 |
+
-->
|
SECURITY.md
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Security Policy
|
2 |
+
|
3 |
+
We love responsible reports of (potential) security issues in Websurfx.
|
4 |
+
|
5 |
+
Be sure to provide as much information as possible and if found also reproduction steps of the identified vulnerability. Also add the specific URL of the project as well as code you found the issue in to your report.
|