aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-04-09move IsPlayed to outerqueryClaus Vium
IsPlayed is a column in UserDatas and does not belong in the inner query. None of the other UserDatas columns are in the innerquery.
2021-04-09Add tests for UserControllerBond_009
2021-04-08Merge pull request #5721 from Bond-009/authenticatedtestsBond-009
Add code to test authenticated endpoints
2021-04-08Merge pull request #5730 from thornbill/disable-hevc-encodingBond-009
Disable HEVC encoding by default
2021-04-08Disable hevc encoding by defaultBill Thornton
2021-04-08Update Emby.Server.Implementations/Updates/InstallationManager.csBaronGreenback
Co-authored-by: Cody Robibero <cody@robibe.ro>
2021-04-08Update to dotnet 5.0.5crobibero
2021-04-08Merge pull request #5725 from BrianCArnold/Fix2845_PlaylistDeletionClaus Vium
2021-04-08Merge pull request #5717 from cvium/nullable-custompref-valueBond-009
2021-04-08Can't reference System.IO.Path as 'Path', even though System.IO is in the ↵Brian Arnold
usings, because there is a Path property of the class.
2021-04-08Update MediaBrowser.Controller/Playlists/Playlist.cs BrianCArnold
Included suggested change from cvium Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
2021-04-08Fixed issue with determining if a directory was a directory or file when it ↵Brian Arnold
contained a '.' character in the directory path. Resolves: #2845
2021-04-07Merge pull request #5707 from ferferga/deyarnJoshua M. Boniface
2021-04-08Merge pull request #5520 from Bond-009/hdhomerun2Bond-009
2021-04-07Add code to test authenticated endpointsBond_009
2021-04-07Merge pull request #5711 from ↵Bond-009
jellyfin/dependabot/nuget/Microsoft.AspNetCore.Mvc.Testing-5.0.5 Bump Microsoft.AspNetCore.Mvc.Testing from 5.0.3 to 5.0.5
2021-04-07Merge pull request #5710 from ↵Bond-009
jellyfin/dependabot/nuget/Microsoft.AspNetCore.Authorization-5.0.5 Bump Microsoft.AspNetCore.Authorization from 5.0.3 to 5.0.5
2021-04-07Merge pull request #5688 from crobibero/api-docs-sever-discoveryClaus Vium
Add SessionDiscoveryInfo to generated api-docs
2021-04-07Merge pull request #5631 from BrianCArnold/FixMessageCommandClaus Vium
2021-04-07fix build...somehowcvium
2021-04-07make custompref value nullablecvium
2021-04-06Add tests for unauthenticated websocket accessBond_009
2021-04-06Keep plugin status after update.BaronGreenback
2021-04-06Bump Microsoft.AspNetCore.Mvc.Testing from 5.0.3 to 5.0.5dependabot[bot]
Bumps [Microsoft.AspNetCore.Mvc.Testing](https://github.com/dotnet/aspnetcore) from 5.0.3 to 5.0.5. - [Release notes](https://github.com/dotnet/aspnetcore/releases) - [Commits](https://github.com/dotnet/aspnetcore/compare/v5.0.3...v5.0.5) Signed-off-by: dependabot[bot] <support@github.com>
2021-04-06Bump Microsoft.AspNetCore.Authorization from 5.0.3 to 5.0.5dependabot[bot]
Bumps [Microsoft.AspNetCore.Authorization](https://github.com/dotnet/aspnetcore) from 5.0.3 to 5.0.5. - [Release notes](https://github.com/dotnet/aspnetcore/releases) - [Commits](https://github.com/dotnet/aspnetcore/compare/v5.0.3...v5.0.5) Signed-off-by: dependabot[bot] <support@github.com>
2021-04-06Merge pull request #5708 from Bond-009/netanalyzersBond-009
Enable NetAnalyzers for more projects
2021-04-06Enable NetAnalyzers for more projectsBond_009
2021-04-06Use npm ci instead of npm iFernando Fernández
2021-04-06(jellyfin-web): Switch to npmFernando Fernández
2021-04-06Fix typo in test data filenameMaxr1998
2021-04-06Add tests for music video metadataMaxr1998
2021-04-06Improve metadata probing to better support music videosMaxr1998
2021-04-05Merge pull request #5702 from cvium/ws-authBond-009
add simple auth handling to websocketmanager
2021-04-05add simple auth handling to websocketmanagercvium
2021-04-05Merge pull request #5699 from Bond-009/ffprobetestsBond-009
2021-04-05Add test for ProbeResultNormalizer.GetMediaInfoBond_009
2021-04-04Merge pull request #5693 from Maxr1998/probe-result-tweaksBond-009
2021-04-04Support MKV DATE_RELEASED tag for PremiereDateMaxr1998
https://www.matroska.org/technical/tagging.html#temporal-information
2021-04-04Interpret ffprobe date as UTCMaxr1998
Currently, dates are parsed according to the local time, which results in potentially wrong data being stored in the database after normalizing to UTC - e.g. 2021-04-04 would be stored as '2021-04-03 22:00:00Z' and displayed in the UI as 03.04.2021.
2021-04-04Reduce nestingMaxr1998
2021-04-04Merge pull request #5691 from Bond-009/nullref3Bond-009
Fix possible nullref
2021-04-04Fix possible nullrefBond_009
when `ProviderManager.SaveMetadata` gets called before `ProviderManager.AddParts` ``` Error Message: System.ArgumentNullException : Value cannot be null. (Parameter 'source') Stack Trace: at System.Linq.ThrowHelper.ThrowArgumentNullException(ExceptionArgument argument) at System.Linq.Enumerable.Where[TSource](IEnumerable`1 source, Func`2 predicate) at MediaBrowser.Providers.Manager.ProviderManager.SaveMetadata(BaseItem item, ItemUpdateType updateType, IEnumerable`1 savers) in D:\a\1\s\MediaBrowser.Providers\Manager\ProviderManager.cs:line 674 at MediaBrowser.Providers.Manager.ProviderManager.SaveMetadata(BaseItem item, ItemUpdateType updateType) in D:\a\1\s\MediaBrowser.Providers\Manager\ProviderManager.cs:line 655 at Emby.Server.Implementations.Library.LibraryManager.RunMetadataSavers(BaseItem item, ItemUpdateType updateReason) in D:\a\1\s\Emby.Server.Implementations\Library\LibraryManager.cs:line 2012 at Emby.Server.Implementations.Library.LibraryManager.UpdateItemsAsync(IReadOnlyList`1 items, BaseItem parent, ItemUpdateType updateReason, CancellationToken cancellationToken) in D:\a\1\s\Emby.Server.Implementations\Library\LibraryManager.cs:line 1970 at Emby.Server.Implementations.Library.LibraryManager.CreateRootFolder() in D:\a\1\s\Emby.Server.Implementations\Library\LibraryManager.cs:line 775 at Emby.Server.Implementations.Library.LibraryManager.get_RootFolder() in D:\a\1\s\Emby.Server.Implementations\Library\LibraryManager.cs:line 180 at Emby.Server.Implementations.IO.LibraryMonitor.Start() in D:\a\1\s\Emby.Server.Implementations\IO\LibraryMonitor.cs:line 135 at Emby.Server.Implementations.IO.LibraryMonitorStartup.RunAsync() in D:\a\1\s\Emby.Server.Implementations\IO\LibraryMonitorStartup.cs:line 26 at Emby.Server.Implementations.ApplicationHost.StartEntryPoints(IEnumerable`1 entryPoints, Boolean isBeforeStartup)+MoveNext() in D:\a\1\s\Emby.Server.Implementations\ApplicationHost.cs:line 541 at System.Threading.Tasks.Task.WhenAll(IEnumerable`1 tasks) at Emby.Server.Implementations.ApplicationHost.RunStartupTasksAsync(CancellationToken cancellationToken) in D:\a\1\s\Emby.Server.Implementations\ApplicationHost.cs:line 525 at Jellyfin.Server.Integration.Tests.JellyfinApplicationFactory.CreateServer(IWebHostBuilder builder) in D:\a\1\s\tests\Jellyfin.Server.Integration.Tests\JellyfinApplicationFactory.cs:line 101 at Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory`1.EnsureServer() at Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory`1.CreateDefaultClient(DelegatingHandler[] handlers) at Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory`1.CreateDefaultClient(Uri baseAddress, DelegatingHandler[] handlers) at Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory`1.CreateClient(WebApplicationFactoryClientOptions options) at Microsoft.AspNetCore.Mvc.Testing.WebApplicationFactory`1.CreateClient() at Jellyfin.Server.Integration.Tests.OpenApiSpecTests.GetSpec_ReturnsCorrectResponse() in D:\a\1\s\tests\Jellyfin.Server.Integration.Tests\OpenApiSpecTests.cs:line 26 --- End of stack trace from previous location --- ```
2021-04-04Merge pull request #5637 from dmitrylyzo/check-media-typeBond-009
2021-04-04Less negationDmitry Lyzo
Co-authored-by: Bond-009 <bond.009@outlook.com>
2021-04-03Merge pull request #5685 from Bond-009/uselessnullcheckBond-009
Remove useless null check
2021-04-03Merge pull request #5661 from ferferga/openapi-product-versionBond-009
Return Major.Minor.Build instead of Major.Minor.Build.Revision for OpenAPI
2021-04-03Merge pull request #5598 from cvium/fix_hls_default_valuesBond-009
2021-04-03Merge pull request #5684 from ↵Bond-009
jellyfin/dependabot/nuget/Microsoft.NET.Test.Sdk-16.9.4 Bump Microsoft.NET.Test.Sdk from 16.9.1 to 16.9.4
2021-04-03Add SessionDiscoveryInfo to generated api-docscrobibero
2021-04-03Merge pull request #5676 from Bond-009/uselessBond-009