-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Clean up README for better clarity - Fix overly strict YouTube search criteria - Resolve FFmpeg execution issue - Rename to standard namespaces
- Loading branch information
Meyn
committed
Jan 14, 2025
1 parent
6d3a821
commit 8772cfa
Showing
45 changed files
with
468 additions
and
230 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
name: Bug Report | ||
about: Create a report to help us improve | ||
title: "[BUG]" | ||
labels: bug | ||
assignees: | ||
--- | ||
|
||
**Version** | ||
- Tubifarry Version: [e.g., v1.2.0] | ||
- Lidarr Version: [e.g., v1.0.0] | ||
- Operating System: [e.g., Windows 10, Ubuntu 20.04, Docker] | ||
|
||
**Describe the Bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**Feature Problem** | ||
Explain the specific feature or functionality that is not working as intended. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected Behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
<details> | ||
<summary>For Pictures click here</summary> | ||
|
||
Add screenshots here to help explain your problem. | ||
</details> | ||
|
||
**Additional Context** | ||
Add any other context about the problem here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# .github/ISSUE_TEMPLATE/config.yml | ||
|
||
# Disable blank issues (users must use a template) | ||
blank_issues_enabled: false | ||
|
||
# Set up contact links for additional support options | ||
contact_links: | ||
- name: 🐛 Bug Reports | ||
url: https://github.com/TypNull/Tubifarry/issues/new?template=bug_report.md | ||
about: Report a bug or unexpected behavior in Tubifarry. | ||
|
||
- name: ✨ Feature Requests | ||
url: https://github.com/TypNull/Tubifarry/issues/new?template=feature_request.md | ||
about: Suggest a new feature or improvement for Tubifarry. | ||
|
||
- name: ❓ Questions & Support | ||
url: https://github.com/TypNull/Tubifarry/discussions | ||
about: Ask questions or get help with Tubifarry in our Discussions forum. | ||
|
||
- name: 📚 Documentation | ||
url: https://github.com/TypNull/Tubifarry/wiki | ||
about: Check out the official documentation for Tubifarry. | ||
|
||
# Optional: Customize the order of templates (if you have multiple templates) | ||
# templates: | ||
# - feature_request.md | ||
# - bug_report.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
--- | ||
name: Feature Request | ||
about: Suggest an idea or improvement for Tubifarry | ||
title: "[FEATURE]" | ||
labels: enhancement | ||
assignees: | ||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. For example: | ||
- "I’m always frustrated when..." | ||
- "Currently, it’s difficult to..." | ||
|
||
**Describe the Solution You'd Like** | ||
A clear and concise description of what you want to happen. Include any specific functionality or changes you’d like to see. | ||
|
||
**Describe Alternatives You've Considered** | ||
A clear and concise description of any alternative solutions or features you've considered. This helps us understand your thought process and explore other options. | ||
|
||
**Additional Context** | ||
Add any other context, screenshots, or examples about the feature request here. For example: | ||
- Why this feature would be valuable. | ||
- How it aligns with the goals of Tubifarry. | ||
- Any technical considerations or constraints. | ||
|
||
<details> | ||
<summary>For Screenshots or Mockups, click here</summary> | ||
|
||
Add any relevant screenshots, diagrams, or mockups to illustrate your idea. | ||
</details> | ||
|
||
--- | ||
|
||
**Technical Details (Optional)** | ||
If you have technical expertise or ideas for implementation, feel free to share: | ||
- Proposed architecture or design. | ||
- APIs or libraries that could be used. | ||
- Any potential challenges or risks. | ||
|
||
--- | ||
|
||
**Contributions Welcome!** | ||
If you’re interested in contributing to this feature, let us know! We’re happy to guide you through the process. | ||
|
||
--- | ||
|
||
**Thank You!** | ||
We appreciate your feedback and ideas. Your input helps make Tubifarry better for everyone! 🎉 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Tubifarry/Core/FileCache.cs → Tubifarry/Core/Model/FileCache.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
using System.Text.Json; | ||
|
||
namespace Tubifarry.Core | ||
namespace Tubifarry.Core.Model | ||
{ | ||
public class FileCache | ||
{ | ||
|
Oops, something went wrong.