Skip to content

Commit 87f1a08

Browse files
committed
chore: bug report template
1 parent d8c6afa commit 87f1a08

3 files changed

Lines changed: 110 additions & 1 deletion

File tree

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
name: "Bug Report"
2+
description: "File a bug report to help us improve"
3+
title: "[BUG]: "
4+
labels: ["bug", "triage"]
5+
assignees: ["Fred-Vatin"]
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Before posting, please :
11+
12+
1. Check if a similar [issue](https://github.com/Fred-Vatin/run-yt-dlp-from-browser/issues) has already been posted.
13+
2. Run `yt-download.ps1 -version`. ([Wiki](https://github.com/Fred-Vatin/run-yt-dlp-from-browser/wiki/TIPS:-Run-the-script-as-a-command-from-everywhere))
14+
15+
Thanks for your help !
16+
- type: markdown
17+
attributes:
18+
value: |
19+
## *yt-download.ps1* Version
20+
- type: input
21+
id: versionPS
22+
attributes:
23+
label: " "
24+
description: Run "yt-download.ps1 -version"
25+
placeholder: 2.5.0
26+
validations:
27+
required: true
28+
regex: '^\d+\.\d+\.\d+'
29+
- type: input
30+
id: versionJS
31+
attributes:
32+
label: UserScript Version (optional)
33+
description: Check `yt-dlp` in the Tampermonkey dashboard
34+
placeholder: 2.0.0
35+
validations:
36+
required: false
37+
regex: '^\d+\.\d+\.\d+'
38+
- type: textarea
39+
id: reproduction
40+
attributes:
41+
label: Steps to Reproduce
42+
description: Describe the bug and share the steps required to reproduce the behavior (you can past screenshots)
43+
placeholder: |
44+
1. Go to '...'
45+
2. Click on '...'
46+
3. Scroll down to '...'
47+
validations:
48+
required: true
49+
- type: textarea
50+
id: result
51+
attributes:
52+
label: Result
53+
description: What unexpectedly happens ?
54+
placeholder: |
55+
Paste any error, output or helpul screenshot.
56+
validations:
57+
required: true
58+
- type: textarea
59+
id: expectation
60+
attributes:
61+
label: Expectation (optional)
62+
description: What should happen ?
63+
placeholder: |
64+
Just work, obviously…
65+
validations:
66+
required: false
67+
- type: textarea
68+
id: comment
69+
attributes:
70+
label: Any other comment here
71+
placeholder: |
72+
If you know what lines in the script is involved, any details could help.
73+
validations:
74+
required: false
75+
- type: textarea
76+
id: PStable
77+
attributes:
78+
label: Powershell version and environment
79+
description: Run "$PSversionTable" and paste the content here
80+
placeholder: |
81+
Name Value
82+
---- -----
83+
PSVersion 7.6.2
84+
PSEdition Core
85+
GitCommitId 7.6.2
86+
OS Microsoft Windows 10.0.26200
87+
Platform Win32NT
88+
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0…}
89+
PSRemotingProtocolVersion 2.4
90+
SerializationVersion 1.1.0.1
91+
WSManStackVersion 3.0
92+
validations:
93+
required: true
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: '[FEATURE] '
5+
labels: enhancement
6+
assignees: 'Fred-Vatin'
7+
---
8+
9+
## Is your feature request related to a problem?
10+
A clear and concise description of what the problem is. You can refer an existing issue.
11+
12+
## Describe the solution you'd like
13+
A clear and concise description of what you want to happen.
14+
15+
## Describe alternatives you've considered
16+
A clear and concise description of any alternative solutions or features you've considered.

powershell/yt-download.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ param(
1111
# Stop the script if an error occurs.
1212
$ErrorActionPreference = 'Stop'
1313

14-
$ScriptVersion = "2.5.0.b1"
14+
$ScriptVersion = "2.5.0-beta.1"
1515

1616
function TerminateWithError {
1717
param(

0 commit comments

Comments
 (0)