## Description
This PR updates the TPDB Markers plugin to use the newer `find_groups()` method instead of the deprecated `find_movies()` method. This change resolves the deprecation warning while maintaining the same functionality.
## Changes Made
- Replaced `stash.find_movies()` with `stash.find_groups()` in the `processMovie()` function
- Updated both instances where the method was used:
1. When checking for existing movies by URL
2. When searching for movies by title
## Testing
The functionality remains the same, but now uses the recommended API method. The plugin will continue to:
- Process TPDB markers
- Create and associate movies with scenes
- Handle all existing features without the deprecation warning
## Related Issue
Fixes deprecation warning.
* Parse All Galleries for date
- Break out the date parsing to a separate function.
- Expand gallery search to more than single file zip galleries.
- Also scan the gallery's folder path if available.
The final valid parsed date of the files, then the gallery folder will be taken as the gallery's date. This will preserve the previous behavior of single file zip galleries, as there will be only one path to ever consider.
* Revert to previous logic
Previous logic returned the last possible valid date string in the path string, which is the more correct approach when a parent directory might also have a date string.
* formatting
* bump version
* Cleanup lingering prototype line
- rename folder for consistency
- use csUiLib
- fix inconsitencies with div toggler
- remove double lookup with rbEventKey
- don't handle active class, let react do it's job
Co-authored-by: Elkorol <dayshunsss@gmail.com>
To prevent duplication of elements when the user clicks/reloads a section multiple times we add 'activeHotCardTypes' to track for each card type on the homepage, and for every other section only one card type will be active.
- 'backupImgElements' and 'holoElements' arrays were added to restore the img nodes and avoid duplication of the holo effect on cards.
- Renamed variables for consistency and improve meaning.