[PR #65] [MERGED] Add category change for downloads with no additional hardlinks #272

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

📋 Pull Request Information

Original PR: https://github.com/Cleanuparr/Cleanuparr/pull/65
Author: @Flaminel
Created: 2/19/2025
Status: Merged
Merged: 5/4/2025
Merged by: @Flaminel

Base: mainHead: add_cleanup_on_no_hardlinks


📝 Commits (10+)

  • 017e25f added category change for downloads with no additional hardlinks
  • 2d6f166 trying to fix Unix stat
  • 1650b0e trying to fix Unix stat #2
  • d454a09 fixed qbit file path
  • a63bae0 added debug logs
  • 268ede8 trying to fix Unix stat again
  • fbe6eba trying to fix Unix stat yet again
  • f91e856 removed debug logs
  • 19ac8cb trying to account for cross-seed
  • 029f255 added debug logs

📊 Changes

49 files changed (+1254 additions, -122 deletions)

View changed files

📝 README.md (+2 -1)
📝 code/Common/Configuration/DownloadCleaner/CleanCategory.cs (+1 -1)
📝 code/Common/Configuration/DownloadCleaner/DownloadCleanerConfig.cs (+37 -3)
📝 code/Common/Configuration/Notification/NotificationConfig.cs (+10 -1)
code/Common/Exceptions/FatalException.cs (+12 -0)
📝 code/Domain/Models/Deluge/Response/DownloadStatus.cs (+4 -1)
📝 code/Executable/DependencyInjection/MainDI.cs (+5 -1)
📝 code/Executable/DependencyInjection/ServicesDI.cs (+5 -1)
📝 code/Executable/appsettings.Development.json (+9 -1)
📝 code/Executable/appsettings.json (+5 -0)
📝 code/Infrastructure.Tests/Verticals/DownloadClient/DownloadServiceFixture.cs (+5 -2)
📝 code/Infrastructure.Tests/Verticals/DownloadClient/DownloadServiceTests.cs (+4 -4)
📝 code/Infrastructure.Tests/Verticals/DownloadClient/TestDownloadService.cs (+12 -8)
📝 code/Infrastructure/Infrastructure.csproj (+1 -0)
📝 code/Infrastructure/Verticals/ContentBlocker/BlocklistProvider.cs (+1 -1)
📝 code/Infrastructure/Verticals/DownloadCleaner/DownloadCleaner.cs (+25 -7)
📝 code/Infrastructure/Verticals/DownloadClient/Deluge/DelugeClient.cs (+50 -2)
📝 code/Infrastructure/Verticals/DownloadClient/Deluge/DelugeService.cs (+152 -13)
📝 code/Infrastructure/Verticals/DownloadClient/DownloadService.cs (+43 -8)
📝 code/Infrastructure/Verticals/DownloadClient/DummyDownloadService.cs (+39 -5)

...and 29 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/65 **Author:** [@Flaminel](https://github.com/Flaminel) **Created:** 2/19/2025 **Status:** ✅ Merged **Merged:** 5/4/2025 **Merged by:** [@Flaminel](https://github.com/Flaminel) **Base:** `main` ← **Head:** `add_cleanup_on_no_hardlinks` --- ### 📝 Commits (10+) - [`017e25f`](https://github.com/Cleanuparr/Cleanuparr/commit/017e25fb06b710682f8197a5d2c73fe172ff017e) added category change for downloads with no additional hardlinks - [`2d6f166`](https://github.com/Cleanuparr/Cleanuparr/commit/2d6f16692cd93afa2dd4661c6812f785c918eb96) trying to fix Unix stat - [`1650b0e`](https://github.com/Cleanuparr/Cleanuparr/commit/1650b0e5a4c62dda7edfe0628dbd10b97356b1ed) trying to fix Unix stat #2 - [`d454a09`](https://github.com/Cleanuparr/Cleanuparr/commit/d454a094a02393954026b18ab421c87fa5ddbf9d) fixed qbit file path - [`a63bae0`](https://github.com/Cleanuparr/Cleanuparr/commit/a63bae0bb9ad4eb22a000a92eb773860d3dcdb29) added debug logs - [`268ede8`](https://github.com/Cleanuparr/Cleanuparr/commit/268ede8a9c52023b0eed75927bdbfe30f03660e6) trying to fix Unix stat again - [`fbe6eba`](https://github.com/Cleanuparr/Cleanuparr/commit/fbe6ebaa6b9094c73e34ab95763606415ef20f25) trying to fix Unix stat yet again - [`f91e856`](https://github.com/Cleanuparr/Cleanuparr/commit/f91e85651fa48eec807f4f545db73826abc1c40a) removed debug logs - [`19ac8cb`](https://github.com/Cleanuparr/Cleanuparr/commit/19ac8cbd2886b6250f2d2238f8686d220e3de374) trying to account for cross-seed - [`029f255`](https://github.com/Cleanuparr/Cleanuparr/commit/029f255351074a93a374e1096bc886798644f7d6) added debug logs ### 📊 Changes **49 files changed** (+1254 additions, -122 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+2 -1) 📝 `code/Common/Configuration/DownloadCleaner/CleanCategory.cs` (+1 -1) 📝 `code/Common/Configuration/DownloadCleaner/DownloadCleanerConfig.cs` (+37 -3) 📝 `code/Common/Configuration/Notification/NotificationConfig.cs` (+10 -1) ➕ `code/Common/Exceptions/FatalException.cs` (+12 -0) 📝 `code/Domain/Models/Deluge/Response/DownloadStatus.cs` (+4 -1) 📝 `code/Executable/DependencyInjection/MainDI.cs` (+5 -1) 📝 `code/Executable/DependencyInjection/ServicesDI.cs` (+5 -1) 📝 `code/Executable/appsettings.Development.json` (+9 -1) 📝 `code/Executable/appsettings.json` (+5 -0) 📝 `code/Infrastructure.Tests/Verticals/DownloadClient/DownloadServiceFixture.cs` (+5 -2) 📝 `code/Infrastructure.Tests/Verticals/DownloadClient/DownloadServiceTests.cs` (+4 -4) 📝 `code/Infrastructure.Tests/Verticals/DownloadClient/TestDownloadService.cs` (+12 -8) 📝 `code/Infrastructure/Infrastructure.csproj` (+1 -0) 📝 `code/Infrastructure/Verticals/ContentBlocker/BlocklistProvider.cs` (+1 -1) 📝 `code/Infrastructure/Verticals/DownloadCleaner/DownloadCleaner.cs` (+25 -7) 📝 `code/Infrastructure/Verticals/DownloadClient/Deluge/DelugeClient.cs` (+50 -2) 📝 `code/Infrastructure/Verticals/DownloadClient/Deluge/DelugeService.cs` (+152 -13) 📝 `code/Infrastructure/Verticals/DownloadClient/DownloadService.cs` (+43 -8) 📝 `code/Infrastructure/Verticals/DownloadClient/DummyDownloadService.cs` (+39 -5) _...and 29 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:00:46 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/Cleanuparr#272