-
Notifications
You must be signed in to change notification settings - Fork 357
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new issue templates for DRAW, Mesh, Coding, Build, Samples, Testing, Modeling, and Configuration
- Loading branch information
Showing
29 changed files
with
1,918 additions
and
0 deletions.
There are no files selected for viewing
102 changes: 102 additions & 0 deletions
102
.github/ISSUE_TEMPLATE/Application Framework Bug Report.yaml
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,102 @@ | ||
name: "Application Framework Bug Report" | ||
description: "Report a bug related to the Application Framework" | ||
labels: ["1. Application Framework", "2. Bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
**Please provide the following information:** | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: "A detailed description of the bug" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected_behavior | ||
attributes: | ||
label: Expected Behavior | ||
description: "What you expected to happen" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: actual_behavior | ||
attributes: | ||
label: Actual Behavior | ||
description: "What actually happened" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: sample_code | ||
attributes: | ||
label: Sample Code or DRAW Tcl Script | ||
description: "Provide a C++ sample or DRAW Tcl script to reproduce the issue" | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: os | ||
attributes: | ||
label: Operating System | ||
description: "Select the operating system" | ||
options: | ||
- Linux | ||
- Windows | ||
- macOS | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: compiler | ||
attributes: | ||
label: Compiler | ||
description: "Select the compiler" | ||
options: | ||
- GCC | ||
- Clang | ||
- MSVC | ||
validations: | ||
required: true | ||
- type: input | ||
id: compiler_version | ||
attributes: | ||
label: Compiler Version | ||
description: "Specify the compiler version (optional)" | ||
- type: dropdown | ||
id: bitness | ||
attributes: | ||
label: Bitness | ||
description: "Select the bitness" | ||
options: | ||
- 32-bit | ||
- 64-bit | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: occt_version | ||
attributes: | ||
label: OCCT Version | ||
description: "Select the OCCT version where the issue was detected" | ||
options: | ||
- 7.4 | ||
- 7.5 | ||
- 7.6 | ||
- 7.8 | ||
- 7.9 | ||
- latest | ||
validations: | ||
required: true | ||
- type: input | ||
id: precise_occt_version | ||
attributes: | ||
label: Precise OCCT Version or Branch | ||
description: "Specify the precise OCCT version, branch, or SSH (optional)" | ||
- type: input | ||
id: environment | ||
attributes: | ||
label: Environment | ||
description: "Details about your environment (OS, compiler, etc.)" | ||
- type: textarea | ||
id: additional_files | ||
attributes: | ||
label: Additional Files | ||
description: "Attach any additional files that may help in reproducing the issue" |
34 changes: 34 additions & 0 deletions
34
.github/ISSUE_TEMPLATE/Application Framework Feature Request.yaml
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,34 @@ | ||
name: "Application Framework Feature Request" | ||
description: "Request a new feature or enhancement for the Application Framework" | ||
labels: ["1. Application Framework", "2. Enhancement"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
**Please provide the following information:** | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: "A detailed description of the feature request" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: use_case | ||
attributes: | ||
label: Use Case | ||
description: "Describe the use case for the feature" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: benefits | ||
attributes: | ||
label: Benefits | ||
description: "Explain the benefits of the feature" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: additional_context | ||
attributes: | ||
label: Additional Context | ||
description: "Any additional context or information" |
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,102 @@ | ||
name: "Build Bug Report" | ||
description: "Report a bug related to the build process" | ||
labels: ["1. Build", "2. Bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
**Please provide the following information:** | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: "A detailed description of the bug" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected_behavior | ||
attributes: | ||
label: Expected Behavior | ||
description: "What you expected to happen" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: actual_behavior | ||
attributes: | ||
label: Actual Behavior | ||
description: "What actually happened" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: sample_code | ||
attributes: | ||
label: Sample Code or DRAW Tcl Script | ||
description: "Provide a C++ sample or DRAW Tcl script to reproduce the issue" | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: os | ||
attributes: | ||
label: Operating System | ||
description: "Select the operating system" | ||
options: | ||
- Linux | ||
- Windows | ||
- macOS | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: compiler | ||
attributes: | ||
label: Compiler | ||
description: "Select the compiler" | ||
options: | ||
- GCC | ||
- Clang | ||
- MSVC | ||
validations: | ||
required: true | ||
- type: input | ||
id: compiler_version | ||
attributes: | ||
label: Compiler Version | ||
description: "Specify the compiler version (optional)" | ||
- type: dropdown | ||
id: bitness | ||
attributes: | ||
label: Bitness | ||
description: "Select the bitness" | ||
options: | ||
- 32-bit | ||
- 64-bit | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: occt_version | ||
attributes: | ||
label: OCCT Version | ||
description: "Select the OCCT version where the issue was detected" | ||
options: | ||
- 7.4 | ||
- 7.5 | ||
- 7.6 | ||
- 7.8 | ||
- 7.9 | ||
- latest | ||
validations: | ||
required: true | ||
- type: input | ||
id: precise_occt_version | ||
attributes: | ||
label: Precise OCCT Version or Branch | ||
description: "Specify the precise OCCT version, branch, or SSH (optional)" | ||
- type: input | ||
id: environment | ||
attributes: | ||
label: Environment | ||
description: "Details about your environment (OS, compiler, etc.)" | ||
- type: textarea | ||
id: additional_files | ||
attributes: | ||
label: Additional Files | ||
description: "Attach any additional files that may help in reproducing the issue" |
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,34 @@ | ||
name: "Build Feature Request" | ||
description: "Request a new feature or enhancement for the build process" | ||
labels: ["1. Build", "2. Enhancement"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
**Please provide the following information:** | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: "A detailed description of the feature request" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: use_case | ||
attributes: | ||
label: Use Case | ||
description: "Describe the use case for the feature" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: benefits | ||
attributes: | ||
label: Benefits | ||
description: "Explain the benefits of the feature" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: additional_context | ||
attributes: | ||
label: Additional Context | ||
description: "Any additional context or information" |
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,102 @@ | ||
name: "Coding Bug Report" | ||
description: "Report a bug related to coding" | ||
labels: ["1. Coding", "2. Bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
**Please provide the following information:** | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: "A detailed description of the bug" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected_behavior | ||
attributes: | ||
label: Expected Behavior | ||
description: "What you expected to happen" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: actual_behavior | ||
attributes: | ||
label: Actual Behavior | ||
description: "What actually happened" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: sample_code | ||
attributes: | ||
label: Sample Code or DRAW Tcl Script | ||
description: "Provide a C++ sample or DRAW Tcl script to reproduce the issue" | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: os | ||
attributes: | ||
label: Operating System | ||
description: "Select the operating system" | ||
options: | ||
- Linux | ||
- Windows | ||
- macOS | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: compiler | ||
attributes: | ||
label: Compiler | ||
description: "Select the compiler" | ||
options: | ||
- GCC | ||
- Clang | ||
- MSVC | ||
validations: | ||
required: true | ||
- type: input | ||
id: compiler_version | ||
attributes: | ||
label: Compiler Version | ||
description: "Specify the compiler version (optional)" | ||
- type: dropdown | ||
id: bitness | ||
attributes: | ||
label: Bitness | ||
description: "Select the bitness" | ||
options: | ||
- 32-bit | ||
- 64-bit | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: occt_version | ||
attributes: | ||
label: OCCT Version | ||
description: "Select the OCCT version where the issue was detected" | ||
options: | ||
- 7.4 | ||
- 7.5 | ||
- 7.6 | ||
- 7.8 | ||
- 7.9 | ||
- latest | ||
validations: | ||
required: true | ||
- type: input | ||
id: precise_occt_version | ||
attributes: | ||
label: Precise OCCT Version or Branch | ||
description: "Specify the precise OCCT version, branch, or SSH (optional)" | ||
- type: input | ||
id: environment | ||
attributes: | ||
label: Environment | ||
description: "Details about your environment (OS, compiler, etc.)" | ||
- type: textarea | ||
id: additional_files | ||
attributes: | ||
label: Additional Files | ||
description: "Attach any additional files that may help in reproducing the issue" |
Oops, something went wrong.