[PR #30] [MERGED] Add Lidarr support #296

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

📋 Pull Request Information

Original PR: https://github.com/Cleanuparr/Cleanuparr/pull/30
Author: @Flaminel
Created: 1/1/2025
Status: Merged
Merged: 1/15/2025
Merged by: @Flaminel

Base: mainHead: add_lidarr_support


📝 Commits (10+)

📊 Changes

63 files changed (+943 additions, -243 deletions)

View changed files

📝 .gitignore (+0 -1)
📝 README.md (+80 -35)
📝 code/Common/Configuration/Arr/ArrConfig.cs (+11 -0)
code/Common/Configuration/Arr/LidarrConfig.cs (+6 -0)
📝 code/Common/Configuration/ContentBlocker/BlocklistType.cs (+1 -1)
📝 code/Common/Configuration/ContentBlocker/ContentBlockerConfig.cs (+1 -29)
code/Common/Configuration/ContentBlocker/PatternConfig.cs (+0 -8)
📝 code/Common/Configuration/DownloadClient/DownloadClientConfig.cs (+1 -1)
code/Domain/Models/Arr/Blocking/BlockedItem.cs (+8 -0)
code/Domain/Models/Arr/Blocking/LidarrBlockedItem.cs (+8 -0)
code/Domain/Models/Arr/Blocking/RadarrBlockedItem.cs (+6 -0)
code/Domain/Models/Arr/Blocking/SonarrBlockedItem.cs (+10 -0)
📝 code/Domain/Models/Arr/Queue/QueueRecord.cs (+15 -5)
code/Domain/Models/Lidarr/Album.cs (+12 -0)
code/Domain/Models/Lidarr/Artist.cs (+8 -0)
code/Domain/Models/Lidarr/LidarrCommand.cs (+10 -0)
📝 code/Executable/DependencyInjection/ConfigurationDI.cs (+2 -3)
📝 code/Executable/DependencyInjection/LoggingDI.cs (+18 -6)
📝 code/Executable/DependencyInjection/ServicesDI.cs (+1 -0)
📝 code/Executable/appsettings.Development.json (+24 -11)

...and 43 more files

📄 Description

Relates to #24


🔄 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/30 **Author:** [@Flaminel](https://github.com/Flaminel) **Created:** 1/1/2025 **Status:** ✅ Merged **Merged:** 1/15/2025 **Merged by:** [@Flaminel](https://github.com/Flaminel) **Base:** `main` ← **Head:** `add_lidarr_support` --- ### 📝 Commits (10+) - [`fec366f`](https://github.com/Cleanuparr/Cleanuparr/commit/fec366f6aa600f9d04d96465d8ef0868c6444301) updated test data - [`a1fcdb6`](https://github.com/Cleanuparr/Cleanuparr/commit/a1fcdb60f83781182b03d13b1b638217757181a0) updated appsettings - [`fd106bb`](https://github.com/Cleanuparr/Cleanuparr/commit/fd106bbb5634010a979d8bf9f6f9ec62b1333791) updated test data - [`4a16fd2`](https://github.com/Cleanuparr/Cleanuparr/commit/4a16fd203365b7a0f125151af2b6f68310210517) added support for Lidarr - [`8c23e8c`](https://github.com/Cleanuparr/Cleanuparr/commit/8c23e8c4251e446a9ddca1e870a3bb6b7c2762db) updated test data - [`aa38a97`](https://github.com/Cleanuparr/Cleanuparr/commit/aa38a970d42f8d804fd12f97e85ebb61063ceb32) updated README - [`e540fbf`](https://github.com/Cleanuparr/Cleanuparr/commit/e540fbf0af44b310ff23aa4d8e487692887e5d6f) changed blocklist code to accommodate more arrs - [`20be1bc`](https://github.com/Cleanuparr/Cleanuparr/commit/20be1bc593a655bacf99b4bc5694b661343165a5) updated README - [`1f9094a`](https://github.com/Cleanuparr/Cleanuparr/commit/1f9094ae855975596bf41a4a691128e23e0fb536) streamlined content deletion when all files are unwanted - [`77bc456`](https://github.com/Cleanuparr/Cleanuparr/commit/77bc456bb2bd34d615a495c31966c40fb7f39a27) renamed var ### 📊 Changes **63 files changed** (+943 additions, -243 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+0 -1) 📝 `README.md` (+80 -35) 📝 `code/Common/Configuration/Arr/ArrConfig.cs` (+11 -0) ➕ `code/Common/Configuration/Arr/LidarrConfig.cs` (+6 -0) 📝 `code/Common/Configuration/ContentBlocker/BlocklistType.cs` (+1 -1) 📝 `code/Common/Configuration/ContentBlocker/ContentBlockerConfig.cs` (+1 -29) ➖ `code/Common/Configuration/ContentBlocker/PatternConfig.cs` (+0 -8) 📝 `code/Common/Configuration/DownloadClient/DownloadClientConfig.cs` (+1 -1) ➕ `code/Domain/Models/Arr/Blocking/BlockedItem.cs` (+8 -0) ➕ `code/Domain/Models/Arr/Blocking/LidarrBlockedItem.cs` (+8 -0) ➕ `code/Domain/Models/Arr/Blocking/RadarrBlockedItem.cs` (+6 -0) ➕ `code/Domain/Models/Arr/Blocking/SonarrBlockedItem.cs` (+10 -0) 📝 `code/Domain/Models/Arr/Queue/QueueRecord.cs` (+15 -5) ➕ `code/Domain/Models/Lidarr/Album.cs` (+12 -0) ➕ `code/Domain/Models/Lidarr/Artist.cs` (+8 -0) ➕ `code/Domain/Models/Lidarr/LidarrCommand.cs` (+10 -0) 📝 `code/Executable/DependencyInjection/ConfigurationDI.cs` (+2 -3) 📝 `code/Executable/DependencyInjection/LoggingDI.cs` (+18 -6) 📝 `code/Executable/DependencyInjection/ServicesDI.cs` (+1 -0) 📝 `code/Executable/appsettings.Development.json` (+24 -11) _...and 43 more files_ </details> ### 📄 Description Relates to #24 --- <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:00:49 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/Cleanuparr-Cleanuparr#296
No description provided.