aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model
AgeCommit message (Collapse)Author
2019-09-13Reset invalid login counter on successfull loginBond-009
2019-09-08Possible fix for MrMCBond_009
2019-09-02Fix warnings, improve performance (#1665)Bond-009
* Fix warnings, improve performance `QueryResult.Items` is now a `IReadOnlyList` so we don't need to allocate a new `Array` when we have a `List` (and `Items` shouldn't need to be mutable anyway) * Update Providers .csproj to latest C# * Remove extra newline from DtoService.cs * Remove extra newline from UserLibraryService.cs
2019-09-02Merge pull request #1686 from Bond-009/warn7Anthony Lavado
More warning fixes
2019-09-01Restore flac mime typeBill Thornton
2019-08-29More warning fixesBond_009
2019-08-28Fix loginBond_009
2019-08-19Merge branch 'master' into h265Joshua M. Boniface
2019-08-18Merge pull request #1636 from Bond-009/isomounterdkanada
Add analysers to Emby.IsoMounting and enable TreatWarningsAsErrors
2019-08-16Clean up livestreaming codeBond_009
2019-08-16Add analysers to Emby.IsoMounting and enable TreatWarningsAsErrorsBond_009
2019-08-16Merge pull request #1632 from Bond-009/localeAnthony Lavado
Improve LocalizationManager
2019-08-16Merge pull request #1588 from dkanada/urlAnthony Lavado
Add base url option to server configuration
2019-08-16Improve LocalizationManagerBond_009
2019-08-15Merge pull request #1614 from Bond-009/docs2dkanada
Document all public/internal members of Emby.Drawing
2019-08-15Merge pull request #1584 from Bond-009/checksumdkanada
Check checksum for plugin downloads
2019-08-13Merge pull request #1581 from Bond-009/socket1dkanada
Use System.Net abstractions instead of raw socket
2019-08-11Document all public/internal members of Emby.DrawingBond_009
Forces all new public/internal members to be documented. Enables TreatWarningsAsErrors for Emby.Drawing
2019-08-11Check checksum for plugin downloadsBond_009
* Compare the MD5 checksum when downloading plugins * Reduced log spam due to http requests * Removed 'GetTempFileResponse' function from HttpClientManager * Fixed caching for HttpClientManager
2019-08-11Merge pull request #1462 from Bond-009/installationmanagerdkanada
Improvements to InstallationManager
2019-08-11add base url to server configurationdkanada
2019-08-10Merge pull request #1397 from Bond-009/passfastJoshua M. Boniface
Streamline authentication proccess
2019-08-10Merge pull request #1612 from Bond-009/warn4dkanada
Fix warnings
2019-08-09Fix more warningsBond_009
2019-08-09Use System.Net abstractions instead of raw socketBond_009
2019-08-09Fix buildBond_009
2019-08-09Replace custom code with Asp.Net Core codeBond_009
2019-07-28Use a dictionary to look up mimetypesBond-009
2019-07-25Remove IpAddressInfo and IpEndPointInfo classesBond_009
2019-07-06Streamline authentication proccessBond_009
2019-06-14Improvements to InstallationManagerBond_009
2019-06-08Force LF line endingsBond_009
2019-06-05Merge pull request #1427 from dkanada/fanartAnthony Lavado
Move fanart image provider to plugin
2019-06-04Merge pull request #1159 from Bond-009/streamjobAnthony Lavado
Trying to make sense of the streaming code
2019-06-01Fix #1432. Add support for encoding with libx265 and hevc_nvenc.Frank
2019-05-31move fanart image provider to plugindkanada
2019-05-09Merge pull request #1229 from voodoos/cleanup/SocketSharpBond-009
Cleaning WebSocketSharp continued
2019-04-16Move the definition of ProductName to the correct classAnthony Lavado
Missed moving this from one class to the other.
2019-04-11Simplify headers use in WSSVooDooS
2019-03-26Trying to make sense of the streaming codeBond_009
Mostly small changes as I was looking through the code. * async void -> async Task * Properly implemented dispose methods * Pass the logstream directly to the JobLogger * Style fixes
2019-03-22made password resets an interface and per userPhallacy
2019-03-18Merge pull request #1127 from LogicalPhallacy/lockoutfixJoshua M. Boniface
Add configurable user lockout
2019-03-16Merge branch 'master' into subtitle-display-titleredSpoutnik
2019-03-16Remove some dead coderedSpoutnik
2019-03-16Merge pull request #2 from LogicalPhallacy/masterLogicalPhallacy
update lockoutfix to latest for testing
2019-03-16configurable user lockoutPhallacy
2019-03-14Change subtitles DisplayTitle behaviorredSpoutnik
2019-03-14Adjusted AssemblyCopyright attribute values.Erwin de Haan
2019-03-14Adjusted the Product Name so the User Agent is correct/better.Erwin de Haan
2019-03-13Improvements around streamsBond-009
* Use ArrayPool instead of allocating new buffers each time * Remove NetworkStream copy * Remove some dead code