mirror of
https://github.com/nathom/streamrip.git
synced 2025-05-12 22:26:16 -04:00
Merge branch 'main' into dev
This commit is contained in:
commit
ff5d0fbd17
5 changed files with 34 additions and 48 deletions
|
@ -1,6 +1,7 @@
|
||||||
name: Bug report
|
name: 🐛 Bug Report
|
||||||
description: Create a report to help us improve streamrip
|
description: Create a report to help us improve streamrip
|
||||||
labels: bug
|
labels: bug
|
||||||
|
title: "[BUG] <title>"
|
||||||
body:
|
body:
|
||||||
# types: dropdown, textarea, input
|
# types: dropdown, textarea, input
|
||||||
# - type: dropdown
|
# - type: dropdown
|
||||||
|
@ -26,13 +27,8 @@ body:
|
||||||
label: Command Used
|
label: Command Used
|
||||||
description: |
|
description: |
|
||||||
The command that you typed that caused the error
|
The command that you typed that caused the error
|
||||||
placeholder: |
|
placeholder: e.g. rip url https://example.com
|
||||||
For example:
|
render: "bash"
|
||||||
`rip url https://example.com`
|
|
||||||
|
|
||||||
- type: markdown
|
|
||||||
attributes:
|
|
||||||
value: "```\n"
|
|
||||||
|
|
||||||
- type: textarea
|
- type: textarea
|
||||||
validations:
|
validations:
|
||||||
|
@ -44,14 +40,8 @@ body:
|
||||||
For example, if the problematic command was `rip url https://example.com`, then
|
For example, if the problematic command was `rip url https://example.com`, then
|
||||||
you would run `rip url https://example.com -vvv` to get the debug logs.
|
you would run `rip url https://example.com -vvv` to get the debug logs.
|
||||||
Make sure to check the logs for any personal information such as emails and remove them.
|
Make sure to check the logs for any personal information such as emails and remove them.
|
||||||
|
render: "text"
|
||||||
- type: markdown
|
placeholder: Logs printed to terminal screen
|
||||||
attributes:
|
|
||||||
value: "```"
|
|
||||||
|
|
||||||
- type: markdown
|
|
||||||
attributes:
|
|
||||||
value: "```toml\n"
|
|
||||||
|
|
||||||
- type: textarea
|
- type: textarea
|
||||||
validations:
|
validations:
|
||||||
|
@ -61,10 +51,8 @@ body:
|
||||||
description: |
|
description: |
|
||||||
Find the config file using `rip config --open` and paste the contents here.
|
Find the config file using `rip config --open` and paste the contents here.
|
||||||
Make sure you REMOVE YOUR CREDENTIALS!
|
Make sure you REMOVE YOUR CREDENTIALS!
|
||||||
|
render: toml
|
||||||
- type: markdown
|
placeholder: Contents of config.toml
|
||||||
attributes:
|
|
||||||
value: "```"
|
|
||||||
|
|
||||||
- type: input
|
- type: input
|
||||||
validations:
|
validations:
|
||||||
|
@ -73,10 +61,6 @@ body:
|
||||||
label: Operating System
|
label: Operating System
|
||||||
placeholder: e.g. Windows, Linux, macOS...
|
placeholder: e.g. Windows, Linux, macOS...
|
||||||
|
|
||||||
- type: markdown
|
|
||||||
attributes:
|
|
||||||
value: "```\n"
|
|
||||||
|
|
||||||
- type: input
|
- type: input
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
|
@ -85,10 +69,6 @@ body:
|
||||||
description: Run `rip --version` to check.
|
description: Run `rip --version` to check.
|
||||||
placeholder: e.g. 1.5
|
placeholder: e.g. 1.5
|
||||||
|
|
||||||
- type: markdown
|
|
||||||
attributes:
|
|
||||||
value: "```"
|
|
||||||
|
|
||||||
- type: textarea
|
- type: textarea
|
||||||
attributes:
|
attributes:
|
||||||
label: Screenshots and recordings
|
label: Screenshots and recordings
|
19
.github/ISSUE_TEMPLATE/feature_request.md
vendored
19
.github/ISSUE_TEMPLATE/feature_request.md
vendored
|
@ -1,19 +0,0 @@
|
||||||
---
|
|
||||||
name: "\U0001F680 Feature Request"
|
|
||||||
about: "I have a suggestion (and may want to implement it \U0001F642)!"
|
|
||||||
title: 'Feature Request: '
|
|
||||||
labels: enhancement
|
|
||||||
assignees: ''
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Feature Request
|
|
||||||
|
|
||||||
**Is your feature request related to a problem? Please describe.**
|
|
||||||
A clear and concise description of what the problem is. Ex. I have an issue when [...]
|
|
||||||
|
|
||||||
**Describe the solution you'd like**
|
|
||||||
A clear and concise description of what you want to happen. Add any considered drawbacks.
|
|
||||||
|
|
||||||
**Describe alternatives you've considered**
|
|
||||||
A clear and concise description of any alternative solutions or features you've considered.
|
|
25
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
Normal file
25
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
name: 🚀 Feature Request
|
||||||
|
description: Suggest a feature that would improve streamrip
|
||||||
|
labels: enhancement
|
||||||
|
title: "[FEATURE] <title>"
|
||||||
|
body:
|
||||||
|
- type: textarea
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
attributes:
|
||||||
|
label: Is the feature request related to a problem. Please describe it.
|
||||||
|
placeholder: I have an issue when...
|
||||||
|
|
||||||
|
- type: textarea
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
attributes:
|
||||||
|
label: Describe the solution you would like.
|
||||||
|
description: A clear and concise description of what you want to happen. Add any considered drawbacks.
|
||||||
|
placeholder: I would like streamrip to...
|
||||||
|
|
||||||
|
- type: textarea
|
||||||
|
attributes:
|
||||||
|
label: Describe alternatives you've considered.
|
||||||
|
description: A clear and concise description of any alternative solutions or features you've considered.
|
||||||
|
placeholder: '"I have already tried X" or "I do Y as a temporary solution"'
|
|
@ -1,6 +1,6 @@
|
||||||
# streamrip
|
# streamrip
|
||||||
|
|
||||||
[](https://pypistats.org/packages/streamrip)
|
[](https://pepy.tech/project/streamrip)
|
||||||
[](https://github.com/python/black)
|
[](https://github.com/python/black)
|
||||||
|
|
||||||
A scriptable stream downloader for Qobuz, Tidal, Deezer and SoundCloud.
|
A scriptable stream downloader for Qobuz, Tidal, Deezer and SoundCloud.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue