Add disable upload checkbox to UI
This commit is contained in:
parent
7fda8c0a14
commit
8379672f01
4 changed files with 17 additions and 0 deletions
|
|
@ -41,6 +41,7 @@ interface RqbitDesktopConfigUpnp {
|
|||
|
||||
export interface RqbitDesktopConfig {
|
||||
default_download_location: PathLike;
|
||||
disable_upload: boolean;
|
||||
dht: RqbitDesktopConfigDht;
|
||||
tcp_listen: RqbitDesktopConfigTcpListen;
|
||||
upnp: RqbitDesktopConfigUpnp;
|
||||
|
|
|
|||
|
|
@ -210,6 +210,16 @@ export const ConfigModal: React.FC<{
|
|||
onChange={handleInputChange}
|
||||
help="Where to download torrents by default. You can override this per torrent."
|
||||
/>
|
||||
|
||||
<FormCheck
|
||||
label="Disable upload"
|
||||
name="disable_upload"
|
||||
checked={config.disable_upload}
|
||||
onChange={handleToggleChange}
|
||||
help="Disable uploading entirely. If this is set, rqbit won't share piece availability and will disconnect on download request.
|
||||
|
||||
Might be useful e.g. if rqbit upload consumes all your upload bandwidth and interferes with your other Internet usage."
|
||||
/>
|
||||
</Tab>
|
||||
|
||||
<Tab name="DHT" currentTab={tab}>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue