aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations
AgeCommit message (Collapse)Author
2021-02-02Don't skip hidden filescrobibero
2021-01-31Translated using Weblate (Finnish)Tomi
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/fi/
2021-01-31Translated using Weblate (Swedish)Jacob Adlers
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/sv/
2021-01-31Translated using Weblate (Russian)WWWesten
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/ru/
2021-01-31Translated using Weblate (Kazakh)WWWesten
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/kk/
2021-01-29Translated using Weblate (Kazakh)WWWesten
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/kk/
2021-01-25Add null check for ImageTagscrobibero
2021-01-25Update Emby.Server.Implementations/Plugins/PluginManager.csDavid Ullmer
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
2021-01-24Remove try-catch nestingDavid
2021-01-24Change plugin error messageDavid
2021-01-24Catch TypeLoadException during plugin loadingDavid Ullmer
2021-01-23Translated using Weblate (Hindi)Karandeep Singh Grewal
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/hi/
2021-01-23Merge pull request #5064 from BaronGreenback/PluginFixJoshua M. Boniface
Plugin bug fixes
2021-01-23Merge pull request #5062 from crobibero/delete_log_taskJoshua M. Boniface
2021-01-23Merge pull request #5055 from jellyfin/dependabot/nuget/sharpcompress-0.27.1Bond-009
Bump sharpcompress from 0.26.0 to 0.27.1
2021-01-22Translated using Weblate (Kazakh)WWWesten
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/kk/
2021-01-22Translated using Weblate (Chinese (Hong Kong))Wong To Han, Toby
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/zh_Hant_HK/
2021-01-21Translated using Weblate (Persian)Arian Ar
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/fa/
2021-01-21Translated using Weblate (Filipino)Rodlan Bernabe
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/fil/
2021-01-20Translated using Weblate (Spanish (Latin America))ImSoSx
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/es_419/
2021-01-20Translated using Weblate (German)David
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/de/
2021-01-20Translated using Weblate (Bulgarian)AdmiralAnimE
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/bg/
2021-01-20Translated using Weblate (Bulgarian)AdmiralAnimE
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/bg/
2021-01-19Bug fixesBaronGreenback
2021-01-18fix delete log taskcrobibero
2021-01-18Merge pull request #5027 from crobibero/episode-first-upClaus Vium
2021-01-18Remove commented codecrobibero
2021-01-18Bump sharpcompress from 0.26.0 to 0.27.1dependabot[bot]
Bumps [sharpcompress](https://github.com/adamhathcock/sharpcompress) from 0.26.0 to 0.27.1. - [Release notes](https://github.com/adamhathcock/sharpcompress/releases) - [Commits](https://github.com/adamhathcock/sharpcompress/compare/0.26...0.27.1) Signed-off-by: dependabot[bot] <support@github.com>
2021-01-17Translated using Weblate (Catalan)Oriol Serra
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/ca/
2021-01-17Translated using Weblate (Turkish)Sinan
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/tr/
2021-01-16Merge pull request #5007 from jellyfin/createJoshua M. Boniface
2021-01-15Add query parameter to disable returning first episode as next upcrobibero
2021-01-15Revert "Don't return first episodes in next up"crobibero
2021-01-13Translated using Weblate (Norwegian Bokmål)Alexander Brissman
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/nb_NO/
2021-01-13Translated using Weblate (Turkish)Deniz
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/tr/
2021-01-12Translated using Weblate (Chinese (Traditional))趙映翔
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/zh_Hant/
2021-01-12Translated using Weblate (Catalan)Oriol Serra
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/ca/
2021-01-12Open FileStream with FileMode.Create instead of FileMode.OpenOrCreateBond_009
> The OpenWrite method opens a file if one already exists for the file path, or creates a new file if one does not exist. For an existing file, it does not append the new text to the existing text. Instead, it overwrites the existing characters with the new characters. If you overwrite a longer string (such as "This is a test of the OpenWrite method") with a shorter string (such as "Second run"), the file will contain a mix of the strings ("Second runtest of the OpenWrite method"). Ref: https://docs.microsoft.com/en-us/dotnet/api/system.io.file.openwrite?view=net-5.0#remarks
2021-01-09Merge pull request #4980 from Ullmie02/chineseBond-009
Add additional chinese languages
2021-01-09Merge pull request #4945 from obradovichv/fix-string-culture-specificityBond-009
2021-01-09Merge pull request #4961 from crobibero/person-blurhash-null-refBond-009
Fix potential null reference
2021-01-08Merge pull request #4906 from Spacetech/library_scan_ignore_inaccessibleBond-009
Ignore inaccessible files & folders during library scans
2021-01-08Translated using Weblate (German)Christian
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/de/
2021-01-08Add additional chinese languagesDavid Ullmer
2021-01-07Translated using Weblate (Korean)minystory
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/ko/
2021-01-07Translated using Weblate (Malayalam)Oatavandi
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/ml/
2021-01-07Merge pull request #4962 from thornbill/fix-playstate-nameBond-009
Fix capitalization of Playstate message
2021-01-06Fix 3169 and 2879 by making MusicArtistResolver run ahead of MusicAlbumResolverIan
2021-01-06Added translation using Weblate (Malayalam)Oatavandi
2021-01-05Translated using Weblate (Urdu (Pakistan))GlibTongue
Translation: Jellyfin/Jellyfin Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/ur_PK/