Skip to content

Commit 9da98d0

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

2 files changed

Lines changed: 88 additions & 1 deletion

File tree

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
name: "Bug Report"
2+
description: "File a bug report to help us improve"
3+
title: "[BUG]: "
4+
labels: ["bug", "triage"]
5+
assignees: []
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.
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: PStable
65+
attributes:
66+
label: Powershell version and environment
67+
description: Run "$PSversionTable" and paste the content here
68+
placeholder: |
69+
Name Value
70+
---- -----
71+
PSVersion 7.6.2
72+
PSEdition Core
73+
GitCommitId 7.6.2
74+
OS Microsoft Windows 10.0.26200
75+
Platform Win32NT
76+
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0…}
77+
PSRemotingProtocolVersion 2.4
78+
SerializationVersion 1.1.0.1
79+
WSManStackVersion 3.0
80+
validations:
81+
required: true
82+
- type: textarea
83+
id: comment
84+
attributes:
85+
label: Any other comment here
86+
validations:
87+
required: false

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)