| Age | Commit message (Collapse) | Author |
|
|
|
Implement NFO named season parsing
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Co-authored-by: Shadowghost <Shadowghost@users.noreply.github.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Co-authored-by: Cody Robibero <cody@robibe.ro>
|
|
|
|
|
|
- Adds regular expression to CleanStrings to remove suffix style extra naming from the name presented in JF.
- Override Resolve for Extras to enable parsename
- remove exclusion on parsename of extratypes
|
|
|
|
ItemResolveArgs
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Remove dependency on OptimizedPriorityQueue
|
|
Fix to make sure that UDF streams are opened with Share.Read (#8276)
|
|
|
|
Make sure that any subsequent requests to open the file for read will
succeed.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Skip missing symlink instead of breaking out of directory scan
|
|
|
|
Fix subtitle selection behaviour
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Did a simple search/replace on the whole repo (except the RSSDP project)
This reduces LOC and should improve performance (methods containing a throw statement don't get inlined)
```
if \((\w+) == null\)
\s+\{
\s+throw new ArgumentNullException\((.*)\);
\s+\}
```
```
ArgumentNullException.ThrowIfNull($1);
```
|