[PR #1] [MERGED] refactored code; added support for Radarr #317

Closed
opened 2025-10-09 17:01:05 -05:00 by giteasync · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Cleanuparr/Cleanuparr/pull/1
Author: @Flaminel
Created: 11/12/2024
Status: Merged
Merged: 11/13/2024
Merged by: @Flaminel

Base: mainHead: add_radarr_support


📝 Commits (10+)

  • c09af63 refactored code; added support for Radarr
  • 963cc72 fixed error message; fixed var name
  • 71ddeda fixed radarr log
  • 418b09e fixed tab indentation
  • ab586fa fixed unnecessary request on empty collection
  • 65a1a86 fixed id selection based on instance type
  • 4a0ce17 renamed classes; added enabled flag on arrs; deprecated trigger env var
  • ad17974 added instance fail handling
  • 63f42fa removed all mentions of BlockedTorrent in favor of QueueCleaner
  • 75bcb05 changed env vars to be inline with the community standards; updated readme

📊 Changes

29 files changed (+484 additions, -314 deletions)

View changed files

📝 README.md (+31 -19)
code/Common/Configuration/ArrConfig.cs (+8 -0)
📝 code/Common/Configuration/ArrInstance.cs (+1 -1)
📝 code/Common/Configuration/QBitConfig.cs (+2 -0)
code/Common/Configuration/QuartzConfig.cs (+0 -6)
code/Common/Configuration/RadarrConfig.cs (+6 -0)
📝 code/Common/Configuration/SonarrConfig.cs (+2 -2)
code/Common/Configuration/TriggersConfig.cs (+8 -0)
code/Domain/Arr/Enums/InstanceType.cs (+9 -0)
code/Domain/Arr/Queue/QueueListResponse.cs (+7 -0)
code/Domain/Arr/Queue/QueueRecord.cs (+14 -0)
code/Domain/Radarr/RadarrCommand.cs (+8 -0)
code/Domain/Sonarr/Queue/CustomFormat.cs (+0 -6)
code/Domain/Sonarr/Queue/Language.cs (+0 -6)
code/Domain/Sonarr/Queue/QueueListResponse.cs (+0 -10)
code/Domain/Sonarr/Queue/Record.cs (+0 -28)
code/Domain/Sonarr/Queue/Revision.cs (+0 -7)
code/Domain/Sonarr/Queue/StatusMessage.cs (+0 -6)
code/Domain/Sonarr/SonarrCommand.cs (+8 -0)
📝 code/Executable/DependencyInjection.cs (+16 -13)

...and 9 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Cleanuparr/Cleanuparr/pull/1 **Author:** [@Flaminel](https://github.com/Flaminel) **Created:** 11/12/2024 **Status:** ✅ Merged **Merged:** 11/13/2024 **Merged by:** [@Flaminel](https://github.com/Flaminel) **Base:** `main` ← **Head:** `add_radarr_support` --- ### 📝 Commits (10+) - [`c09af63`](https://github.com/Cleanuparr/Cleanuparr/commit/c09af637123587c254c446e74e7fca3baeecf45b) refactored code; added support for Radarr - [`963cc72`](https://github.com/Cleanuparr/Cleanuparr/commit/963cc72a40964ec27c7bac9e37326726b8191dd1) fixed error message; fixed var name - [`71ddeda`](https://github.com/Cleanuparr/Cleanuparr/commit/71ddeda6e937bfae28083efe8f5cf0165e57a878) fixed radarr log - [`418b09e`](https://github.com/Cleanuparr/Cleanuparr/commit/418b09e143b5b73bee136f1ba810545ded9c8084) fixed tab indentation - [`ab586fa`](https://github.com/Cleanuparr/Cleanuparr/commit/ab586fa51b796e2a336e51ac84d315c13cc54365) fixed unnecessary request on empty collection - [`65a1a86`](https://github.com/Cleanuparr/Cleanuparr/commit/65a1a8627ad1a76a1889bf7dfb714a9eec7c0ad5) fixed id selection based on instance type - [`4a0ce17`](https://github.com/Cleanuparr/Cleanuparr/commit/4a0ce1715d9c3b6342439f24e6703fc470f19b06) renamed classes; added enabled flag on arrs; deprecated trigger env var - [`ad17974`](https://github.com/Cleanuparr/Cleanuparr/commit/ad17974a9765c719edb13f72a8c973650cf74ac5) added instance fail handling - [`63f42fa`](https://github.com/Cleanuparr/Cleanuparr/commit/63f42fa7aab9c9682fe25885aa891e9a21038954) removed all mentions of BlockedTorrent in favor of QueueCleaner - [`75bcb05`](https://github.com/Cleanuparr/Cleanuparr/commit/75bcb05b1021f3929e4bc1346c98c44250f38590) changed env vars to be inline with the community standards; updated readme ### 📊 Changes **29 files changed** (+484 additions, -314 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+31 -19) ➕ `code/Common/Configuration/ArrConfig.cs` (+8 -0) 📝 `code/Common/Configuration/ArrInstance.cs` (+1 -1) 📝 `code/Common/Configuration/QBitConfig.cs` (+2 -0) ➖ `code/Common/Configuration/QuartzConfig.cs` (+0 -6) ➕ `code/Common/Configuration/RadarrConfig.cs` (+6 -0) 📝 `code/Common/Configuration/SonarrConfig.cs` (+2 -2) ➕ `code/Common/Configuration/TriggersConfig.cs` (+8 -0) ➕ `code/Domain/Arr/Enums/InstanceType.cs` (+9 -0) ➕ `code/Domain/Arr/Queue/QueueListResponse.cs` (+7 -0) ➕ `code/Domain/Arr/Queue/QueueRecord.cs` (+14 -0) ➕ `code/Domain/Radarr/RadarrCommand.cs` (+8 -0) ➖ `code/Domain/Sonarr/Queue/CustomFormat.cs` (+0 -6) ➖ `code/Domain/Sonarr/Queue/Language.cs` (+0 -6) ➖ `code/Domain/Sonarr/Queue/QueueListResponse.cs` (+0 -10) ➖ `code/Domain/Sonarr/Queue/Record.cs` (+0 -28) ➖ `code/Domain/Sonarr/Queue/Revision.cs` (+0 -7) ➖ `code/Domain/Sonarr/Queue/StatusMessage.cs` (+0 -6) ➕ `code/Domain/Sonarr/SonarrCommand.cs` (+8 -0) 📝 `code/Executable/DependencyInjection.cs` (+16 -13) _...and 9 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
giteasync added the
pull-request
label 2025-10-09 17:01:05 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/Cleanuparr#317
No description provided.