Skip to content

Commit dbde324

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

3 files changed

Lines changed: 107 additions & 1 deletion

File tree

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
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: input
17+
id: versionPS
18+
attributes:
19+
label: yt-download.ps1 Version
20+
description: Run "yt-download.ps1 -version"
21+
placeholder: 2.5.0
22+
validations:
23+
required: true
24+
regex: '^\d+\.\d+\.\d+'
25+
- type: input
26+
id: versionJS
27+
attributes:
28+
label: UserScript Version (optional)
29+
description: Check `yt-dlp` in the Tampermonkey dashboard
30+
placeholder: 2.0.0
31+
validations:
32+
required: false
33+
regex: '^\d+\.\d+\.\d+'
34+
- type: textarea
35+
id: reproduction
36+
attributes:
37+
label: Steps to Reproduce
38+
description: Describe the bug and share the steps required to reproduce the behavior (you can past screenshots)
39+
placeholder: |
40+
1. Go to '...'
41+
2. Click on '...'
42+
3. Scroll down to '...'
43+
validations:
44+
required: true
45+
- type: textarea
46+
id: result
47+
attributes:
48+
label: Result
49+
description: What unexpectedly happens ?
50+
placeholder: |
51+
Paste any error, output or helpul screenshot.
52+
validations:
53+
required: true
54+
- type: textarea
55+
id: expectation
56+
attributes:
57+
label: Expectation (optional)
58+
description: What should happen ?
59+
placeholder: |
60+
Just work, obviously…
61+
validations:
62+
required: false
63+
- type: textarea
64+
id: comment
65+
attributes:
66+
label: Any other comment here
67+
placeholder: |
68+
If you know what lines in the script is involved, any details could help.
69+
validations:
70+
required: false
71+
- type: textarea
72+
id: PStable
73+
attributes:
74+
label: Powershell version and environment
75+
description: Run "$PSversionTable" and paste the content here
76+
render: pwsh
77+
placeholder: |
78+
Name Value
79+
---- -----
80+
PSVersion 7.6.2
81+
PSEdition Core
82+
GitCommitId 7.6.2
83+
OS Microsoft Windows 10.0.26200
84+
Platform Win32NT
85+
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0…}
86+
PSRemotingProtocolVersion 2.4
87+
SerializationVersion 1.1.0.1
88+
WSManStackVersion 3.0
89+
validations:
90+
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)