Skip to content

Commit 231d4e5

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

3 files changed

Lines changed: 113 additions & 1 deletion

File tree

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