| Age | Commit message (Collapse) | Author |
|
Exclude file system based library playlists from migration
Original-merge: 23de7e517e3b4acdefd92e731140d0fa358d3611
Merged-by: crobibero <cody@robibe.ro>
Backported-by: Joshua M. Boniface <joshua@boniface.me>
|
|
|
|
Only set season path if season folder parsing was successful
Original-merge: d1c00ba4edd5dd7b67ba4dda79dd0d18c8b8dd2d
Merged-by: nielsvanvelzen <nielsvanvelzen@users.noreply.github.com>
Backported-by: Joshua M. Boniface <joshua@boniface.me>
|
|
Fix multi-part album folder being detected as artist folder
Original-merge: d602b6dbc5762d649a6d0532456e8289e6ff55cd
Merged-by: crobibero <cody@robibe.ro>
Backported-by: Joshua M. Boniface <joshua@boniface.me>
|
|
Move NFO series season name parsing to own local provider
Original-merge: a53ea029fade01a18e8e525543b5cda14e16533a
Merged-by: joshuaboniface <joshua@boniface.me>
Backported-by: Joshua M. Boniface <joshua@boniface.me>
|
|
Fix season names
Original-merge: 2da06bc0b10edcdb43618684396828afa4100b44
Merged-by: joshuaboniface <joshua@boniface.me>
Backported-by: Joshua M. Boniface <joshua@boniface.me>
|
|
* Move calculation of LUFS to a scheduled task as it's pretty slow
* Correctly calculate album LUFS
* Don't try to convert replaygain tags to LUFS values
|
|
|
|
|
|
|
|
* Convert CollectionType, SpecialFolderType to enum
* Hide internal enum CollectionType values
* Apply suggestions from code review
Co-authored-by: Shadowghost <Shadowghost@users.noreply.github.com>
* Fix recent change
* Update Jellyfin.Data/Attributes/OpenApiIgnoreEnumAttribute.cs
Co-authored-by: Patrick Barron <barronpm@gmail.com>
---------
Co-authored-by: Shadowghost <Shadowghost@users.noreply.github.com>
Co-authored-by: Patrick Barron <barronpm@gmail.com>
|
|
# Conflicts:
# Emby.Server.Implementations/Net/SocketFactory.cs
# RSSDP/SsdpCommunicationsServer.cs
# RSSDP/SsdpDeviceLocator.cs
# RSSDP/SsdpDevicePublisher.cs
|
|
|
|
|
|
Some simple changes to reduce the number of allocated strings
|
|
Backdrops/fanart are generated as (backdrop)|(fanart)[0-9]*.extension
Fixes #7830
|
|
|
|
Implement NFO named season parsing
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
Make sure that any subsequent requests to open the file for read will
succeed.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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);
```
|
|
|
|
|
|
|
|
Found via `codespell -q 3 -S ./Emby.Server.Implementations/Localization -L allready,doesnt,inh,receivedfrom,whoknows`
|
|
Prevent a directory with a single video file to be detected as a movie directory when the library type is "Photos". Closes jellyfin/jellyfin#7825
Signed-off-by: Utku Ozdemir <uoz@protonmail.com>
|
|
(cherry picked from commit 21afec32258e29687f6c84b08d60d2d325248837)
Signed-off-by: crobibero <cody@robibe.ro>
|
|
When an invalid UDF image is opened by the UdfReader, it may throw
and exception. This change is to catch and log the exception.
|
|
|
|
Co-authored-by: Cody Robibero <cody@robibe.ro>
|