dependabot[bot]
4e13b41eed
Bump sharpcompress from 0.26.0 to 0.27.1
...
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-18 12:01:04 +00:00
Oriol Serra
01836e55e4
Translated using Weblate (Catalan)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/ca/
2021-01-17 19:28:35 -05:00
Sinan
d8d9d90469
Translated using Weblate (Turkish)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/tr/
2021-01-17 11:09:42 -05:00
Joshua M. Boniface
03242a6afd
Merge pull request #5007 from jellyfin/create
2021-01-16 13:28:48 -05:00
crobibero
3b9567d583
Add query parameter to disable returning first episode as next up
2021-01-15 15:08:48 -07:00
crobibero
3d754fa5bf
Revert "Don't return first episodes in next up"
2021-01-15 15:06:11 -07:00
Alexander Brissman
549160b9b9
Translated using Weblate (Norwegian Bokmål)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/nb_NO/
2021-01-13 14:35:17 -05:00
Deniz
eb82879a4f
Translated using Weblate (Turkish)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/tr/
2021-01-13 02:59:55 -05:00
Bond_009
9a5ceb34d1
Improve WebSocket Deserialization
2021-01-13 01:11:25 +01:00
趙映翔
f7aae0e876
Translated using Weblate (Chinese (Traditional))
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/zh_Hant/
2021-01-12 16:28:17 -05:00
Oriol Serra
580b90aa4c
Translated using Weblate (Catalan)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/ca/
2021-01-12 16:28:17 -05:00
Bond_009
1fdd2d6e05
Handle IO errors in LoadManifest
2021-01-12 16:03:13 +01:00
Bond_009
1752423e52
Open FileStream with FileMode.Create instead of FileMode.OpenOrCreate
...
> 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-12 15:51:32 +01:00
Bond_009
a9b497720d
Use JsonSerializer.SerializeToUtf8Bytes when doing a round trip
...
This test uses a very small object (CountryInfo), using a bigger object
would increase the difference in allocated memory.
```
BenchmarkDotNet=v0.12.1, OS=fedora 32
Intel Core i7-6700HQ CPU 2.60GHz (Skylake), 1 CPU, 8 logical and 4 physical cores
.NET Core SDK=5.0.100
[Host] : .NET Core 5.0.0 (CoreCLR 5.0.20.51904, CoreFX 5.0.20.51904), X64 RyuJIT
DefaultJob : .NET Core 5.0.0 (CoreCLR 5.0.20.51904, CoreFX 5.0.20.51904), X64 RyuJIT
| Method | Mean | Error | StdDev | Gen 0 | Gen 1 | Gen 2 | Allocated |
|---------------- |-----------:|---------:|---------:|-------:|------:|------:|----------:|
| RoundTripBytes | 932.0 ns | 5.09 ns | 4.25 ns | 0.1173 | - | - | 368 B |
| RoundTripString | 1,114.8 ns | 22.19 ns | 23.74 ns | 0.1469 | - | - | 464 B |
```
2021-01-12 15:37:18 +01:00
Bond_009
1ea2b200c0
JsonSerializer deserialize from bytes where possible
...
This is faster and uses way less memory
```
BenchmarkDotNet=v0.12.1, OS=fedora 32
Intel Core i7-6700HQ CPU 2.60GHz (Skylake), 1 CPU, 8 logical and 4 physical cores
.NET Core SDK=5.0.100
[Host] : .NET Core 5.0.0 (CoreCLR 5.0.20.51904, CoreFX 5.0.20.51904), X64 RyuJIT
DefaultJob : .NET Core 5.0.0 (CoreCLR 5.0.20.51904, CoreFX 5.0.20.51904), X64 RyuJIT
| Method | Mean | Error | StdDev | Gen 0 | Gen 1 | Gen 2 | Allocated |
|------- |---------:|--------:|--------:|--------:|------:|------:|----------:|
| Bytes | 158.4 us | 2.56 us | 2.14 us | 16.8457 | - | - | 52.08 KB |
| String | 172.8 us | 0.78 us | 0.70 us | 41.5039 | - | - | 127.82 KB |
| Custom | 155.5 us | 2.95 us | 2.76 us | 10.0098 | - | - | 31.27 KB |
```
2021-01-12 15:28:02 +01:00
Bond-009
0bb0dd646f
Merge pull request #4980 from Ullmie02/chinese
...
Add additional chinese languages
2021-01-09 18:55:57 +01:00
Bond-009
2c74262f7c
Merge pull request #4945 from obradovichv/fix-string-culture-specificity
2021-01-09 16:21:19 +01:00
Bond-009
a8230c07ea
Merge pull request #4961 from crobibero/person-blurhash-null-ref
...
Fix potential null reference
2021-01-09 00:41:16 +01:00
Bond-009
4549c96f6d
Merge pull request #4906 from Spacetech/library_scan_ignore_inaccessible
...
Ignore inaccessible files & folders during library scans
2021-01-08 21:01:32 +01:00
Christian
cb6ae4a188
Translated using Weblate (German)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/de/
2021-01-08 07:48:22 -05:00
David Ullmer
87c2802984
Add additional chinese languages
2021-01-08 11:25:23 +01:00
minystory
7acee4070e
Translated using Weblate (Korean)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/ko/
2021-01-07 10:48:05 -05:00
Oatavandi
0ac993e1b3
Translated using Weblate (Malayalam)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/ml/
2021-01-07 09:37:18 -05:00
Bond-009
07650d91da
Merge pull request #4962 from thornbill/fix-playstate-name
...
Fix capitalization of Playstate message
2021-01-07 10:04:02 +01:00
Ian
0f4bbbc63c
Fix 3169 and 2879 by making MusicArtistResolver run ahead of MusicAlbumResolver
2021-01-06 10:58:07 -08:00
Oatavandi
66ab4e77cd
Added translation using Weblate (Malayalam)
2021-01-06 11:57:06 -05:00
GlibTongue
162e8d3045
Translated using Weblate (Urdu (Pakistan))
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/ur_PK/
2021-01-05 23:06:44 -05:00
Bill Thornton
cfca27e99a
Fix capitalization of Playstate message
2021-01-05 10:06:55 -05:00
crobibero
13f347a813
Fix potential null reference
2021-01-05 07:00:48 -07:00
suelio bertulino lima
a4a261e940
Translated using Weblate (Portuguese (Brazil))
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/pt_BR/
2021-01-04 12:06:45 -05:00
Aron Szakacs
12144d2d9e
Translated using Weblate (German (Swiss))
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/gsw/
2021-01-04 12:06:45 -05:00
obradovichv
0282a1ed09
Fix string culture specificity
...
Fix bug in SsaParser.cs primary color {\1c} formatting that would leave
behind the {\1c} closing token and instead append </font> token
unconditionally to the dialogue text. Add tests.
Change AlphanumComparatorTests.cs complementary test data generation
from an array shuffle to an array reversal. Although it was previously
using a seeded Random, the shuffle itself could result in no
rearrangement of elements if the seed or test data changed over time.
The reversal guarantees reordering of elements and has the added benefit
of simplifying the test code since no special handling is needed for
arrays of 2 elements.
Change DailyTrigger.cs logging of TriggerDate format to
"yyyy-MM-dd HH:mm:ss.fff zzz" for consistency with configured log
timestamp format and change DueTime format to culture-invariant "c"
format.
2021-01-03 20:17:27 +02:00
Azunyan-
d1da1aa407
Translated using Weblate (Swedish)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/sv/
2021-01-02 21:11:01 -05:00
lemmens95
e15b2ea10f
Translated using Weblate (Dutch)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/nl/
2021-01-02 21:11:00 -05:00
Matt Montgomery
8dd83327b5
Remove quick connect tokens after usage
2021-01-02 16:37:43 -06:00
Manjot Singh
5932b967b7
Translated using Weblate (Punjabi)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/pa/
2021-01-02 13:23:32 -05:00
Manjot Singh
cf52503630
Added translation using Weblate (Punjabi)
2021-01-02 06:00:18 -05:00
crobibero
d077c425d3
Add only correct person blurhash
2021-01-01 12:35:03 -07:00
Gary Wilber
1fdeac0a7d
Ignore inaccessible files during library scans
2020-12-31 18:40:24 -08:00
Joshua M. Boniface
406ae3e43a
Merge pull request #4709 from BaronGreenback/PluginDowngrade
2020-12-31 18:47:05 -05:00
BaronGreenback
149c2b2169
Added referenced assembly failure detection, and DI failure protection.
2020-12-31 11:39:34 +00:00
dkanada
e53379502c
Merge pull request #4876 from jellyfin/dependabot/nuget/DotNet.Glob-3.1.2
...
Bump DotNet.Glob from 3.1.0 to 3.1.2
2020-12-31 15:33:51 +09:00
crobibero
dbfbf9fb5b
Fix bad merge
2020-12-30 19:45:31 -07:00
Cody Robibero
5c57569692
Merge branch 'master' into PluginDowngrade
2020-12-30 18:11:37 -07:00
Joshua M. Boniface
7caba04c3c
Merge pull request #4890 from nielsvanvelzen/4888-fix-search-hints
...
Fix search hint endpoint error
2020-12-30 19:55:57 -05:00
artiume
f411353c8c
Update Emby.Server.Implementations/Library/UserDataManager.cs
...
Co-authored-by: Bond-009 <bond.009@outlook.com>
2020-12-30 09:30:02 -05:00
artiume
c7cb177260
Update Emby.Server.Implementations/Library/UserDataManager.cs
...
Co-authored-by: Bond-009 <bond.009@outlook.com>
2020-12-30 09:12:36 -05:00
artiume
77b478c726
Update Emby.Server.Implementations/Library/UserDataManager.cs
...
Co-authored-by: Bond-009 <bond.009@outlook.com>
2020-12-30 09:12:13 -05:00
artiume
99adbf0497
Split resume function for Audiobooks
2020-12-30 08:48:33 -05:00
Niels van Velzen
2bb84c0675
Fix limit parameter error for search hints endpoint
2020-12-30 11:16:09 +01:00
dependabot[bot]
633507eee1
Bump DotNet.Glob from 3.1.0 to 3.1.2
...
Bumps [DotNet.Glob](https://github.com/dazinator/DotNet.Glob ) from 3.1.0 to 3.1.2.
- [Release notes](https://github.com/dazinator/DotNet.Glob/releases )
- [Changelog](https://github.com/dazinator/DotNet.Glob/blob/develop/ReleaseNotes.md )
- [Commits](https://github.com/dazinator/DotNet.Glob/compare/3.1.0...3.1.2 )
Signed-off-by: dependabot[bot] <support@github.com>
2020-12-30 09:34:26 +00:00
Bond-009
054adf6379
Merge pull request #4853 from Ullmie02/servicestack-json
2020-12-30 10:33:32 +01:00
Shaunak Basu
8dfe89ea52
Translated using Weblate (Hindi)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/hi/
2020-12-29 11:33:54 -05:00
Shaunak Basu
782c233389
Translated using Weblate (Bengali)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/bn/
2020-12-29 11:33:54 -05:00
David
3dec1fd6b2
Use UTF8 encoding and async correctly
2020-12-29 00:35:59 +01:00
WWWesten
926c70f9f7
Translated using Weblate (Kazakh)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/kk/
2020-12-27 13:17:19 -05:00
David
21fd124bca
Code revie
2020-12-27 11:15:46 +01:00
David
f73bb92ce3
Remove manual N/A removal and write directly to stream
2020-12-26 20:00:54 +01:00
mahi160
108d2da0aa
Translated using Weblate (Bengali)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/bn/
2020-12-25 15:12:49 -05:00
Mislav Milinković
41324300ec
Translated using Weblate (Croatian)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/hr/
2020-12-25 15:12:49 -05:00
David
043d045448
Put json serializer options in private field
2020-12-24 11:22:34 +01:00
David
e835dfb27d
Use sync string instead of file
2020-12-24 10:31:51 +01:00
David
a714008b59
Add missing FileStreams
2020-12-23 21:00:50 +01:00
David
2a574914ea
Use streams instead of strings
2020-12-23 19:24:58 +01:00
BaronGreenback
21f6d39432
copy constructor
2020-12-23 17:43:29 +00:00
BaronGreenback
dae6798a18
Making it work
2020-12-23 17:25:41 +00:00
BaronGreenback
889e988167
Updated to latest unstable.
2020-12-23 17:25:34 +00:00
BaronGreenback
62702fa3eb
Changes as requested
2020-12-23 16:28:50 +00:00
David
f38970cbd3
Remove xml docs
2020-12-23 15:03:14 +01:00
David
62fcc84bf4
Remove nuget reference
2020-12-23 13:35:49 +01:00
David
e9902e9d35
Remove custom Json serializer
2020-12-23 13:24:34 +01:00
David
196388d607
Remove custom Json serializer from Emby.Server.Implementations
2020-12-23 13:14:40 +01:00
Bond-009
3a452463fc
Merge pull request #4849 from crobibero/clean-deps
...
Remove unused dependencies
2020-12-23 11:51:41 +01:00
BaronGreenback
e8df9551ef
Update PluginManager.cs
...
Changed a to i
2020-12-23 10:31:11 +00:00
BaronGreenback
9a97933499
Update Emby.Server.Implementations/Plugins/PluginManager.cs
...
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
2020-12-23 10:29:21 +00:00
BaronGreenback
8e04e6c837
Update Emby.Server.Implementations/Updates/InstallationManager.cs
...
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
2020-12-23 10:27:27 +00:00
BaronGreenback
63c290f878
Update Emby.Server.Implementations/Updates/InstallationManager.cs
...
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
2020-12-23 10:26:20 +00:00
BaronGreenback
4ba4eefeeb
Update Emby.Server.Implementations/Plugins/PluginManager.cs
...
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
2020-12-23 10:26:02 +00:00
BaronGreenback
66d98cb8e4
Update Emby.Server.Implementations/ApplicationHost.cs
...
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
2020-12-23 10:24:30 +00:00
Ryan Petris
c0c0eaec05
new List(int) does not pre-allocate indicies like Arrays, it merely sets the initial capacity.
2020-12-22 20:37:07 -07:00
crobibero
1dac2226c4
Remove unused deps
2020-12-22 08:57:51 -07:00
BaronGreenback
1f2ecd0775
Fix for DI.
2020-12-22 15:01:26 +00:00
BaronGreenback
621e6d28cd
Fallback to default guid
2020-12-22 14:07:01 +00:00
BaronGreenback
3633996a53
New json converter implemented.
2020-12-21 09:01:59 +00:00
Predrag Ljubenović
e778fda843
Translated using Weblate (Serbian)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/sr/
2020-12-21 02:25:41 -05:00
Page Asgardius
3df97d5441
Translated using Weblate (Spanish (Latin America))
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/es_419/
2020-12-21 02:25:41 -05:00
BaronGreenback
7a66761981
write json files indented.
2020-12-20 19:30:48 +00:00
Claus Vium
6274cf8fcc
Merge pull request #4803 from ryanpetris/fix-getuser
...
Fix Live TV Recording Scheduling
2020-12-20 13:54:32 +01:00
WWWesten
cc5d0af4c1
Translated using Weblate (Russian)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/ru/
2020-12-20 03:50:47 -05:00
WWWesten
1d50c2ad63
Translated using Weblate (Kazakh)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/kk/
2020-12-20 03:50:47 -05:00
WWWesten
b8ef0823fa
Translated using Weblate (Kazakh)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/kk/
2020-12-19 19:14:28 -05:00
Greenback
d34428f2f7
removed exception
2020-12-18 22:17:50 +00:00
BaronGreenback
9bf970e5c6
Update Emby.Server.Implementations/Plugins/PluginManager.cs
...
Co-authored-by: Cody Robibero <cody@robibe.ro>
2020-12-18 21:59:14 +00:00
BaronGreenback
a293024efd
Update Emby.Server.Implementations/Plugins/PluginManager.cs
...
Co-authored-by: Cody Robibero <cody@robibe.ro>
2020-12-18 21:56:54 +00:00
BaronGreenback
5c3ebb63e6
Update Emby.Server.Implementations/Plugins/PluginManager.cs
...
Co-authored-by: Cody Robibero <cody@robibe.ro>
2020-12-18 21:56:35 +00:00
BaronGreenback
09f219bbce
Update Emby.Server.Implementations/Plugins/PluginManager.cs
...
Co-authored-by: Cody Robibero <cody@robibe.ro>
2020-12-18 21:56:15 +00:00
BaronGreenback
3708ca8dbb
Update Emby.Server.Implementations/Plugins/PluginManager.cs
...
Co-authored-by: Cody Robibero <cody@robibe.ro>
2020-12-18 21:56:03 +00:00
BaronGreenback
4757824a82
Update Emby.Server.Implementations/Updates/InstallationManager.cs
...
Co-authored-by: Cody Robibero <cody@robibe.ro>
2020-12-18 21:55:50 +00:00
Greenback
cb793af30e
Renamed guid to id
2020-12-18 21:11:29 +00:00
Greenback
5c4fdaa253
MaxAbi property removed.
2020-12-18 21:05:27 +00:00
Greenback
ce19f2be55
Renamed Guid property to Id
2020-12-18 20:37:35 +00:00
Predrag Ljubenović
07ee98b65f
Translated using Weblate (Serbian)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/sr/
2020-12-18 15:04:11 -05:00
Greenback
486148dd6b
Removed maxAbi
2020-12-18 09:44:57 +00:00
Greenback
5a3efc5266
Changes as required.
2020-12-18 09:04:40 +00:00
BaronGreenback
4153551dfc
Update Emby.Server.Implementations/Plugins/PluginManager.cs
...
Co-authored-by: Cody Robibero <cody@robibe.ro>
2020-12-18 08:26:11 +00:00
BaronGreenback
0dcf6b09c1
Update Emby.Server.Implementations/Plugins/PluginManager.cs
...
Co-authored-by: Cody Robibero <cody@robibe.ro>
2020-12-18 08:25:39 +00:00
BaronGreenback
8ce765c4d1
Update Emby.Server.Implementations/Plugins/PluginManager.cs
...
Co-authored-by: Cody Robibero <cody@robibe.ro>
2020-12-18 08:25:04 +00:00
BaronGreenback
591ad3b04b
Update Emby.Server.Implementations/Plugins/PluginManager.cs
...
Co-authored-by: Cody Robibero <cody@robibe.ro>
2020-12-18 08:24:26 +00:00
BaronGreenback
30645e7265
Update Emby.Server.Implementations/Plugins/PluginManager.cs
...
Co-authored-by: Cody Robibero <cody@robibe.ro>
2020-12-18 08:24:12 +00:00
BaronGreenback
2d094bedf5
Update Emby.Server.Implementations/Plugins/PluginManager.cs
...
Co-authored-by: Cody Robibero <cody@robibe.ro>
2020-12-18 08:24:00 +00:00
BaronGreenback
3a8d395c9c
Update Emby.Server.Implementations/Plugins/PluginManager.cs
...
Co-authored-by: Cody Robibero <cody@robibe.ro>
2020-12-18 08:23:46 +00:00
SecularSteve
be3129e012
Translated using Weblate (English (United Kingdom))
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/en_GB/
2020-12-17 16:54:00 -05:00
Miko Dela Cruz
e515b696d1
Translated using Weblate (Japanese)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/ja/
2020-12-17 11:49:03 -05:00
nlspln
9bf51aeb6b
Translated using Weblate (Dutch)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/nl/
2020-12-17 11:49:03 -05:00
Greenback
a4a40407a0
Change PluginStatus states.
2020-12-17 13:44:53 +00:00
Greenback
d9aaba36ec
Copy previous plugin settings if they don't exist.
2020-12-16 23:19:09 +00:00
Greenback
1ed25ebd9a
Corrections as recommended.
2020-12-16 22:36:25 +00:00
Claus Vium
21d2e9ff0c
Merge pull request #4771 from crobibero/typed-get-preference
...
Use typed UserManager GetPreference
2020-12-16 22:15:56 +01:00
Ryan Petris
875562e580
This is only used in one place and therefore will always be HttpRequest.
2020-12-15 22:17:04 -07:00
Ryan Petris
1b3fcab6a4
If requestContext is HttpRequest, get the context from it properly.
2020-12-15 22:02:08 -07:00
Greenback
5323887540
Replaced TryGetPlugin with GetPlugin
2020-12-15 20:27:42 +00:00
Greenback
eb2439f23b
Changes as recommended.
2020-12-15 16:37:11 +00:00
Greenback
208d545cfe
Changed as suggested.
2020-12-15 10:05:04 +00:00
Greenback
dddcfa6dbb
Suggested changes.
2020-12-15 09:30:19 +00:00
BaronGreenback
3cff64ee32
Delete disabled.png
...
Should have a capital letter
2020-12-15 01:32:43 +00:00
BaronGreenback
2bb12793b2
Add files via upload
2020-12-15 01:31:56 +00:00
Greenback
cddc87e2af
Fixed gitmerge.
2020-12-15 01:23:52 +00:00
BaronGreenback
67c480ad53
Merge branch 'master' into PluginDowngrade
2020-12-15 01:15:54 +00:00
Greenback
0d4aa6bad6
Enable local file repositories
2020-12-15 01:13:11 +00:00
Greenback
fbb20ebef6
Plugin setting migration to folders.
2020-12-15 00:42:59 +00:00
Greenback
494ace7984
Mark plugin failure on DI Loop.
2020-12-14 23:39:47 +00:00
Greenback
a246a77ada
Delete plugin working.
2020-12-14 23:08:04 +00:00
Greenback
7986465cf7
Initial upload
2020-12-14 16:14:39 +00:00
Joshua M. Boniface
4f6a585424
Merge pull request #4716 from OancaAndrei/syncplay-new-auth-policies
2020-12-13 16:58:28 -05:00
Joshua M. Boniface
e7ae712437
Merge pull request #4773 from Artiume/patch-10
...
Remove opf extension for book types
2020-12-13 16:57:50 -05:00
A Foley
a83a4f55d9
Translated using Weblate (French (Canada))
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/fr_CA/
2020-12-13 16:46:42 -05:00
crobibero
ee23d06154
Use a more descriptive function name
2020-12-13 08:15:26 -07:00
Claus Vium
c5a5f77b9e
Merge pull request #4726 from BaronGreenback/19.0RC--Fix-CertificateLoadError
...
Fix - Access Denied on using certificates in windows as user.
2020-12-13 13:35:02 +01:00
artiume
297cb27ab6
remove opf extension for book types
2020-12-11 21:13:28 -05:00
crobibero
b670937c3d
Use typed UserManager GetPreference
2020-12-11 15:00:43 -07:00
Nyanmisaka
d701b67de1
Apply suggestions from code review
...
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
2020-12-12 02:36:31 +08:00
nyanmisaka
41218c5613
fix ssl certificate cannot be saved
2020-12-11 23:52:09 +08:00
Claus Vium
a57e465de9
Merge pull request #4710 from OancaAndrei/syncplay-fix-session-restore
...
Restore sessions in SyncPlay groups upon reconnection
2020-12-11 09:57:14 +01:00
Claus Vium
c1bb29532f
Merge pull request #4756 from crobibero/api-key-inverted-condition
...
Fix inverted condition when authenticating with an ApiKey
2020-12-11 09:54:15 +01:00
Claus Vium
f322866127
Merge pull request #4737 from crobibero/missing-ensure-success
2020-12-11 09:53:43 +01:00
Claus Vium
0cddfbcff5
Merge pull request #4757 from cvium/semi_revert_defer_image_loading
2020-12-11 08:11:38 +01:00
kaboom83
abcbb9f156
Translated using Weblate (Slovenian)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/sl/
2020-12-10 16:47:20 -05:00
crobibero
a9aafbaf5a
Don't throw exception unless needed
2020-12-10 08:25:05 -07:00
cvium
3f6e6c4839
Simplify
2020-12-10 14:47:47 +01:00
Claus Vium
a56ac65449
Merge pull request #4753 from crobibero/5.0.1
...
Update to dotnet 5.0.1
2020-12-10 13:56:54 +01:00
Claus Vium
7455de1f85
Merge pull request #4701 from crobibero/plugin-version
2020-12-10 13:53:24 +01:00
cvium
3c5bbeb80c
Remove ImageFetcherPostScanTask
2020-12-10 13:38:33 +01:00
crobibero
2478c8fa64
Fix inverted condition when authenticating with an ApiKey
2020-12-09 23:15:33 -07:00
crobibero
aa5fa7cb8f
Update to dotnet 5.0.1
2020-12-09 07:36:31 -07:00
Bond_009
c0fde3496c
Add tests for HdHomerunHost.TryGetTunerHostInfo
2020-12-09 01:24:30 +01:00
Bond_009
514d95e5aa
Add tests for HdHomerunHost.GetLineup
2020-12-09 01:08:41 +01:00
Claus Vium
e6650651b3
Merge pull request #4738 from jellyfin/tests8
...
Add tests for HdHomerunHost.GetModelInfo
2020-12-08 20:20:33 +01:00
Bond_009
7027561e19
Add tests for HdHomerunHost.GetModelInfo
2020-12-08 18:53:38 +01:00
Claus Vium
b83bc0a589
Merge pull request #4736 from nyanmisaka/fix-custom-order
...
Fix custom library order
2020-12-08 18:22:43 +01:00
Claus Vium
b6ecaccf92
Merge pull request #4730 from crobibero/base-item-dto-guid-nullable
...
Don't serialize empty GUID to null
2020-12-08 18:22:18 +01:00
crobibero
e621244405
Add missing EnsureSuccessStatusCode
2020-12-08 08:28:19 -07:00
nyanmisaka
020fe37dfe
fix custom library order
2020-12-08 22:33:52 +08:00
crobibero
26e5aacb90
Fix JsonConverter recursion
2020-12-08 07:18:25 -07:00
Claus Vium
0aad17554c
Merge pull request #4715 from crobibero/hdhr-json-bool
...
Add number to bool json converter
2020-12-08 08:58:01 +01:00
Claus Vium
0d5f651ae9
Merge pull request #4706 from cvium/fix_aspectratio_again
...
Only apply series image aspect ratio if episode/season has no primary image
2020-12-08 08:46:05 +01:00
crobibero
8517b28eba
Make BaseItemDto Guids nullable
2020-12-07 15:23:40 -07:00
BaronGreenback
b485520537
Update ApplicationHost.cs
...
Added X509KeyStorageFlags.UserKeySet
2020-12-07 20:25:41 +00:00
Ionut Andrei Oanca
499f3ee950
Update authorization policies for SyncPlay
2020-12-07 10:33:15 +01:00
crobibero
66a1880a58
Add number to bool json converter
2020-12-06 20:26:21 -07:00
Ionut Andrei Oanca
0825ce687d
Add SessionControllerConnected event
2020-12-07 01:04:48 +01:00
cvium
a0fbf0f539
Only apply series image aspect ratio if episode/season has no primary image
2020-12-06 22:49:00 +01:00
crobibero
8df2213d6b
Don't return plugin versions that target newer Jellyfin version
2020-12-06 10:13:08 -07:00
Artūrs Jānis Ņikitins
a7b461adb4
Translated using Weblate (Latvian)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/lv/
2020-12-06 09:38:27 -05:00
Artūrs Jānis Ņikitins
b9107e847a
Translated using Weblate (Latvian)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/lv/
2020-12-05 19:15:09 -05:00
Saman Dadmand
34cd89058a
Translated using Weblate (Persian)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/fa/
2020-12-05 19:15:08 -05:00
rwctrjotovxqqqyqod
4d56afa712
Translated using Weblate (French (Canada))
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/fr_CA/
2020-12-05 13:58:38 -05:00
Joshua M. Boniface
bba01bf7b9
Merge pull request #3194 from OancaAndrei/syncplay-enhanced
...
SyncPlay for TV series (and Music)
2020-12-04 20:22:30 -05:00
Joshua M. Boniface
b96d4ef0e8
Merge pull request #4653 from crobibero/favorite-persons
...
Optimize FavoritePersons query
2020-12-04 20:05:35 -05:00
Ionut Andrei Oanca
cc64ee483d
Reorder parameters in HandleRequest
2020-12-04 23:16:15 +01:00
Ionut Andrei Oanca
1f57b594e6
Loosen locking logic in SyncPlayManager
2020-12-04 21:27:25 +01:00
Joshua M. Boniface
670f7cacc3
Merge pull request #4651 from crobibero/iso_manager
...
Remove IIsoMounter and IsoMounter
2020-12-04 14:53:09 -05:00
Ionut Andrei Oanca
cbf70e7a03
Change type of PlaylistItemId to Guid
2020-12-04 20:15:16 +01:00
crobibero
60b7e49a7f
Suggestions from code review
2020-12-04 08:00:55 -07:00
Eero Nevaluoto
958c3a3217
Translated using Weblate (Finnish)
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/fi/
2020-12-04 09:03:02 -05:00
Claus Vium
dca3f62ff8
Merge branch 'master' into PlugsVersionNumberFix
2020-12-04 13:50:44 +01:00
Claus Vium
9afd19b06e
Merge pull request #4648 from nyanmisaka/optimize-plugin-logs
...
Optimize load plugin logs
2020-12-04 13:46:06 +01:00
Claus Vium
f1cc01f324
Merge pull request #4242 from Spacetech/library_scan_speed
...
Increase library scan and metadata refresh speed
2020-12-04 13:17:26 +01:00
jeansebbeaulieu
cba1aced8a
Translated using Weblate (French (Canada))
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/fr_CA/
2020-12-04 01:38:22 -05:00
crobibero
b7443f6042
Optimize FavoritePersons query
2020-12-03 20:16:11 -07:00
Page Asgardius
cff2b7fed1
Translated using Weblate (Spanish (Mexico))
...
Translation: Jellyfin/Jellyfin
Translate-URL: https://translate.jellyfin.org/projects/jellyfin/jellyfin-core/es_MX/
2020-12-03 16:49:44 -05:00
Ionut Andrei Oanca
b7eb4da04e
Rename GroupController into Group
2020-12-03 21:01:18 +01:00
crobibero
ca5c20c988
Remove IIsoMounter and IsoMounter
2020-12-03 07:34:15 -07:00
Nyanmisaka
d496fd2d48
Apply suggestions from code review
...
Co-authored-by: Cody Robibero <cody@robibe.ro>
2020-12-03 21:34:25 +08:00
nyanmisaka
bbe872524d
optimize load plugin logs
2020-12-03 20:12:41 +08:00
cvium
7e0ea296c3
Move request validation to auth policies
2020-12-03 10:43:44 +01:00
Claus Vium
f01eff0559
Merge pull request #4647 from rhamzeh/fix/localization-add-palestine
...
fix: add Palestine to supported countries
2020-12-03 08:09:33 +01:00
Claus Vium
4ae62e74e9
Merge pull request #4644 from jellyfin/minor9
...
Minor improvements
2020-12-03 08:00:44 +01:00
Claus Vium
e042572588
Merge pull request #4633 from crobibero/guid-params
...
Use Guid as API parameter type where possible
2020-12-03 07:51:02 +01:00
Raghd Hamzeh
9497530281
fix: add Palestine to supported countries
2020-12-02 21:14:37 -05:00
Bond-009
ea20f05de4
Merge pull request #4589 from ConfusedPolarBear/id-fix
...
[Fix] Test query value
2020-12-02 15:55:17 +01:00