-
-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: downloads widget #844
Merged
Merged
Conversation
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
…labs/homarr into feat/download-clients-integration-and-widget
…//github.com/homarr-labs/homarr into feat/download-clients-integration-and-widget
Here's the code health analysis summary for commits Analysis Summary
|
…tegration-and-widget
…tegration-and-widget
SeDemal
force-pushed
the
feature/usenet-downloads
branch
from
September 7, 2024 11:40
1d4582c
to
b059edf
Compare
SeDemal
force-pushed
the
feature/usenet-downloads
branch
from
September 7, 2024 15:45
903b355
to
df7e129
Compare
The build error is happening because of a upstream dependency issue with crypto-hash, that we provided a suggestion to fix it in the used dependency for qBittorrent: scttcper/torrent-file#77 |
SeDemal
force-pushed
the
feature/usenet-downloads
branch
from
September 10, 2024 13:02
972145f
to
4ee9f0a
Compare
fix: Add oldmarr import
…ure/usenet-downloads
SeDemal
force-pushed
the
feature/usenet-downloads
branch
2 times, most recently
from
September 10, 2024 19:40
a05090f
to
ca90a43
Compare
SeDemal
previously approved these changes
Sep 10, 2024
SeDemal
force-pushed
the
feature/usenet-downloads
branch
from
September 10, 2024 19:57
ca90a43
to
a3e17db
Compare
Meierschlumpf
requested changes
Sep 11, 2024
Meierschlumpf
approved these changes
Sep 11, 2024
SeDemal
approved these changes
Sep 11, 2024
This was referenced Sep 11, 2024
Closed
Closed
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
From PR #895
(Screenshot only include test files and linux ISO, therefore safe to use)
Usenet and Torrent downloads in 1 widget.
sabNZBd, NzbGet, Deluge, qBitTorrent, and transmission support.
Columns can be reordered in Edit mode.
Sorting enabled.
Time uses Dayjs with auto translation.
Can pause/resume single items, clients, or all.
Can delete items (With option to delete assossiated files).
Clients list and details.
Include all filtering and processing for ratio from oldmarr torrent widget.
Invalidation of old data (older than 30 seconds) to show an integration is not responding anymore.
Misc (So many miscs):
Fixed validation error with multiText.
Fixed translation application for multiSelect to behave the same as select.
Added background to gitignore (I needed to add a background to visually test opacity, probably will in the future too)
Added setOptions to frontend components so potential updates made from the Dashboard can be saved.
Extracted background and border color to use in widgets.
humanFileSize function based on the si format (powers of 1024, not 1000).
Improved integrationCreatorByKind by @Meierschlumpf.
Changed integrationCreatorByKind to integrationCreator so it functions directly from the integration.
Added integrationCreatorFromSecrets to directly work with secrets from db.
Added getIntegrationKindsByCategory to get a list of integrations sharing categories.
Added IntegrationKindByCategory type to get the types possible for a category (Great to cast on integration.kind that isn't already properly limited/typed but for which we know the limitation)
Added a common AtLeastOneOf type. Applied to TKind and IntegrationSecretKind[] where it was already being used and Added to the getIntegrationKindsByCategory's output to be more freely used.
Added the Modify type, instead of omiting to then add again just to change a parameters type, use the modify instead. Applied code wide already.
Hook to get list of integration depending on permission level of user. (By @Meierschlumpf)