* fix movie nfo processing
* fix local movie fallback metadata
* use imagesharp again
* fix search edge case
* add show_genre and show_tag to search index
@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [Unreleased]
### Fixed
- Fix processing local movie NFO metadata without a `year` value
- Fix processing local movie fallback metadata
- Fix search edge case where very recently added items (hours) would not be returned by relative date queries
### Added
- Add `show_genre` and `show_tag` to search index for seasons and episodes
@ -70,7 +70,8 @@ public class FallbackMetadataProvider : IFallbackMetadataProvider
@@ -70,7 +70,8 @@ public class FallbackMetadataProvider : IFallbackMetadataProvider
@ -1019,7 +1019,9 @@ public class LocalMetadataProvider : ILocalMetadataProvider
@@ -1019,7 +1019,9 @@ public class LocalMetadataProvider : ILocalMetadataProvider
@ -46,7 +46,7 @@ public class CustomMultiFieldQueryParser : MultiFieldQueryParser
@@ -46,7 +46,7 @@ public class CustomMultiFieldQueryParser : MultiFieldQueryParser
@ -61,7 +61,7 @@ public class CustomMultiFieldQueryParser : MultiFieldQueryParser
@@ -61,7 +61,7 @@ public class CustomMultiFieldQueryParser : MultiFieldQueryParser
@ -55,6 +55,8 @@ The following fields are available for searching seasons:
@@ -55,6 +55,8 @@ The following fields are available for searching seasons:
- `library_name`: The name of the library that contains the season
- `season_number`: The season number
- `show_title`: The title of the show that contains the season
- `show_genre`: The genre of the show that contains the season
- `show_tag`: The tag of the show that contains the season
- `type`: Always `season`
### Episodes
@ -75,6 +77,8 @@ The following fields are available for searching episodes:
@@ -75,6 +77,8 @@ The following fields are available for searching episodes:
- `season_number`: The episode season number
- `episode_number`: The episode number
- `show_title`: The title of the show that contains the episode
- `show_genre`: The genre of the show that contains the episode
- `show_tag`: The tag of the show that contains the episode