Skip to content

Commit 6f7c45a

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

2 files changed

Lines changed: 55 additions & 1 deletion

File tree

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
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 check :
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
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: 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: dropdown
46+
id: OS
47+
attributes:
48+
label: Operating System
49+
options:
50+
- Windows
51+
- MacOS
52+
- Linux
53+
validations:
54+
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)