aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations
AgeCommit message (Collapse)Author
2020-05-10Merge branch 'master' into simplify-https-configMark Monteiro
2020-05-10Add GetLoopbackHttpApiUrl() helper method to replace forceHttps functionalityMark Monteiro
Also refactor to use return a Uri instead of a string and use UriBuilder under the hood
2020-05-09Translated using Weblate (Chinese (Hong Kong))timothyc824
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/zh_Hant_HK/
2020-05-09Fix code issuesgion
2020-05-09Rename Syncplay to SyncPlaygion
2020-05-09Fix code issuesgion
2020-05-08Translated using Weblate (German (Swiss))andra5
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/gsw/
2020-05-08Translated using Weblate (Spanish (Mexico))newton181
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/es_MX/
2020-05-08Fixed yet another case of hanging on a bad streamVasily
2020-05-08Re-raise the exception that caused LiveTV stream to not openVasily
2020-05-07Merge pull request #2492 from Polpetta/fix-api-private-data-leakBond-009
Fix emby/user/public API leaking sensitive data
2020-05-06Translated using Weblate (Macedonian)Stefan Petrushevski
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/mk/
2020-05-06Translated using Weblate (Afrikaans)Oliver Moolman
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/af/
2020-05-06Fix variable declaration and follow sonarcloud suggestionsDavide Polonio
2020-05-06Translated using Weblate (Spanish)miguel marsa canals
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/es/
2020-05-05Translated using Weblate (Ukrainian)Nazar Bulavko
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/uk/
2020-05-05Translated using Weblate (French (Canada))Brandon L
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/fr_CA/
2020-05-04Added translation using Weblate (Ukrainian)Nazar Bulavko
2020-05-04Merge pull request #2945 from mark-monteiro/integration-testsBond-009
Add Integration Tests For BrandingService
2020-05-04Translated using Weblate (Slovenian)SaddFox
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/sl/
2020-05-04Translated using Weblate (Dutch)x7aN
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/nl/
2020-05-04Translated using Weblate (Croatian)Tin Pavelic
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/hr/
2020-05-04Merge pull request #2950 from Bond-009/videoresolverAnthony Lavado
Fix VideoResolver and tests
2020-05-03Merge remote-tracking branch 'upstream/master' into integration-testsMark Monteiro
2020-05-03Merge pull request #3035 from mark-monteiro/fix-repo-double-disposedkanada
Do not double dispose item repository resources
2020-05-02Migrate activity db to EF CorePatrick Barron
2020-05-02Add Access-Control-Allow-Origin header to exceptionsConfusedPolarBear
Fixes #1794
2020-05-02Do not double dispose write lock and connection in user data repositoryMark Monteiro
2020-05-02Auto discover published URL overrideNeil Burrows
2020-05-02Remove extra line in UserManagerDavide Polonio
Co-authored-by: Bond-009 <bond.009@outlook.com>
2020-05-02Make SonarCloud happyBond_009
2020-05-02Fix merge errorsBond_009
2020-05-02Merge branch 'master' into websocketBond_009
2020-05-01Translated using Weblate (Finnish)Heikki Jetsonen
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/fi/
2020-05-01Translated using Weblate (Hebrew)Aragon
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/he/
2020-04-30Translated using Weblate (Finnish)Heikki Jetsonen
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/fi/
2020-04-30Translated using Weblate (Swedish)fesken
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/sv/
2020-04-29Remove versioned APIcrobibero
2020-04-29Changes styles as suggested by @barronpmBaronGreenback
Added addtional comments & source type as per intellisense suggestion change code as per sonacloud
2020-04-29Merge pull request #2985 from sparky8251/prometheusBond-009
Add Prometheus exporters
2020-04-29Merge pull request #2920 from Bond-009/tests2Vasily
Add some simple tests
2020-04-28Whilst fixing issues with SSDP on devices with multiple interfaces, i came ↵BaronGreenback
across a design issue in the current code - namely interfaces without a gateway were ignored. Fixing this required the removal of the code that attempted to detect virtual interfaces. Not wanting to remove functionality, but not able to keep the code in place, I implemented a work around solution (see 4 below). Whilst in the area, I also fixed a few minor bugs i encountered (1, 5, 6 below) and stopped SSDP messages from going out on non-LAN interfaces (3) All these changes are related. Changes 1 IsInPrivateAddressSpace - improved subnet code checking 2 interfaces with no gateway were being excluded from SSDP blasts 3 filtered SSDP blasts from not LAN addresses as defined on the network page. 4 removed #986 mod - as this was part of the issue of #2986. Interfaces can be excluded from the LAN by putting the LAN address in brackets. eg. [10.1.1.1] will exclude an interface with ip address 10.1.1.1 from SSDP 5 fixed a problem where an invalid LAN address causing the SSDP to crash 6 corrected local link filter (FilterIPAddress) to filter on 169.254. addresses
2020-04-28Revert "Whilst fixing issues with SSDP on devices with multiple interfaces, ↵BaronGreenback
i came across a design issue in the current code - namely interfaces without a gateway were ignored." This reverts commit 2aaecb8e148aef6cda67797fa4227a8ebcf7e5bb.
2020-04-28Whilst fixing issues with SSDP on devices with multiple interfaces, i came ↵BaronGreenback
across a design issue in the current code - namely interfaces without a gateway were ignored. Fixing this required the removal of the code that attempted to detect virtual interfaces. Not wanting to remove functionality, but not able to keep the code in place, I implemented a work around solution (see 4 below). Whilst in the area, I also fixed a few minor bugs i encountered (1, 5, 6 below) and stopped SSDP messages from going out on non-LAN interfaces (3) All these changes are related. Changes 1 IsInPrivateAddressSpace - improved subnet code checking 2 interfaces with no gateway were being excluded from SSDP blasts 3 filtered SSDP blasts from not LAN addresses as defined on the network page. 4 removed #986 mod - as this was part of the issue of #2986. Interfaces can be excluded from the LAN by putting the LAN address in brackets. eg. [10.1.1.1] will exclude an interface with ip address 10.1.1.1 from SSDP 5 fixed a problem where an invalid LAN address causing the SSDP to crash 6 corrected local link filter (FilterIPAddress) to filter on 169.254. addresses
2020-04-28Synchronize access to datagion
2020-04-28Merge pull request #2995 from JustAMan/fix-cache-for-realVasily
Now parse date in header correctly as being in UTC
2020-04-27Send error messages to clientsgion
2020-04-27Refactor and other minor changesgion
2020-04-27Implement KeepAlive for WebSocketsgion
2020-04-27Update session pinggion