Add NetworkTransportBindAddress config field to WebUI#75
Draft
Copilot wants to merge 1 commit into
Draft
Conversation
Add support for the new NetworkTransportBindAddress global config option introduced in BililiveRecorder/BililiveRecorder#787. Changes: - Add networkTransportBindAddress to DefaultConfig interface - Add optionalNetworkTransportBindAddress to GlobalConfigDto interface - Add default value in mock config - Add text input in network settings section of SettingPage
Copilot
AI
changed the title
feat: add NetworkTransportBindAddress config field to WebUI
Add NetworkTransportBindAddress config field to WebUI
May 31, 2026
Copilot created this pull request from a session on behalf of
Genteure
May 31, 2026 06:57
View session
Deploying bililiverecorder-webui with
|
| Latest commit: |
faa2638
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://08e91def.bililiverecorder-webui.pages.dev |
| Branch Preview URL: | https://copilot-787-ui-change-for-co.bililiverecorder-webui.pages.dev |
There was a problem hiding this comment.
Pull request overview
Adds WebUI support for the new global NetworkTransportBindAddress configuration so users can bind recorder network connections to a specific local interface/IP.
Changes:
- Adds
networkTransportBindAddressto default/global config typings and mock defaults. - Adds a new optional text input in the advanced network settings section.
- Initializes the new UI config item from the default config.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
src/utils/api.ts |
Extends config DTO/default typings and mock config with networkTransportBindAddress. |
src/views/recorder/SettingPage.vue |
Adds the bind-address field to network settings and initializes its optional config item. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds UI support for the new
NetworkTransportBindAddressglobal config option from BililiveRecorder/BililiveRecorder#787, which allows binding network connections to a specific interface or IP address.src/utils/api.ts: AddednetworkTransportBindAddress: stringtoDefaultConfig,optionalNetworkTransportBindAddress: StringOptionaltoGlobalConfigDto, and default value in mock configsrc/views/recorder/SettingPage.vue: Added text input (labeled "绑定的网络接口或IP地址") in the network settings section, with correspondingnewConfiginitialization