Patrick Barron
3b085f6a03
Remove UserManager.AddParts
4 years ago
Anthony Lavado
3d3e66c5d1
Merge pull request #3513 from barronpm/plugin-exception-fix
...
Fix TypeLoadException during plugin load
4 years ago
Patrick Barron
942c733d4f
Fix TypeLoadException during plugin load
4 years ago
Bond_009
ae6eaa7f02
Minor fixes
4 years ago
Neil Burrows
4748df26b6
Remove un-needed comment
4 years ago
Neil Burrows
4389773508
Respect FFMpeg path passed via Environment Variable
4 years ago
BaronGreenback
ba3a9f7d46
removing stray < character from description.
4 years ago
BaronGreenback
a25a233b75
Using Version class.
4 years ago
BaronGreenback
bf1bbbdd3e
Changed sorting to case insensitive
4 years ago
BaronGreenback
2255bc9872
Changed padding in version numbers based up how they are stored in the repository.
4 years ago
BaronGreenback
d89c46f1a9
fixes
4 years ago
BaronGreenback
99410f3c97
fixes
4 years ago
BaronGreenback
a041fe8a2d
Add versioning to plugin folders
4 years ago
Cody Robibero
43221fc26b
Merge branch 'master' into SSDP
4 years ago
David
64fb173dad
Move DashboardController to Jellyfin.Api
4 years ago
ConfusedPolarBear
e2f16fc255
Merge remote-tracking branch 'upstream/master' into quickconnect
4 years ago
telans
9018f8d8be
Add full stop at end of comments (SA1629)
4 years ago
Patrick Barron
42b4f0aa2e
Merge branch 'master' into userdb-efcore
...
# Conflicts:
# Emby.Server.Implementations/Library/UserManager.cs
# Jellyfin.Data/Jellyfin.Data.csproj
4 years ago
ConfusedPolarBear
7d9b552403
Apply suggestions from code review
...
Co-authored-by: Cody Robibero <cody@robibe.ro>
4 years ago
crobibero
44957c5a9a
Use typed logger where possible
4 years ago
ConfusedPolarBear
5d281adedd
Merge remote-tracking branch 'upstream/master' into quickconnect
5 years ago
Patrick Barron
01ce56016a
Merge branch 'master' into userdb-efcore
...
# Conflicts:
# Emby.Server.Implementations/Library/UserManager.cs
# Jellyfin.Data/Jellyfin.Data.csproj
# MediaBrowser.Api/UserService.cs
# MediaBrowser.Controller/Library/IUserManager.cs
5 years ago
gion
e4838b0faa
Merge remote-tracking branch 'upstream/master' into syncplay
5 years ago
Patrick Barron
3eeb6576d8
Migrate User DB to EF Core
5 years ago
Patrick Barron
aca7e221d8
Merge branch 'master' into userdb-efcore
...
# Conflicts:
# Emby.Server.Implementations/Activity/ActivityLogEntryPoint.cs
# Emby.Server.Implementations/ApplicationHost.cs
# Emby.Server.Implementations/Devices/DeviceManager.cs
# Jellyfin.Server/Jellyfin.Server.csproj
# Jellyfin.Server/Migrations/MigrationRunner.cs
# MediaBrowser.Controller/Devices/IDeviceManager.cs
5 years ago
gion
029bb80910
Merge remote-tracking branch 'upstream/master' into syncplay
5 years ago
Patrick Barron
953777f1ba
Removed unnecessary usings
5 years ago
Patrick Barron
87c63e668c
Merge branch 'master' into activitydb-efcore
5 years ago
Patrick Barron
b94afc597c
Address review comments
5 years ago
Mark Monteiro
2e09311a93
Merge branch 'master' into websocket
5 years ago
Patrick Barron
a8f0d0aa0d
Merge branch 'master' into activitydb-efcore
5 years ago
Vasily
f08830ea00
Merge pull request #2774 from mark-monteiro/simplify-https-config
...
Simplify HTTPS Properties
5 years ago
Patrick Barron
b7621d762c
2nd half of changes
5 years ago
Patrick Barron
9ad839c776
Initial migration code
5 years ago
Patrick Barron
62420a6eb1
Remove support for injecting ILogger directly
5 years ago
Mark Monteiro
3abf870c1e
Do not include a double slash in URLs when a base URL is not set
5 years ago
Mark Monteiro
dc5165b97f
Merge branch 'master' into simplify-https-config
5 years ago
Mark Monteiro
43c22a5822
Add GetLoopbackHttpApiUrl() helper method to replace forceHttps functionality
...
Also refactor to use return a Uri instead of a string and use UriBuilder under the hood
5 years ago
gion
8a6ec2fb71
Rename Syncplay to SyncPlay
5 years ago
Patrick Barron
032de931b1
Migrate activity db to EF Core
5 years ago
Bond_009
3623aafcb6
Make SonarCloud happy
5 years ago
Bond_009
04f826e50c
Fix merge errors
5 years ago
Bond_009
15634a1913
Merge branch 'master' into websocket
5 years ago
Bond-009
690fb65cd8
Merge pull request #2985 from sparky8251/prometheus
...
Add Prometheus exporters
5 years ago
BaronGreenback
ebd589aa86
Whilst fixing issues with SSDP on devices with multiple interfaces, i came 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
5 years ago
BaronGreenback
a3140f83c6
Revert "Whilst fixing issues with SSDP on devices with multiple interfaces, i came across a design issue in the current code - namely interfaces without a gateway were ignored."
...
This reverts commit 2aaecb8e14
.
5 years ago
BaronGreenback
2aaecb8e14
Whilst fixing issues with SSDP on devices with multiple interfaces, i came 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
5 years ago
gion
10c2c62f07
Implement syncplay backend
5 years ago
sparky8251
e3a42a8fe9
Address reviews
5 years ago
Mark Monteiro
15fd4812f0
Remove unnecessary foreach loop
5 years ago
Joshua M. Boniface
f502c89331
Merge pull request #2798 from JustAMan/fix-livetv-again
...
Make localhost LiveTV restreams always use plain HTTP port
5 years ago
Joshua M. Boniface
23c8ecff37
Apply style change
...
Co-Authored-By: Bond-009 <bond.009@outlook.com>
5 years ago
Joshua M. Boniface
d92a3552b7
Apply style change
...
Co-Authored-By: Bond-009 <bond.009@outlook.com>
5 years ago
Joshua M. Boniface
7a550d2c4e
Apply style change
...
Co-Authored-By: Bond-009 <bond.009@outlook.com>
5 years ago
Mark Monteiro
57b5ec1d51
Remove unnecessary properties from SystemInfo response object
...
These properties do not provide any useful information to the client. The client would already have to have all this information in order to connect to the endpoint to retrieve it
5 years ago
Mark Monteiro
93649ad77b
Merge remote-tracking branch 'upstream/master' into simplify-https-config
5 years ago
sparky8251
68c7a914c3
Added option to disable metrics collection and defaulted it to off
5 years ago
Mark Monteiro
bc4e72b29b
Create ApplicationHost logger correctly
5 years ago
Mark Monteiro
f815059698
Merge remote-tracking branch 'upstream/master' into register-services-correctly
5 years ago
Vasily
07143bcb68
Merge pull request #2466 from dkanada/plugin
...
Update plugin classes for nightly builds
5 years ago
dkanada
eda208e258
Merge pull request #2829 from Bond-009/warn19
...
Fix some warnings
5 years ago
Mark Monteiro
00a0e013c6
Update documentation for URL methods in ApplicationHost
5 years ago
Mark Monteiro
fee76097f4
Remove CanConnectWithHttps Property
...
It is only used in one place and only adds confusion by existing
5 years ago
ConfusedPolarBear
36f3e933a2
Add quick connect
5 years ago
Bond_009
d6daac5064
Fix build
5 years ago
Mark Monteiro
9728aa8b0a
Merge branch 'master' into register-services-correctly
5 years ago
dkanada
cb2523e2ef
merge branch master into plugin
5 years ago
Bond-009
3d611743ed
Merge pull request #2680 from mark-monteiro/remove-common-process
...
Remove CommonProcess and ProcessFactory
5 years ago
Mark Monteiro
7152b55747
Use a separate line for each property initializer
5 years ago
Mark Monteiro
17e8813378
Use ActivatorUtilities to construct MediaEncoder and update constructor to inject EncodingHelper correctly
5 years ago
Mark Monteiro
1e1295bebf
Merge remote-tracking branch 'upstream/master' into register-services-correctly
5 years ago
dkanada
bd55bdb4e3
merge branch master into plugin
5 years ago
dkanada
8e9aeb84b1
remove release channel from plugin classes
5 years ago
Bond_009
49fe5e0a21
Fix some warnings
5 years ago
Vasily
e85f9f5613
Make localhost LiveTV restreams always use plain HTTP port
5 years ago
dkanada
0cd7cd611e
Merge pull request #2758 from Bond-009/plugininstalled
...
Remove PluginInstalled
5 years ago
Mark Monteiro
5bc6c08a0a
Merge remote-tracking branch 'upstream/master' into simplify-https-config
5 years ago
Mark Monteiro
410a322fe2
Add CanConnectWithHttps to interface
5 years ago
Mark Monteiro
f91f2ef328
Merge remote-tracking branch 'upstream/master' into register-services-correctly
5 years ago
Mark Monteiro
f2760cb055
Register IImageEncoder in Jellyfin.Server instead of Emby.Server.Implementations
5 years ago
Bond-009
29539174a3
Merge pull request #2636 from mark-monteiro/development-https
...
Use ASP.NET Core HTTPS Development Certificate
5 years ago
Mark Monteiro
bc91445b5d
Use correct naming convention for _relevantEnvVarPrefixes
5 years ago
Mark Monteiro
735d6c8ad5
Convert properties in ApplicationHost to private readonly fields, where possible
5 years ago
Mark Monteiro
241d0ae65c
Inject IStartupOptions into StartupWizard
5 years ago
Mark Monteiro
809cf3a0c2
Register IJsonSerializer correctly
5 years ago
Mark Monteiro
710767fbf2
Add deprecation warning message for injecting ILogger
5 years ago
Mark Monteiro
e16c16dd51
Register and construct IHttpClient correctly
5 years ago
Mark Monteiro
adf0e8d3fd
Register and construct ITaskManager and IIsoManager correctly
5 years ago
Mark Monteiro
3f2f95d877
Register IProcessFactory, ICryptoProvider and ISocketFactory correctly
5 years ago
Mark Monteiro
aee6a1b476
Remove unnecessary async and parameter from ApplicationHost initialization method
5 years ago
Mark Monteiro
5d648bf54f
Register and construct ILocalizationManager correctly
5 years ago
Mark Monteiro
cbc0224aaf
Register IStreamHelper, IInstallationManager, IZipClient, IHttpResultFactory and IBlurayExaminer correctly
5 years ago
Mark Monteiro
615717e562
Register and construct IUserDataManager and IUserDataRepository correctly
5 years ago
Mark Monteiro
5827f0f5a9
Register IDisplayPreferencesRepository correctly
5 years ago
Mark Monteiro
a5234dfd88
Register and construct IAuthenticationRepository correctly
5 years ago
Mark Monteiro
4daa5436fc
Register and construct IUserManager and IUserRepository correctly
5 years ago
Mark Monteiro
84b48eb69c
Convert MediaEncoder property to field
5 years ago
Mark Monteiro
fe9f4e06d1
Register and construct LibraryManager correctly
5 years ago
Mark Monteiro
7fd25f94f3
Inject and construct ISearchEngine and IMusicManager correctly
5 years ago
Mark Monteiro
c2b21ce553
Register and construct ILibraryMonitor correctly
5 years ago
Mark Monteiro
d173358065
Move ApplicationHost certificate initialization to constructor
5 years ago
Mark Monteiro
07cebbeae2
Register and construct IImageProcessor, SqliteItemRepository and IImageEncoder correctly
5 years ago
Mark Monteiro
efe3ebaab8
Eliminate circular dependency between LibraryManager and ImageProcessor
5 years ago
Mark Monteiro
11693d6024
Register ITvManagerService correctly
5 years ago
Mark Monteiro
71c84905de
Register IDeviceManager correctly
5 years ago
Mark Monteiro
573da63d41
Register and construct IMediaSourceManager correctly
5 years ago
Mark Monteiro
dd5a55aeba
Register ISubtitleManager correctly
5 years ago
Mark Monteiro
0ce82ab332
Remove unnecessary fields in ApplicationHost
5 years ago
Mark Monteiro
51b9a6e94b
Register IProviderManager correctly
5 years ago
Mark Monteiro
75b05ca1e6
Register and construct DtoService correctly
5 years ago
Mark Monteiro
cb2d99e831
Construct LiveTvDtoService and LiveTvManager correctly
5 years ago
Mark Monteiro
f78423bd49
Register IChannerManager correctly
5 years ago
Mark Monteiro
bb3db9e845
Register ISessionManager, IDlnaManager and ICollectionManager correctly; replace private properties with fields
5 years ago
Mark Monteiro
3d5b4f869c
Register ILiveTvManager and IPlaylistManager correctly
5 years ago
Mark Monteiro
1456365411
Register IUserViewManager correctly
5 years ago
Mark Monteiro
f1d0fb1edb
Register INotificationManager correctly; resolve services correctly
5 years ago
Mark Monteiro
78370911c2
Register IDeviceDiscovery, IChapterManager, IAttachmentExtractor correctly
5 years ago
Mark Monteiro
7884c3813d
Register IEncodingManager correctly; remove unnecessary properties in ApplicationHost
5 years ago
Mark Monteiro
4ba07b114d
Register and initialize IActivityRepository correctly
5 years ago
Mark Monteiro
3dbbe54f6c
Register IResourceFileManager correctly
5 years ago
Mark Monteiro
18c1823cea
Register IAuthorizationContext correctly
5 years ago
Mark Monteiro
358deecf52
Register ISessionContext correctly
5 years ago
Mark Monteiro
3147111471
Register IAuthService correctly
5 years ago
Mark Monteiro
92b0d40ad4
Move service initializations into correct method
5 years ago
Mark Monteiro
e9e12b8eb9
Register ISubtitleEncoder correctly
5 years ago
Bond_009
ae21c67537
Remove PluginInstalled
...
Doesn't do anything yet as all plugins (afaik) still require a restart
5 years ago
Mark Monteiro
e0f40f57d8
Merge remote-tracking branch 'upstream/master' into remove-common-process
5 years ago
Mark Monteiro
ca71ac72ab
Replace EnableHttps and SupportsHttps with ListenWithHttps and CanConnectWithHttps
5 years ago
Bond-009
b3283e37f2
Merge pull request #2740 from JustAMan/fix-livetv
...
Fix GetLocalApiUrl for cases with https enabled
5 years ago
Vasily
bece62fd5c
Fix GetLocalApiUrl for cases with https enabled
...
This should fix LiveTV and tuners
5 years ago
Mark Monteiro
0e57348cf4
Merge remote-tracking branch 'upstream/master' into development-https
5 years ago
Mark Monteiro
5b1091db27
Merge remote-tracking branch 'upstream/master' into do-not-instantiate-services-at-startup
5 years ago
Vasily
07ea120ba9
Merge pull request #2601 from mark-monteiro/support-running-without-web-content
...
Support Running Server Without Web Content
5 years ago
Vasily
10275a1f32
Merge pull request #2447 from Bond-009/minor
...
Add analyzers to MediaBrowser.Providers and minor improvements
5 years ago
Bond_009
787049f35f
Merge branch 'master' into minor
5 years ago
Bond_009
147e434634
Try to not crash on unsupported plugin load
5 years ago
Mark Monteiro
b947d98266
Delete unnecessary ProcessFactory abstraction
5 years ago
Mark Monteiro
ee2f911a2b
Remove unnecessary CommonProcess abstraction
5 years ago
Mark Monteiro
d1fe28fac6
Check for null before disposing
5 years ago
Mark Monteiro
6f8c81ff7e
Register ServiceController with the DI framework
5 years ago
Mark Monteiro
dc140429fe
Do not create unnecessary instances of IService at server startup
5 years ago
Mark Monteiro
c36e4ecc6c
Log all 'DOTNET_' and 'ASPNETCORE_' environment variables at application startup
5 years ago
Mark Monteiro
0e3d319a3a
Log 'ASPNETCORE_ENVIRONMENT' value at application startup
5 years ago
dkanada
9649b986d8
Merge pull request #2621 from mark-monteiro/log-env-vars-at-startup
...
Log 'JELLYFIN_' environment variables at application start
5 years ago
dkanada
a96c0a72b8
Merge pull request #2549 from dkanada/refactor
...
Refactor some provider classes
5 years ago
Mark Monteiro
885bc11b67
Log 'JELLYFIN_' environment variables at application start
5 years ago
Mark Monteiro
e2685c51ec
Merge remote-tracking branch 'upstream/master' into support-running-without-web-content
5 years ago
Mark Monteiro
05ab61200a
Do not call UseContentRoot() on the web host builder
...
This call has nothing to do with static web content and should not have ever been called with the web content path: https://docs.microsoft.com/en-us/aspnet/core/fundamentals/?view=aspnetcore-3.1&tabs=windows#content-root
Since this call is removed, the ContentRoot property is also removed from ApplicationHost as it is no longer needed.
Finally, move validation of the static content path to the DashboardService where it is actually used.
5 years ago
Mark Monteiro
6fbdf0d6a2
Construct ApplicationHost with DI framework instead of manually
5 years ago
Bond-009
94fe9b8f6d
Merge branch 'master' into warn17
5 years ago