-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
71 additions
and
0 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,43 @@ | ||
name: Report a bug | ||
description: Report a bug, for example, the extension crashes, or one of the features doesn't work correctly, etc. | ||
title: '[Bug]: ' | ||
labels: ['bug'] | ||
assignees: | ||
- racz16 | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: While most of the fields are not required, please give me as much information as possible to be able to reproduce the problem. | ||
- type: input | ||
id: extension-version | ||
attributes: | ||
label: The extension's version | ||
description: You can find it in the extensions's page in the **Extensions** tab, next to the extension's name. | ||
placeholder: eg. 1.3.6 | ||
- type: input | ||
id: vs-code-version | ||
attributes: | ||
label: VS Code's version | ||
description: You can find it in **Help** / **About**. | ||
placeholder: eg. 1.84.1 | ||
- type: dropdown | ||
id: extension-host | ||
attributes: | ||
label: Extension host | ||
description: Choose **Desktop VS Code** if you downloaded VS Code, and choose **Web VS Code**, if you used <https://vscode.dev>, <https://github.dev>, or similar. | ||
options: | ||
- Desktop VS Code | ||
- Web VS Code | ||
- type: input | ||
id: operating-system | ||
attributes: | ||
label: Operating system | ||
description: Please provide the CPU architecture as well, like x64, or ARM64, etc. | ||
placeholder: eg. Windows 11 x64 | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Please provide information, like what have you done when the problem happened, what exactly happened, error messages, logs, pictures, etc. | ||
validations: | ||
required: true |
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 @@ | ||
blank_issues_enabled: 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,16 @@ | ||
name: Request a feature | ||
description: Request a completely new feature or the enhancement of an already existing feature. | ||
title: '[Feature]: ' | ||
labels: ['enhancement'] | ||
assignees: | ||
- racz16 | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: At the moment, the extension is not under regular development. Sometimes there are new releases, but they usually only contain bug fixes and sometimes very small features. If you have a feature request, feel free to create an issue, but I don't promise, that I'll implement it. | ||
- type: textarea | ||
id: feature-details | ||
attributes: | ||
label: Feature details | ||
validations: | ||
required: true |
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,11 @@ | ||
name: Other | ||
description: If you have a question, a suggestion, or anything that is not a bug report and not a feature request. | ||
assignees: | ||
- racz16 | ||
body: | ||
- type: textarea | ||
id: content | ||
attributes: | ||
label: Content | ||
validations: | ||
required: true |