aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model
AgeCommit message (Collapse)Author
2020-01-24fix an issue about determining 'IsSecondaryAudio'Nyanmisaka
fix an issue that could not correctly determine 'IsSecondaryAudio' in some cases.
2020-01-22Remove FileSystem.GetStreamBond-009
2020-01-21Simplify image processing by removing image enhancersBond_009
2020-01-16Update StringHelper.csBond-009
2020-01-16Update StringHelper.csBond-009
2020-01-15Merge pull request #2264 from Bond-009/discoveryVasily
Clean up server discovery code
2020-01-13Rewrite WebSocket handling codeBond_009
2020-01-12Attempt #2Bond_009
2020-01-12Clean up server discovery codeBond-009
2020-01-11Merge pull request #2170 from Bond-009/mediainfoservicedkanada
Minor changes to MediaInfoService
2020-01-09Merge branch 'master' into namingtestsBond_009
2020-01-09Merge pull request #7 from jellyfin/masterArtiume
nightly
2020-01-09Remove StringHelper functionsBond-009
2020-01-08rename two properties based on code suggestionsdkanada
2020-01-08Minor improvementsBond_009
2020-01-08merge branch master into media-attachmentsdkanada
2019-12-20Fix warnings and move to System.Text.JsonBond_009
2019-12-19Merge pull request #3 from jellyfin/masterArtiume
nightly, big one
2019-12-17Merge branch 'master' into namingtestsBond-009
2019-12-15Update UserPolicy.csArtiume
2019-12-12Merge branch 'master' into mediaencodingBond-009
2019-12-11Merge pull request #2118 from chaosinnovator/masterJoshua M. Boniface
Add StartIndex result to /Items API query
2019-12-10Merge branch 'master' into mediaencodingBond_009
2019-12-10Add StartIndex result to /Items API querychaosinnovator
2019-12-06Add back all old emby testsBond_009
2019-11-25Make probesize and analyzeduration configurable and simplify circularBond_009
dependencies Makes the probesize and analyzeduration configurable with env args. (`JELLYFIN_FFmpeg_probesize` and `FFmpeg_analyzeduration`)
2019-11-25* Add support for multi segment base urlsBond_009
* Make baseurl case-insensitive
2019-11-23Merge pull request #1926 from Bond-009/authdkanada
Add clearer exceptions, warnings and docs
2019-11-21revert settings to their old namesdkanada
2019-11-21rename some missed variables and fix warningsdkanada
2019-11-07Merge branch 'master' into installationmanagerBond-009
2019-11-04Merge remote-tracking branch 'origin/master' into media-attachments-cleanAndrew Mahone
2019-11-03Revert the project inclusion that created a cycle.Erwin de Haan
2019-11-03Fix the last docs warnings.Erwin de Haan
2019-11-01Improve IInstallationManager interfaceBond_009
2019-11-01Update deps and add MultiThreading analyzerBond_009
2019-10-29Fix more warningsBond_009
2019-10-22Provide delivery URLs for attachments in PlaybackInfo.Andrew Mahone
2019-10-22Add new MediaAttachment to store attachments found during media probing.Andrew Mahone
2019-10-20Add clearer exceptions, warnings and docsBond_009
2019-10-15Fix Json serialization errorBond_009
2019-10-09Use value instead of assigning baseUrl firstJoshua Boniface
2019-10-09Fix spacing issuesJoshua Boniface
2019-10-08Normalize baseUrl behaviourJoshua Boniface
Fully normalizes the baseUrl behaviour to better match how this sort of feature works in other programs. 1. The baseUrl is always appended to paths, even the built-in `/emby` and `/mediabrowser` paths. 2. The baseUrl is set statically at class instance creation, to ensure it persists through changes until the next restart. 3. Configuration is normalized using a function when set, to ensure it's in a standard `/mypath` format with leading `/`. 4. Cleans up the conditionals around default redirects. For sanity after changing the URL, it will match *any* path that doesn't match the current baseUrl and redirect it back to the main page (with baseUrl). 5. Adds a second method, NormalizeUrlPath, to avoid lots of `+ "/" +` string manipulations which are unclean - we should always have a leading slash. 6. Sets the default baseUrl to an empty string to avoid unexpected behaviour, though this would be worked-around automatically. 7. Adds some debug logs whenever a URL is normalized, to help track down issues with this code (if any arise).
2019-09-28Merge pull request #1773 from sparky8251/remove-wan-ddnsJoshua M. Boniface
Remove WAN DDNS
2019-09-28Merge pull request #1770 from sparky8251/remove-wan-ipJoshua M. Boniface
Remove WAN IP Detection
2019-09-19Removed WAN DDNS sparky8251
It's odd that JF still had code lying around for generating a self signed cert. Currently, it does not do this so this code has been removed. JF also appears to have functions in place to modify provided certs? Warrants deeper investigation. JF should not be attempting modifications of any certs under any circumstance.
2019-09-19Hide new users from public API by defaultsparky8251
2019-09-19Remove WAN IP Detectionsparky8251
2019-09-17Remove legacy auth code (#1677)Bond-009
* Remove legacy auth code * Adds tests so we don't break PasswordHash (again) * Clean up interfaces * Remove duplicate code * Use auto properties * static using * Don't use 'this' * Fix build