|
|
460efb2497
|
Completed initial implementation of logs, events, and tasks
|
2023-08-08 10:50:06 -06:00 |
|
|
|
519778c0ca
|
Partial implementation of Tasks and Logs and test refactor
|
2023-08-08 10:50:06 -06:00 |
|
|
|
9d943a266e
|
Created the DrawUi trait and refactored the UI logic to delegate to different modules to draw parts of the UI to ensure future UI components follow a similar pattern and structure. Additionally, cleaned up the _BLOCKS constants in the Radarr module to be static instead of const's so that less data is copied around during compilation and the arrays all share the same memory reference.
|
2023-08-08 10:50:06 -06:00 |
|
|
|
4fb83c114a
|
Cleaned up the block selection logic to use the new BlockSelectionState struct
|
2023-08-08 10:50:06 -06:00 |
|
|
|
2561e7e9b2
|
Fixed a typo in the trigger automatic movie search command (MoviesSearch instead of MovieSearch)
|
2023-08-08 10:50:06 -06:00 |
|
|
|
be698ebbd4
|
Tweaked a minor formatting issue in the status ui to make the Radarr Version and Uptime bold
|
2023-08-08 10:50:06 -06:00 |
|
|
|
4ac22f525b
|
Converted project to use the tui-rs-revival ratatui in favor of the likely soon-to-be-archived tui-rs repo.
|
2023-08-08 10:50:06 -06:00 |
|
|
|
f252fedeed
|
Converted project to use the tui-rs-revival ratatui in favor of the likely soon-to-be-archived tui-rs repo.
|
2023-08-08 10:50:06 -06:00 |
|
|
|
435926f6f0
|
Added two new checkboxes to the delete movie UI that allows users to specify to delete the file and/or add an exclusion for the selected film on deletion. Also fixed the refresh bug in the root folders UI where you have to manually refresh to get the changes to show before 20 seconds. Also cleaned up code a bit and removed some unnecessary clone calls and references-dereferences since the types were copyable and not necessary to be referenced since they were all dereferenced anyway and copied. Made sense to just cut out the middleman on the copies.
|
2023-08-08 10:50:06 -06:00 |
|
|
|
b7d00f4827
|
Added root folders free space to the stats for Radarr, and fixed a weird spacing bug with the downloads context (was using Min instead of Length)
|
2023-08-08 10:50:06 -06:00 |
|
|
|
c606fe8573
|
Added full support for managing root folders, and also for changing the root folder when adding a movie
|
2023-08-08 10:50:06 -06:00 |
|
|
|
a564710aee
|
Added the ability to add and delete root folders, and added a body to the error message logs and dialog box if a body is returned from the Servarr
|
2023-08-08 10:50:06 -06:00 |
|
|
|
9142d5ab3e
|
Added the Root Folders tab
|
2023-08-08 10:50:06 -06:00 |
|
|
|
a65b6328ed
|
Fixed a tags bug and added in an asciicast demo of Managarr's radarr functionality
|
2023-08-08 10:50:06 -06:00 |
|
|
|
cacc452fa1
|
Fixed search and filter boxes to look better in 16:9 aspect ratios
|
2023-08-08 10:50:06 -06:00 |
|
|
|
a09eb83555
|
Fixed Add movie, edit movie, and edit collection UIs to look better in 16:9 aspect ratios
|
2023-08-08 10:50:06 -06:00 |
|
|
|
b9771ab108
|
Updated UI layout to have the Radarr logo on the right and shrunk the context row so the managarr UI looks better on 16:9 aspect ratio systems as well as 16:10
|
2023-08-08 10:50:06 -06:00 |
|
|
|
0ab43adcd9
|
Fixed bug in deserializing inCinemas in the MinimumAvailability enum
|
2023-08-08 10:50:06 -06:00 |
|
|
|
bf5ecbd5a6
|
Implemented the ability to edit collections and fixed a refresh bug so screens will automatically refresh when users edit movies or collections
|
2023-08-08 10:50:06 -06:00 |
|
|
|
173e81fc17
|
Fixed downloads output path horizontal scrolling bug
|
2023-08-08 10:50:06 -06:00 |
|
|
|
841147f1c2
|
Fixed a bug that no longer reset horizontally scrollable text once the selection changed
|
2023-08-08 10:50:06 -06:00 |
|
|
|
9be4affec5
|
Fixed a bug that no longer reset horizontally scrollable text once the selection changed
|
2023-08-08 10:50:06 -06:00 |
|
|
|
9a59ee0af9
|
Fixed an accidental bug in empty responses
|
2023-08-08 10:50:06 -06:00 |
|
|
|
d132068152
|
Fixed an accidental bug in empty responses
|
2023-08-08 10:50:06 -06:00 |
|
|
|
bf03914e63
|
Fixed a GetReleases bug after refactoring the is_loading logic
|
2023-08-08 10:50:06 -06:00 |
|
|
|
514fd2244a
|
Added horizontal scrolling for long movie titles, a refresh key, and fixed the network issues so that network requests are sent once every 20 seconds by default to not stress out the server.
|
2023-08-08 10:50:06 -06:00 |
|
|
|
7f3dd18478
|
Full support for editing movies and managing tags
|
2023-08-08 10:50:06 -06:00 |
|
|
|
c946d916ad
|
Functional tags implementation for adding movies! Still need to fix weird loading bug when searching a movie that shows an error too soon before results are loaded, need to fix the horizontal scrolling issue, and I need to change the quality profile map to use the BiMap
|
2023-08-08 10:50:05 -06:00 |
|
|
|
a23fc84d5b
|
Mostly completed tags implementation; still need to add the UI option for the Add Movie popup, and I still need to fix the REALLY FAST horizontal scrolling issue (I'm thinking just %2 everything to slow it down). Oh, and also need to convert the quality profile Hashmap into a BiMap
|
2023-08-08 10:50:05 -06:00 |
|
|
|
03928778f5
|
Mostly completed tags implementation; still need to add the UI option for the Add Movie popup, and I still need to fix the REALLY FAST horizontal scrolling issue (I'm thinking just %2 everything to slow it down). Oh, and also need to convert the quality profile Hashmap into a BiMap
|
2023-08-08 10:50:05 -06:00 |
|
|
|
207b8a8c80
|
Mostly completed tags implementation; still need to add the UI option for the Add Movie popup, and I still need to fix the REALLY FAST horizontal scrolling issue (I'm thinking just %2 everything to slow it down). Oh, and also need to convert the quality profile Hashmap into a BiMap
|
2023-08-08 10:50:05 -06:00 |
|
|
|
f92042fb21
|
Added some better theming to the UI, enabled clippy to warn on 2018 idioms, and added human_panic hook to report bugs
|
2023-08-08 10:50:05 -06:00 |
|
|
|
652dc0f2c4
|
Completed edit movies implementation, cleaned up the Movies table, and fixed a bug when adding a movie from the CollectionDetails screen.
|
2023-08-08 10:50:05 -06:00 |
|
|
|
d5117fda39
|
Added pre-commit and pre-push hooks with the help of cargo-husky. This also means that I need to temporarily allow specific bits of dead code until I implement support for at least one more Servarr
|
2023-08-08 10:50:05 -06:00 |
|
|
|
74502f5462
|
Fixed another bug with properly showing the right colors for downloading files. Accidentally named the download field id instead of movie_id
|
2023-08-08 10:50:05 -06:00 |
|
|
|
2870a45ee6
|
Fixed another bug with properly showing the right colors for downloading files. Accidentally named the download field id instead of movie_id
|
2023-08-08 10:50:05 -06:00 |
|
|
|
1b915a7f9a
|
Fixed an accidental overflow bug when determining when to scroll text horizontally or not
|
2023-08-08 10:50:05 -06:00 |
|
|
|
6866f90329
|
Added support for adding movies directly from the collection details UI, refactored to support contexts for different routes, and fixed the horizontal scrolling bug with the get_width_with_margin function.
|
2023-08-08 10:50:05 -06:00 |
|
|
|
9375382a12
|
Fixed bug so users can now search on filtered movies and collections.
|
2023-08-08 10:50:05 -06:00 |
|
|
|
08eabb24db
|
Added support for sorting when looking to manually add a release
|
2023-08-08 10:50:05 -06:00 |
|
|
|
027cd0ff2d
|
Improved logging format
|
2023-08-08 10:50:05 -06:00 |
|
|
|
13e9ae08ec
|
Upgraded to the first stable version of Mockito!
|
2023-08-08 10:50:05 -06:00 |
|
|
|
28d9f3abe0
|
Added a checkmark to the add-movie UI that indicates if a movie is already in the user's library or not
|
2023-08-08 10:50:05 -06:00 |
|
|
|
dcc251ae01
|
Cleaned up active radarr block delegation to not have giant match arms and instead just check an array, and fixed a UI bug that shows an error message if a movie is already in a user's library.
|
2023-08-08 10:50:05 -06:00 |
|
|
|
fa381cea01
|
Fixed a UI bug that briefly showed "No movies found" error before actually loading content
|
2023-08-08 10:50:05 -06:00 |
|
|
|
316c129b99
|
Fixed UI bug that didn't alert users when they tried to add a movie that couldn't be found
|
2023-08-08 10:50:05 -06:00 |
|
|
|
d358935386
|
Optimized copy-able types
|
2023-08-08 10:50:05 -06:00 |
|
|
|
110da1c0ee
|
Implemented unit tests for ui utils
|
2023-08-08 10:50:05 -06:00 |
|
|
|
e9b37e23ae
|
Completed events unit tests
|
2023-08-08 10:50:05 -06:00 |
|
|
|
47da289738
|
Improved unit test coverage in radarr_network to ensure the handler calls the correct functions.
|
2023-08-08 10:50:05 -06:00 |
|