[PR #3443] [CLOSED] Api migration merge #9529

Closed
opened 2026-02-07 06:03:49 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/jellyfin/jellyfin/pull/3443
Author: @crobibero
Created: 6/25/2020
Status: Closed

Base: api-migrationHead: api-migration-merge


📝 Commits (10+)

  • f055995 Use System.Buffers in RangeRequestWriter
  • 6b959f4 Fix build
  • 2aaecb8 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.
  • a3140f8 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."
  • ebd589a 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.
  • 8a69300 Changes styles as suggested by @barronpm
  • 61e65d0 Update MediaBrowser.Common/Net/INetworkManager.cs
  • 5e1be0d Update MediaBrowser.Common/Net/INetworkManager.cs
  • d5a9247 Update MediaBrowser.Common/Net/INetworkManager.cs
  • 3a53332 Update Emby.Server.Implementations/Networking/NetworkManager.cs

📊 Changes

646 files changed (+6653 additions, -3075 deletions)

View changed files

.ci/azure-pipelines-package.yml (+131 -0)
📝 .ci/azure-pipelines.yml (+2 -0)
📝 .gitignore (+1 -2)
📝 .vscode/launch.json (+6 -6)
📝 .vscode/tasks.json (+6 -1)
📝 DvdLib/Ifo/Cell.cs (+1 -0)
📝 DvdLib/Ifo/Chapter.cs (+2 -0)
📝 DvdLib/Ifo/Dvd.cs (+13 -3)
📝 DvdLib/Ifo/DvdTime.cs (+8 -2)
📝 DvdLib/Ifo/ProgramChain.cs (+13 -2)
📝 DvdLib/Ifo/Title.cs (+8 -1)
📝 Emby.Dlna/ContentDirectory/ControlHandler.cs (+4 -3)
📝 Emby.Dlna/Didl/DidlBuilder.cs (+12 -10)
📝 Emby.Dlna/Didl/Filter.cs (+1 -2)
📝 Emby.Dlna/DlnaManager.cs (+26 -6)
📝 Emby.Dlna/Eventing/EventManager.cs (+18 -10)
📝 Emby.Dlna/Eventing/EventSubscription.cs (+3 -0)
📝 Emby.Dlna/Main/DlnaEntryPoint.cs (+26 -20)
📝 Emby.Dlna/PlayTo/Device.cs (+21 -25)
📝 Emby.Dlna/PlayTo/PlayToController.cs (+5 -0)

...and 80 more files

📄 Description

Pls no more Mediabrowser.Api changes


🔄 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/3443 **Author:** [@crobibero](https://github.com/crobibero) **Created:** 6/25/2020 **Status:** ❌ Closed **Base:** `api-migration` ← **Head:** `api-migration-merge` --- ### 📝 Commits (10+) - [`f055995`](https://github.com/jellyfin/jellyfin/commit/f055995a1f59e3395e99e8fc9b470d1dfed2914b) Use System.Buffers in RangeRequestWriter - [`6b959f4`](https://github.com/jellyfin/jellyfin/commit/6b959f40ac208094da0a1d41d8c8a42df9a87876) Fix build - [`2aaecb8`](https://github.com/jellyfin/jellyfin/commit/2aaecb8e148aef6cda67797fa4227a8ebcf7e5bb) 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. - [`a3140f8`](https://github.com/jellyfin/jellyfin/commit/a3140f83c6461164658303d1bb7c1d992cfd9802) 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." - [`ebd589a`](https://github.com/jellyfin/jellyfin/commit/ebd589aa86abb7bdbc9ab981cb8f4c908f790ac1) 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. - [`8a69300`](https://github.com/jellyfin/jellyfin/commit/8a69300bf55bdf323ceabf68b2888dab3040e883) Changes styles as suggested by @barronpm - [`61e65d0`](https://github.com/jellyfin/jellyfin/commit/61e65d032ecb1d2bf614e018f4a0dd925300cfde) Update MediaBrowser.Common/Net/INetworkManager.cs - [`5e1be0d`](https://github.com/jellyfin/jellyfin/commit/5e1be0d4f0ac6ec4aa5f30ab617b544a38420c1a) Update MediaBrowser.Common/Net/INetworkManager.cs - [`d5a9247`](https://github.com/jellyfin/jellyfin/commit/d5a924772b0b25808beb3405a041a037bbc679c8) Update MediaBrowser.Common/Net/INetworkManager.cs - [`3a53332`](https://github.com/jellyfin/jellyfin/commit/3a5333228fc28c511c7a2d44ea0bc036c0474ccf) Update Emby.Server.Implementations/Networking/NetworkManager.cs ### 📊 Changes **646 files changed** (+6653 additions, -3075 deletions) <details> <summary>View changed files</summary> ➕ `.ci/azure-pipelines-package.yml` (+131 -0) 📝 `.ci/azure-pipelines.yml` (+2 -0) 📝 `.gitignore` (+1 -2) 📝 `.vscode/launch.json` (+6 -6) 📝 `.vscode/tasks.json` (+6 -1) 📝 `DvdLib/Ifo/Cell.cs` (+1 -0) 📝 `DvdLib/Ifo/Chapter.cs` (+2 -0) 📝 `DvdLib/Ifo/Dvd.cs` (+13 -3) 📝 `DvdLib/Ifo/DvdTime.cs` (+8 -2) 📝 `DvdLib/Ifo/ProgramChain.cs` (+13 -2) 📝 `DvdLib/Ifo/Title.cs` (+8 -1) 📝 `Emby.Dlna/ContentDirectory/ControlHandler.cs` (+4 -3) 📝 `Emby.Dlna/Didl/DidlBuilder.cs` (+12 -10) 📝 `Emby.Dlna/Didl/Filter.cs` (+1 -2) 📝 `Emby.Dlna/DlnaManager.cs` (+26 -6) 📝 `Emby.Dlna/Eventing/EventManager.cs` (+18 -10) 📝 `Emby.Dlna/Eventing/EventSubscription.cs` (+3 -0) 📝 `Emby.Dlna/Main/DlnaEntryPoint.cs` (+26 -20) 📝 `Emby.Dlna/PlayTo/Device.cs` (+21 -25) 📝 `Emby.Dlna/PlayTo/PlayToController.cs` (+5 -0) _...and 80 more files_ </details> ### 📄 Description Pls no more Mediabrowser.Api changes --- <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 06:03:49 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/jellyfin#9529