[PR #353] [MERGED] Rename and rework entry point #8271

Closed
opened 2026-02-07 05:40:59 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/jellyfin/jellyfin/pull/353
Author: @Bond-009
Created: 1/1/2019
Status: Merged
Merged: 1/2/2019
Merged by: @JustAMan

Base: devHead: entry


📝 Commits (8)

  • ab0df62 Rename and rework entry point
  • 51ef6de Fix and improve logging
  • c92df20 Remove useless string builder
  • c406f77 Fix log dir
  • 6b04555 Fix errors and assembly name
  • 3d87574 Ensure log dir exists
  • 2f741be Log when falling back on NullImageEncoder
  • fd87285 Fix inconsistent code style

📊 Changes

28 files changed (+534 additions, -794 deletions)

View changed files

📝 Emby.Server.Implementations/AppBase/BaseApplicationPaths.cs (+20 -4)
📝 Emby.Server.Implementations/ApplicationHost.cs (+23 -48)
📝 Emby.Server.Implementations/EnvironmentInfo/EnvironmentInfo.cs (+12 -18)
📝 Emby.Server.Implementations/ServerApplicationPaths.cs (+2 -2)
📝 Emby.Server.Implementations/StartupOptions.cs (+7 -10)
Jellyfin.Server/CoreAppHost.cs (+57 -0)
Jellyfin.Server/Jellyfin.Server.csproj (+44 -0)
📝 Jellyfin.Server/PowerManagement.cs (+5 -3)
Jellyfin.Server/Program.cs (+312 -0)
📝 Jellyfin.Server/Resources/Configuration/logging.json (+0 -0)
📝 Jellyfin.Server/SocketSharp/HttpFile.cs (+3 -3)
📝 Jellyfin.Server/SocketSharp/RequestMono.cs (+2 -4)
📝 Jellyfin.Server/SocketSharp/SharpWebSocket.cs (+4 -4)
📝 Jellyfin.Server/SocketSharp/WebSocketSharpListener.cs (+7 -9)
📝 Jellyfin.Server/SocketSharp/WebSocketSharpRequest.cs (+2 -4)
📝 Jellyfin.Server/SocketSharp/WebSocketSharpResponse.cs (+4 -3)
📝 MediaBrowser.Api/System/SystemService.cs (+5 -5)
MediaBrowser.Model/System/Architecture.cs (+0 -10)
📝 MediaBrowser.Model/System/IEnvironmentInfo.cs (+2 -1)
📝 MediaBrowser.Model/System/SystemInfo.cs (+1 -2)

...and 8 more files

📄 Description

  • Renames main project to Jellyfin.Server
  • Removes Mono specific stuff
  • Fixes location of log dir and shows server logs on web UI
  • Should improve OS detection

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/jellyfin/jellyfin/pull/353 **Author:** [@Bond-009](https://github.com/Bond-009) **Created:** 1/1/2019 **Status:** ✅ Merged **Merged:** 1/2/2019 **Merged by:** [@JustAMan](https://github.com/JustAMan) **Base:** `dev` ← **Head:** `entry` --- ### 📝 Commits (8) - [`ab0df62`](https://github.com/jellyfin/jellyfin/commit/ab0df625d870c6d87ef698e27a25eb72b9155447) Rename and rework entry point - [`51ef6de`](https://github.com/jellyfin/jellyfin/commit/51ef6de8a6874f3dd209c3e8b4c5e7c26df7fea8) Fix and improve logging - [`c92df20`](https://github.com/jellyfin/jellyfin/commit/c92df20ce2b58a71a79d186cefb79d1b040791b7) Remove useless string builder - [`c406f77`](https://github.com/jellyfin/jellyfin/commit/c406f771ebbaa31beb879fe05de58cbc5025e1c0) Fix log dir - [`6b04555`](https://github.com/jellyfin/jellyfin/commit/6b04555c1ef89572bce417588e777991e3df8801) Fix errors and assembly name - [`3d87574`](https://github.com/jellyfin/jellyfin/commit/3d875741a89c848c239ac7bf1003f730e86d6c9f) Ensure log dir exists - [`2f741be`](https://github.com/jellyfin/jellyfin/commit/2f741be7f1d22367e6a519ad5218aa19d174b602) Log when falling back on NullImageEncoder - [`fd87285`](https://github.com/jellyfin/jellyfin/commit/fd87285bad48dde09f1949dcb6da389f7763cc07) Fix inconsistent code style ### 📊 Changes **28 files changed** (+534 additions, -794 deletions) <details> <summary>View changed files</summary> 📝 `Emby.Server.Implementations/AppBase/BaseApplicationPaths.cs` (+20 -4) 📝 `Emby.Server.Implementations/ApplicationHost.cs` (+23 -48) 📝 `Emby.Server.Implementations/EnvironmentInfo/EnvironmentInfo.cs` (+12 -18) 📝 `Emby.Server.Implementations/ServerApplicationPaths.cs` (+2 -2) 📝 `Emby.Server.Implementations/StartupOptions.cs` (+7 -10) ➕ `Jellyfin.Server/CoreAppHost.cs` (+57 -0) ➕ `Jellyfin.Server/Jellyfin.Server.csproj` (+44 -0) 📝 `Jellyfin.Server/PowerManagement.cs` (+5 -3) ➕ `Jellyfin.Server/Program.cs` (+312 -0) 📝 `Jellyfin.Server/Resources/Configuration/logging.json` (+0 -0) 📝 `Jellyfin.Server/SocketSharp/HttpFile.cs` (+3 -3) 📝 `Jellyfin.Server/SocketSharp/RequestMono.cs` (+2 -4) 📝 `Jellyfin.Server/SocketSharp/SharpWebSocket.cs` (+4 -4) 📝 `Jellyfin.Server/SocketSharp/WebSocketSharpListener.cs` (+7 -9) 📝 `Jellyfin.Server/SocketSharp/WebSocketSharpRequest.cs` (+2 -4) 📝 `Jellyfin.Server/SocketSharp/WebSocketSharpResponse.cs` (+4 -3) 📝 `MediaBrowser.Api/System/SystemService.cs` (+5 -5) ➖ `MediaBrowser.Model/System/Architecture.cs` (+0 -10) 📝 `MediaBrowser.Model/System/IEnvironmentInfo.cs` (+2 -1) 📝 `MediaBrowser.Model/System/SystemInfo.cs` (+1 -2) _...and 8 more files_ </details> ### 📄 Description * Renames main project to Jellyfin.Server * Removes Mono specific stuff * Fixes location of log dir and shows server logs on web UI * Should improve OS detection --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-07 05:40:59 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/jellyfin#8271