aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-08-13Fix devices migrationPatrick Barron
2021-08-13Remove old response code documentationPatrick Barron
2021-08-13Fix QuickConnect tests, move class to proper namespacePatrick Barron
2021-08-13Merge branch 'master' into authenticationdb-efcorePatrick Barron
# Conflicts: # Jellyfin.Server.Implementations/Security/AuthorizationContext.cs # MediaBrowser.Controller/Library/IUserManager.cs # MediaBrowser.Controller/Security/IAuthenticationRepository.cs # MediaBrowser.Controller/Session/ISessionManager.cs
2021-08-13Add IAuditableEntityPatrick Barron
2021-08-13Add test for fanart tagDavid Ullmer
2021-08-13Modify FetchThumbNode method to read children of fanart tagDavid Ullmer
2021-08-13Move thumb tag parsing to separate methodDavid Ullmer
2021-08-13Merge pull request #6339 from richlander/mediabrowser-controller-entitiesBond-009
2021-08-13Merge pull request #6335 from richlander/media-provides-analysis-fixesBond-009
2021-08-13Merge branch 'master' into tonemap-overlayNyanmisaka
2021-08-13Merge pull request #6267 from Bond-009/minor15Bond-009
Minor fixes
2021-08-13Merge branch 'master' into minor15Bond-009
2021-08-12Address commentBond_009
2021-08-12Merge pull request #6414 from richlander/mediabrowser-controller-mediaencodingBond-009
2021-08-11Update MediaBrowser.Controller/Entities/Folder.csRich Lander
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
2021-08-11Apply suggestions from code reviewRich Lander
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
2021-08-11Separating out error cases from good cases.ankenyr
2021-08-11Merge pull request #6377 from richlander/optimize-dockerClaus Vium
Optimize Dockerfiles
2021-08-11Merge pull request #6394 from h1dden-da3m0n/ci/noisy-containerJoshua M. Boniface
2021-08-11Merge pull request #6025 from daullmer/localization-testClaus Vium
2021-08-11Apply suggestions from code reviewClaus Vium
2021-08-11Merge pull request #6258 from gnuyent/feat/hardware-encode-statusClaus Vium
2021-08-11Apply suggestions from code reviewClaus Vium
2021-08-11Merge pull request #6262 from MrTimscampi/scanner-prefer-original-dateClaus Vium
2021-08-11Update tests/Jellyfin.MediaEncoding.Tests/Probing/ProbeResultNormalizerTests.csJulien Machiels
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
2021-08-11Merge pull request #6412 from richlander/mediabrowser-controller-sessionClaus Vium
2021-08-10Fix warnings in MediaBrowser.Controller/MediaEncoding directoryRich Lander
2021-08-10Apply suggestions from code reviewDavid Ullmer
2021-08-10Merge pull request #6409 from jellyfin/dependabot/nuget/UTF.Unknown-2.4.0Bond-009
Bump UTF.Unknown from 2.3.0 to 2.4.0
2021-08-10Merge remote-tracking branch 'upstream/master' into localization-testDavid Ullmer
2021-08-10Minor improvementsDavid Ullmer
2021-08-10Revert "Refactor LocalizationManager and remove dead method"David Ullmer
This reverts commit db2b53a4b52d0c1e9797bfc70030b04421ba46a6.
2021-08-10Use correct string comparisonDavid Ullmer
2021-08-10Translated using Weblate (Turkish)Erdinc
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/tr/
2021-08-09Fix warnings in MediaBrowser.Controller/SessionRich Lander
2021-08-09Update per feedbackRich Lander
2021-08-09Update MediaBrowser.Providers/Plugins/Tmdb/TmdbClientManager.csRich Lander
Co-authored-by: Bond-009 <bond.009@outlook.com>
2021-08-09Changing test name to be more descrptive.ankenyr
2021-08-09Update ↵Rob
tests/Jellyfin.Server.Implementations.Tests/Sorting/AiredEpisodeOrderComparerTests.cs Co-authored-by: Cody Robibero <cody@robibe.ro>
2021-08-09Bump UTF.Unknown from 2.3.0 to 2.4.0dependabot[bot]
Bumps [UTF.Unknown](https://github.com/CharsetDetector/UTF-unknown) from 2.3.0 to 2.4.0. - [Release notes](https://github.com/CharsetDetector/UTF-unknown/releases) - [Commits](https://github.com/CharsetDetector/UTF-unknown/compare/v2.3...v2.4) --- updated-dependencies: - dependency-name: UTF.Unknown dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2021-08-08Translated using Weblate (Italian)millallo
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/it/
2021-08-08Update MediaBrowser.MediaEncoding/Probing/FFProbeHelpers.csJulien Machiels
Co-authored-by: Cody Robibero <cody@robibe.ro>
2021-08-08Merge pull request #6404 from crobibero/redirect-base-urlBond-009
Fix redirect logic if request path is exactly the base url
2021-08-07Reverting sln file.ankenyr
2021-08-07Removing moved files.ankenyr
2021-08-07Changing namespace to be within Jellyfin.Server.Implementations.Testsankenyr
2021-08-07Add test for year-only parsing for FFProbeMrTimscampi
2021-08-07Attempt to parse YYYY format dates in GetDictionaryDateTimeMrTimscampi
DateTime.TryParse doesn't properly parse year-only dates, so parsing results from FFProbe sometimes returns null (for example, some music tagged with Beets has yyyy format dates for release dates). As a result, Jellyfin would previously no get the date from the FFProbe results. This adds DateTime.TryParseExact with a format of 'yyyy' as a fallback, to attempt to properly parse the value, even if it's only a year.
2021-08-07Prefer original data when getting premiere date from ffprobeMrTimscampi