mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-11 23:37:59 +00:00
Merge pull request #3279 from ngosang/webui_newoptions
[Web UI] Add new options
This commit is contained in:
commit
216bf9b477
@ -68,6 +68,8 @@ QByteArray prefjson::getPreferences()
|
|||||||
data["download_in_scan_dirs"] = var_list;
|
data["download_in_scan_dirs"] = var_list;
|
||||||
data["export_dir_enabled"] = pref->isTorrentExportEnabled();
|
data["export_dir_enabled"] = pref->isTorrentExportEnabled();
|
||||||
data["export_dir"] = Utils::Fs::toNativePath(pref->getTorrentExportDir());
|
data["export_dir"] = Utils::Fs::toNativePath(pref->getTorrentExportDir());
|
||||||
|
data["export_dir_fin_enabled"] = pref->isFinishedTorrentExportEnabled();
|
||||||
|
data["export_dir_fin"] = Utils::Fs::toNativePath(pref->getFinishedTorrentExportDir());
|
||||||
data["mail_notification_enabled"] = pref->isMailNotificationEnabled();
|
data["mail_notification_enabled"] = pref->isMailNotificationEnabled();
|
||||||
data["mail_notification_email"] = pref->getMailNotificationEmail();
|
data["mail_notification_email"] = pref->getMailNotificationEmail();
|
||||||
data["mail_notification_smtp"] = pref->getMailNotificationSMTP();
|
data["mail_notification_smtp"] = pref->getMailNotificationSMTP();
|
||||||
@ -82,11 +84,15 @@ QByteArray prefjson::getPreferences()
|
|||||||
data["max_active_downloads"] = pref->getMaxActiveDownloads();
|
data["max_active_downloads"] = pref->getMaxActiveDownloads();
|
||||||
data["max_active_torrents"] = pref->getMaxActiveTorrents();
|
data["max_active_torrents"] = pref->getMaxActiveTorrents();
|
||||||
data["max_active_uploads"] = pref->getMaxActiveUploads();
|
data["max_active_uploads"] = pref->getMaxActiveUploads();
|
||||||
|
data["max_ratio_enabled"] = (pref->getGlobalMaxRatio() >= 0.);
|
||||||
|
data["max_ratio"] = pref->getGlobalMaxRatio();
|
||||||
|
data["max_ratio_act"] = pref->getMaxRatioAction();
|
||||||
data["dont_count_slow_torrents"] = pref->ignoreSlowTorrentsForQueueing();
|
data["dont_count_slow_torrents"] = pref->ignoreSlowTorrentsForQueueing();
|
||||||
data["incomplete_files_ext"] = pref->useIncompleteFilesExtension();
|
data["incomplete_files_ext"] = pref->useIncompleteFilesExtension();
|
||||||
// Connection
|
// Connection
|
||||||
data["listen_port"] = pref->getSessionPort();
|
data["listen_port"] = pref->getSessionPort();
|
||||||
data["upnp"] = pref->isUPnPEnabled();
|
data["upnp"] = pref->isUPnPEnabled();
|
||||||
|
data["random_port"] = pref->useRandomPort();
|
||||||
data["dl_limit"] = pref->getGlobalDownloadLimit();
|
data["dl_limit"] = pref->getGlobalDownloadLimit();
|
||||||
data["up_limit"] = pref->getGlobalUploadLimit();
|
data["up_limit"] = pref->getGlobalUploadLimit();
|
||||||
data["max_connec"] = pref->getMaxConnecs();
|
data["max_connec"] = pref->getMaxConnecs();
|
||||||
@ -117,12 +123,16 @@ QByteArray prefjson::getPreferences()
|
|||||||
data["proxy_ip"] = pref->getProxyIp();
|
data["proxy_ip"] = pref->getProxyIp();
|
||||||
data["proxy_port"] = pref->getProxyPort();
|
data["proxy_port"] = pref->getProxyPort();
|
||||||
data["proxy_peer_connections"] = pref->proxyPeerConnections();
|
data["proxy_peer_connections"] = pref->proxyPeerConnections();
|
||||||
|
#if LIBTORRENT_VERSION_NUM >= 10000
|
||||||
|
data["force_proxy"] = pref->getForceProxy();
|
||||||
|
#endif
|
||||||
data["proxy_auth_enabled"] = pref->isProxyAuthEnabled();
|
data["proxy_auth_enabled"] = pref->isProxyAuthEnabled();
|
||||||
data["proxy_username"] = pref->getProxyUsername();
|
data["proxy_username"] = pref->getProxyUsername();
|
||||||
data["proxy_password"] = pref->getProxyPassword();
|
data["proxy_password"] = pref->getProxyPassword();
|
||||||
// IP Filter
|
// IP Filter
|
||||||
data["ip_filter_enabled"] = pref->isFilteringEnabled();
|
data["ip_filter_enabled"] = pref->isFilteringEnabled();
|
||||||
data["ip_filter_path"] = Utils::Fs::toNativePath(pref->getFilter());
|
data["ip_filter_path"] = Utils::Fs::toNativePath(pref->getFilter());
|
||||||
|
data["ip_filter_trackers"] = pref->isFilteringTrackerEnabled();
|
||||||
// Web UI
|
// Web UI
|
||||||
data["web_ui_port"] = pref->getWebUiPort();
|
data["web_ui_port"] = pref->getWebUiPort();
|
||||||
data["web_ui_username"] = pref->getWebUiUsername();
|
data["web_ui_username"] = pref->getWebUiUsername();
|
||||||
@ -198,6 +208,8 @@ void prefjson::setPreferences(const QString& json)
|
|||||||
}
|
}
|
||||||
if (m.contains("export_dir"))
|
if (m.contains("export_dir"))
|
||||||
pref->setTorrentExportDir(m["export_dir"].toString());
|
pref->setTorrentExportDir(m["export_dir"].toString());
|
||||||
|
if (m.contains("export_dir_fin"))
|
||||||
|
pref->setFinishedTorrentExportDir(m["export_dir_fin"].toString());
|
||||||
if (m.contains("mail_notification_enabled"))
|
if (m.contains("mail_notification_enabled"))
|
||||||
pref->setMailNotificationEnabled(m["mail_notification_enabled"].toBool());
|
pref->setMailNotificationEnabled(m["mail_notification_enabled"].toBool());
|
||||||
if (m.contains("mail_notification_email"))
|
if (m.contains("mail_notification_email"))
|
||||||
@ -226,6 +238,12 @@ void prefjson::setPreferences(const QString& json)
|
|||||||
pref->setMaxActiveTorrents(m["max_active_torrents"].toInt());
|
pref->setMaxActiveTorrents(m["max_active_torrents"].toInt());
|
||||||
if (m.contains("max_active_uploads"))
|
if (m.contains("max_active_uploads"))
|
||||||
pref->setMaxActiveUploads(m["max_active_uploads"].toInt());
|
pref->setMaxActiveUploads(m["max_active_uploads"].toInt());
|
||||||
|
if (m.contains("max_ratio_enabled"))
|
||||||
|
pref->setGlobalMaxRatio(m["max_ratio"].toInt());
|
||||||
|
else
|
||||||
|
pref->setGlobalMaxRatio(-1);
|
||||||
|
if (m.contains("max_ratio_act"))
|
||||||
|
pref->setMaxRatioAction(m["max_ratio_act"].toInt());
|
||||||
if (m.contains("dont_count_slow_torrents"))
|
if (m.contains("dont_count_slow_torrents"))
|
||||||
pref->setIgnoreSlowTorrentsForQueueing(m["dont_count_slow_torrents"].toBool());
|
pref->setIgnoreSlowTorrentsForQueueing(m["dont_count_slow_torrents"].toBool());
|
||||||
if (m.contains("incomplete_files_ext"))
|
if (m.contains("incomplete_files_ext"))
|
||||||
@ -235,6 +253,8 @@ void prefjson::setPreferences(const QString& json)
|
|||||||
pref->setSessionPort(m["listen_port"].toInt());
|
pref->setSessionPort(m["listen_port"].toInt());
|
||||||
if (m.contains("upnp"))
|
if (m.contains("upnp"))
|
||||||
pref->setUPnPEnabled(m["upnp"].toBool());
|
pref->setUPnPEnabled(m["upnp"].toBool());
|
||||||
|
if (m.contains("random_port"))
|
||||||
|
pref->setRandomPort(m["random_port"].toBool());
|
||||||
if (m.contains("dl_limit"))
|
if (m.contains("dl_limit"))
|
||||||
pref->setGlobalDownloadLimit(m["dl_limit"].toInt());
|
pref->setGlobalDownloadLimit(m["dl_limit"].toInt());
|
||||||
if (m.contains("up_limit"))
|
if (m.contains("up_limit"))
|
||||||
@ -290,6 +310,10 @@ void prefjson::setPreferences(const QString& json)
|
|||||||
pref->setProxyPort(m["proxy_port"].toUInt());
|
pref->setProxyPort(m["proxy_port"].toUInt());
|
||||||
if (m.contains("proxy_peer_connections"))
|
if (m.contains("proxy_peer_connections"))
|
||||||
pref->setProxyPeerConnections(m["proxy_peer_connections"].toBool());
|
pref->setProxyPeerConnections(m["proxy_peer_connections"].toBool());
|
||||||
|
#if LIBTORRENT_VERSION_NUM >= 10000
|
||||||
|
if (m.contains("force_proxy"))
|
||||||
|
pref->setForceProxy(m["force_proxy"].toBool());
|
||||||
|
#endif
|
||||||
if (m.contains("proxy_auth_enabled"))
|
if (m.contains("proxy_auth_enabled"))
|
||||||
pref->setProxyAuthEnabled(m["proxy_auth_enabled"].toBool());
|
pref->setProxyAuthEnabled(m["proxy_auth_enabled"].toBool());
|
||||||
if (m.contains("proxy_username"))
|
if (m.contains("proxy_username"))
|
||||||
@ -301,6 +325,8 @@ void prefjson::setPreferences(const QString& json)
|
|||||||
pref->setFilteringEnabled(m["ip_filter_enabled"].toBool());
|
pref->setFilteringEnabled(m["ip_filter_enabled"].toBool());
|
||||||
if (m.contains("ip_filter_path"))
|
if (m.contains("ip_filter_path"))
|
||||||
pref->setFilter(m["ip_filter_path"].toString());
|
pref->setFilter(m["ip_filter_path"].toString());
|
||||||
|
if (m.contains("ip_filter_trackers"))
|
||||||
|
pref->setFilteringTrackerEnabled(m["ip_filter_trackers"].toBool());
|
||||||
// Web UI
|
// Web UI
|
||||||
if (m.contains("web_ui_port"))
|
if (m.contains("web_ui_port"))
|
||||||
pref->setWebUiPort(m["web_ui_port"].toUInt());
|
pref->setWebUiPort(m["web_ui_port"].toUInt());
|
||||||
|
@ -46,7 +46,7 @@
|
|||||||
#include "websessiondata.h"
|
#include "websessiondata.h"
|
||||||
#include "webapplication.h"
|
#include "webapplication.h"
|
||||||
|
|
||||||
static const int API_VERSION = 2;
|
static const int API_VERSION = 3;
|
||||||
static const int API_VERSION_MIN = 2;
|
static const int API_VERSION_MIN = 2;
|
||||||
|
|
||||||
const QString WWW_FOLDER = ":/www/public/";
|
const QString WWW_FOLDER = ":/www/public/";
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<fieldset class="settings">
|
<fieldset class="settings">
|
||||||
<legend>QBT_TR(Hard Disk)QBT_TR</legend>
|
<legend>QBT_TR(Hard Disk)QBT_TR</legend>
|
||||||
<div class="formRow">
|
<div class="formRow">
|
||||||
<label for="savepath_text" class="leftLabelLarge">QBT_TR(Save files to location:)QBT_TR</label>
|
<label for="savepath_text">QBT_TR(Save files to location:)QBT_TR</label>
|
||||||
<input type="text" id="savepath_text"/>
|
<input type="text" id="savepath_text"/>
|
||||||
</div>
|
</div>
|
||||||
<div class="formRow">
|
<div class="formRow">
|
||||||
@ -10,30 +10,29 @@
|
|||||||
<label for="temppath_checkbox">QBT_TR(Keep incomplete torrents in:)QBT_TR</label>
|
<label for="temppath_checkbox">QBT_TR(Keep incomplete torrents in:)QBT_TR</label>
|
||||||
<input type="text" id="temppath_text"/>
|
<input type="text" id="temppath_text"/>
|
||||||
</div>
|
</div>
|
||||||
<br/>
|
<input type="checkbox" id="preallocateall_checkbox"/>
|
||||||
|
<label for="preallocateall_checkbox">QBT_TR(Pre-allocate disk space for all files)QBT_TR</label><br/>
|
||||||
|
<span id="appendexttr">
|
||||||
|
<input type="checkbox" id="appendext_checkbox"/>
|
||||||
|
<label for="appendext_checkbox">QBT_TR(Append .!qB extension to incomplete files)QBT_TR</label>
|
||||||
|
</span><br/><br/>
|
||||||
QBT_TR(Automatically add torrents from:)QBT_TR<br/>
|
QBT_TR(Automatically add torrents from:)QBT_TR<br/>
|
||||||
<table border="1" id="watched_folders_tab">
|
<table border="1" id="watched_folders_tab">
|
||||||
<thead><tr><th>QBT_TR(Watched Folder)QBT_TR</th><th>QBT_TR(Download here)QBT_TR</th></tr></thead>
|
<thead><tr><th>QBT_TR(Watched Folder)QBT_TR</th><th>QBT_TR(Download here)QBT_TR</th></tr></thead>
|
||||||
<tbody></tbody>
|
<tbody></tbody>
|
||||||
<tfoot><tr><td style="padding-top:4px;"><input type="text" id="new_watch_folder_txt"/></td><td style="padding-top:4px;"><input type="checkbox" id="new_watch_folder_dl" style="padding-left:18px;"/><img src="theme/list-add" alt="Add" style="padding-left:2px;width:16px;cursor:pointer;margin-right:-18px;" onclick="javascript:addWatchFolder();"/></td></tr></tfoot>
|
<tfoot><tr><td style="padding-top:4px;"><input type="text" id="new_watch_folder_txt"/></td><td style="padding-top:4px;"><input type="checkbox" id="new_watch_folder_dl" style="padding-left:18px;"/><img src="theme/list-add" alt="Add" style="padding-left:2px;width:16px;cursor:pointer;margin-right:-18px;" onclick="javascript:addWatchFolder();"/></td></tr></tfoot>
|
||||||
</table><br/>
|
</table><br/>
|
||||||
|
|
||||||
<input type="checkbox" id="exportdir_checkbox" onclick="updateExportDirEnabled();"/>
|
<input type="checkbox" id="exportdir_checkbox" onclick="updateExportDirEnabled();"/>
|
||||||
<label for="exportdir_checkbox">QBT_TR(Copy .torrent files to:)QBT_TR</label>
|
<label for="exportdir_checkbox">QBT_TR(Copy .torrent files to:)QBT_TR</label>
|
||||||
<input type="text" id="exportdir_text"/><br/>
|
<input type="text" id="exportdir_text"/><br/>
|
||||||
<span id="appendexttr">
|
<input type="checkbox" id="exportdirfin_checkbox" onclick="updateExportDirFinEnabled();"/>
|
||||||
<input type="checkbox" id="appendext_checkbox"/>
|
<label for="exportdirfin_checkbox">QBT_TR(Copy .torrent files for finished downloads to:)QBT_TR</label>
|
||||||
<label for="appendext_checkbox">QBT_TR(Append .!qB extension to incomplete files)QBT_TR</label><br/>
|
<input type="text" id="exportdirfin_text"/><br/>
|
||||||
</span>
|
|
||||||
|
|
||||||
<input type="checkbox" id="preallocateall_checkbox"/>
|
|
||||||
<label for="preallocateall_checkbox">QBT_TR(Pre-allocate disk space for all files)QBT_TR</label><br/>
|
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
<fieldset class="settings">
|
<fieldset class="settings">
|
||||||
<legend>QBT_TR(Email notification upon download completion)QBT_TR</legend>
|
<legend><input type="checkbox" id="mail_notification_checkbox" onclick="updateMailNotification();"/>
|
||||||
<input type="checkbox" id="mail_notification_checkbox" onclick="updateMailNotification();"/>
|
<label for="mail_notification_checkbox">QBT_TR(Email notification upon download completion)QBT_TR</label></legend>
|
||||||
<label for="mail_notification_checkbox">QBT_TR(Email notification upon download completion)QBT_TR</label><br/>
|
|
||||||
<div class="formRow">
|
<div class="formRow">
|
||||||
<label for="dest_email_txt" class="leftLabelLarge">QBT_TR(Destination email:)QBT_TR</label><input type="text" id="dest_email_txt"/>
|
<label for="dest_email_txt" class="leftLabelLarge">QBT_TR(Destination email:)QBT_TR</label><input type="text" id="dest_email_txt"/>
|
||||||
</div>
|
</div>
|
||||||
@ -43,7 +42,8 @@
|
|||||||
<div class="formRow">
|
<div class="formRow">
|
||||||
<input type="checkbox" id="mail_ssl_checkbox"/><label for="mail_ssl_checkbox">QBT_TR(This server requires a secure connection (SSL))QBT_TR</label>
|
<input type="checkbox" id="mail_ssl_checkbox"/><label for="mail_ssl_checkbox">QBT_TR(This server requires a secure connection (SSL))QBT_TR</label>
|
||||||
</div>
|
</div>
|
||||||
<input type="checkbox" id="mail_auth_checkbox" onclick="updateMailAuthSettings();"/><label for="mail_auth_checkbox">QBT_TR(Authentication)QBT_TR</label><br/>
|
<fieldset class="settings">
|
||||||
|
<legend><input type="checkbox" id="mail_auth_checkbox" onclick="updateMailAuthSettings();"/><label for="mail_auth_checkbox">QBT_TR(Authentication)QBT_TR</label></legend>
|
||||||
<div class="formRow">
|
<div class="formRow">
|
||||||
<label for="mail_username_text" class="leftLabelLarge">QBT_TR(Username:)QBT_TR</label><input type="text" id="mail_username_text"/>
|
<label for="mail_username_text" class="leftLabelLarge">QBT_TR(Username:)QBT_TR</label><input type="text" id="mail_username_text"/>
|
||||||
</div>
|
</div>
|
||||||
@ -51,11 +51,11 @@
|
|||||||
<label for="mail_password_text" class="leftLabelLarge">QBT_TR(Password:)QBT_TR</label><input type="password" id="mail_password_text"/>
|
<label for="mail_password_text" class="leftLabelLarge">QBT_TR(Password:)QBT_TR</label><input type="password" id="mail_password_text"/>
|
||||||
</div>
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
</fieldset>
|
||||||
|
|
||||||
<fieldset class="settings">
|
<fieldset class="settings">
|
||||||
<legend>QBT_TR(Run an external program on torrent completion)QBT_TR</legend>
|
<legend><input type="checkbox" id="autorun_checkbox" onclick="updateAutoRun();"/>
|
||||||
<input type="checkbox" id="autorun_checkbox" onclick="updateAutoRun();"/>
|
<label for="autorun_checkbox">QBT_TR(Run an external program on torrent completion)QBT_TR</label></legend>
|
||||||
<label for="autorun_checkbox">QBT_TR(Run an external program on torrent completion)QBT_TR</label><br/>
|
|
||||||
<input type="text" id="autorunProg_txt" style="width: 400px;"/><br/>
|
<input type="text" id="autorunProg_txt" style="width: 400px;"/><br/>
|
||||||
<i>QBT_TR(The following parameters are supported:)QBT_TR
|
<i>QBT_TR(The following parameters are supported:)QBT_TR
|
||||||
<ul>
|
<ul>
|
||||||
@ -71,7 +71,9 @@
|
|||||||
<label for="port_value">QBT_TR(Port used for incoming connections:)QBT_TR</label>
|
<label for="port_value">QBT_TR(Port used for incoming connections:)QBT_TR</label>
|
||||||
<input type="text" id="port_value" style="width: 4em;"/><br/>
|
<input type="text" id="port_value" style="width: 4em;"/><br/>
|
||||||
<input type="checkbox" id="upnp_checkbox"/>
|
<input type="checkbox" id="upnp_checkbox"/>
|
||||||
<label for="upnp_checkbox">QBT_TR(Use UPnP / NAT-PMP port forwarding from my router)QBT_TR</label>
|
<label for="upnp_checkbox">QBT_TR(Use UPnP / NAT-PMP port forwarding from my router)QBT_TR</label><br/>
|
||||||
|
<input type="checkbox" id="random_port_checkbox"/>
|
||||||
|
<label for="random_port_checkbox">QBT_TR(Use different port on each startup)QBT_TR</label>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
<fieldset class="settings">
|
<fieldset class="settings">
|
||||||
@ -131,8 +133,13 @@
|
|||||||
<input type="checkbox" id="use_peer_proxy_checkbox"/>
|
<input type="checkbox" id="use_peer_proxy_checkbox"/>
|
||||||
<label for="use_peer_proxy_checkbox">QBT_TR(Use proxy for peer connections)QBT_TR</label>
|
<label for="use_peer_proxy_checkbox">QBT_TR(Use proxy for peer connections)QBT_TR</label>
|
||||||
</div>
|
</div>
|
||||||
<input type="checkbox" id="peer_proxy_auth_checkbox" onclick="updatePeerProxyAuthSettings();"/>
|
<div class="formRow">
|
||||||
<label for="peer_proxy_auth_checkbox">QBT_TR(Authentication)QBT_TR</label><br/>
|
<input type="checkbox" id="force_proxy_checkbox"/>
|
||||||
|
<label for="force_proxy_checkbox">QBT_TR(Disable connections not supported by proxies)QBT_TR</label>
|
||||||
|
</div>
|
||||||
|
<fieldset class="settings">
|
||||||
|
<legend><input type="checkbox" id="peer_proxy_auth_checkbox" onclick="updatePeerProxyAuthSettings();"/>
|
||||||
|
<label for="peer_proxy_auth_checkbox">QBT_TR(Authentication)QBT_TR</label></legend>
|
||||||
<div class="formRow">
|
<div class="formRow">
|
||||||
<label for="peer_proxy_username_text" class="leftLabelLarge">QBT_TR(Username:)QBT_TR</label>
|
<label for="peer_proxy_username_text" class="leftLabelLarge">QBT_TR(Username:)QBT_TR</label>
|
||||||
<input type="text" id="peer_proxy_username_text" />
|
<input type="text" id="peer_proxy_username_text" />
|
||||||
@ -142,13 +149,15 @@
|
|||||||
<input type="password" id="peer_proxy_password_text" />
|
<input type="password" id="peer_proxy_password_text" />
|
||||||
</div>
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
</fieldset>
|
||||||
|
|
||||||
<fieldset class="settings">
|
<fieldset class="settings">
|
||||||
<legend>QBT_TR(IP Filtering)QBT_TR</legend>
|
<legend><input type="checkbox" id="ipfilter_enabled_checkbox" onclick="updateFilterSettings();"/>
|
||||||
<input type="checkbox" id="ipfilter_enabled_checkbox" onclick="updateFilterSettings();"/>
|
<label for="ipfilter_enabled_checkbox">QBT_TR(IP Filtering)QBT_TR</label></legend>
|
||||||
<label for="ipfilter_enabled_checkbox">QBT_TR(IP Filtering)QBT_TR</label><br/>
|
<label for="ipfilter_text">QBT_TR(Filter path (.dat, .p2p, .p2b):)QBT_TR</label>
|
||||||
<label for="ipfilter_text" style="margin-left: 20px;">QBT_TR(Filter path (.dat, .p2p, .p2b):)QBT_TR</label>
|
<input type="text" id="ipfilter_text"/><br/>
|
||||||
<input type="text" id="ipfilter_text"/>
|
<input type="checkbox" id="ipfilter_trackers_checkbox"/>
|
||||||
|
<label for="ipfilter_trackers_checkbox">QBT_TR(Apply to trackers)QBT_TR</label>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -240,14 +249,13 @@
|
|||||||
<option value="1">QBT_TR(Require encryption)QBT_TR</option>
|
<option value="1">QBT_TR(Require encryption)QBT_TR</option>
|
||||||
<option value="2">QBT_TR(Disable encryption)QBT_TR</option>
|
<option value="2">QBT_TR(Disable encryption)QBT_TR</option>
|
||||||
</select><br/>
|
</select><br/>
|
||||||
<input type="checkbox" id="anonymous_mode_checkbox" onClick="toggleAnonymousMode()"/>
|
<input type="checkbox" id="anonymous_mode_checkbox"/>
|
||||||
<label for="anonymous_mode_checkbox">QBT_TR(Enable anonymous mode)QBT_TR (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>)</label><br/>
|
<label for="anonymous_mode_checkbox">QBT_TR(Enable anonymous mode)QBT_TR (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>)</label><br/>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
<fieldset class="settings">
|
<fieldset class="settings">
|
||||||
<legend>QBT_TR(Torrent Queueing)QBT_TR</legend>
|
<legend><input type="checkbox" id="queueing_checkbox" onclick="updateQueueingSystem();"/>
|
||||||
<input type="checkbox" id="queueing_checkbox" onclick="updateQueueingSystem();"/>
|
<label for="queueing_checkbox">QBT_TR(Torrent Queueing)QBT_TR</label></legend>
|
||||||
<label for="queueing_checkbox">QBT_TR(Torrent Queueing)QBT_TR</label><br/>
|
|
||||||
<div class="formRow">
|
<div class="formRow">
|
||||||
<label for="max_active_dl_value" style="margin-left: 20px;" class="leftLabelLarge">QBT_TR(Maximum active downloads:)QBT_TR</label>
|
<label for="max_active_dl_value" style="margin-left: 20px;" class="leftLabelLarge">QBT_TR(Maximum active downloads:)QBT_TR</label>
|
||||||
<input type="text" id="max_active_dl_value" style="width: 4em;"/>
|
<input type="text" id="max_active_dl_value" style="width: 4em;"/>
|
||||||
@ -265,6 +273,18 @@
|
|||||||
<label for="dont_count_slow_torrents_checkbox">QBT_TR(Do not count slow torrents in these limits)QBT_TR</label>
|
<label for="dont_count_slow_torrents_checkbox">QBT_TR(Do not count slow torrents in these limits)QBT_TR</label>
|
||||||
</div>
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
|
<fieldset class="settings">
|
||||||
|
<legend>QBT_TR(Share Ratio Limiting)QBT_TR</legend>
|
||||||
|
<input type="checkbox" id="max_ratio_checkbox" onClick="updateMaxRatioEnabled();"/>
|
||||||
|
<label for="max_ratio_checkbox">QBT_TR(Seed torrents until their ratio reaches)QBT_TR</label>
|
||||||
|
<input type="text" id="max_ratio_value" style="width: 4em;"/>
|
||||||
|
QBT_TR(then)QBT_TR
|
||||||
|
<select id="max_ratio_act">
|
||||||
|
<option value="0">QBT_TR(Pause them)QBT_TR</option>
|
||||||
|
<option value="1">QBT_TR(Remove them)QBT_TR</option>
|
||||||
|
</select>
|
||||||
|
</fieldset>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="WebUITab" class="PrefTab invisible">
|
<div id="WebUITab" class="PrefTab invisible">
|
||||||
@ -373,21 +393,6 @@
|
|||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
var WatchedFoldersTable = new HtmlTable($("watched_folders_tab"));
|
var WatchedFoldersTable = new HtmlTable($("watched_folders_tab"));
|
||||||
|
|
||||||
toggleAnonymousMode = function() {
|
|
||||||
if($('anonymous_mode_checkbox').getProperty('checked')) {
|
|
||||||
$('dht_checkbox').setProperty('disabled', true);
|
|
||||||
$('dht_checkbox').setProperty('checked', false);
|
|
||||||
$('lsd_checkbox').setProperty('disabled', true);
|
|
||||||
$('lsd_checkbox').setProperty('checked', false);
|
|
||||||
$('upnp_checkbox').setProperty('disabled', true);
|
|
||||||
$('upnp_checkbox').setProperty('checked', false);
|
|
||||||
} else {
|
|
||||||
$('dht_checkbox').setProperty('disabled', false);
|
|
||||||
$('lsd_checkbox').setProperty('disabled', false);
|
|
||||||
$('upnp_checkbox').setProperty('disabled', false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
updateDlLimitEnabled = function() {
|
updateDlLimitEnabled = function() {
|
||||||
if($('dl_limit_checkbox').getProperty('checked')) {
|
if($('dl_limit_checkbox').getProperty('checked')) {
|
||||||
$('dl_limit_value').setProperty('disabled', false);
|
$('dl_limit_value').setProperty('disabled', false);
|
||||||
@ -488,15 +493,35 @@ updateExportDirEnabled = function() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
updateExportDirFinEnabled = function() {
|
||||||
|
if($('exportdirfin_checkbox').getProperty('checked')) {
|
||||||
|
$('exportdirfin_text').setProperty('disabled', false);
|
||||||
|
} else {
|
||||||
|
$('exportdirfin_text').setProperty('disabled', true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
updateQueueingSystem = function() {
|
updateQueueingSystem = function() {
|
||||||
if($('queueing_checkbox').getProperty('checked')) {
|
if($('queueing_checkbox').getProperty('checked')) {
|
||||||
$('max_active_dl_value').setProperty('disabled', false);
|
$('max_active_dl_value').setProperty('disabled', false);
|
||||||
$('max_active_up_value').setProperty('disabled', false);
|
$('max_active_up_value').setProperty('disabled', false);
|
||||||
$('max_active_to_value').setProperty('disabled', false);
|
$('max_active_to_value').setProperty('disabled', false);
|
||||||
|
$('dont_count_slow_torrents_checkbox').setProperty('disabled', false);
|
||||||
} else {
|
} else {
|
||||||
$('max_active_dl_value').setProperty('disabled', true);
|
$('max_active_dl_value').setProperty('disabled', true);
|
||||||
$('max_active_up_value').setProperty('disabled', true);
|
$('max_active_up_value').setProperty('disabled', true);
|
||||||
$('max_active_to_value').setProperty('disabled', true);
|
$('max_active_to_value').setProperty('disabled', true);
|
||||||
|
$('dont_count_slow_torrents_checkbox').setProperty('disabled', true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
updateMaxRatioEnabled = function() {
|
||||||
|
if($('max_ratio_checkbox').getProperty('checked')) {
|
||||||
|
$('max_ratio_value').setProperty('disabled', false);
|
||||||
|
$('max_ratio_act').setProperty('disabled', false);
|
||||||
|
} else {
|
||||||
|
$('max_ratio_value').setProperty('disabled', true);
|
||||||
|
$('max_ratio_act').setProperty('disabled', true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -537,8 +562,10 @@ updateAutoRun = function() {
|
|||||||
updateFilterSettings = function() {
|
updateFilterSettings = function() {
|
||||||
if($('ipfilter_enabled_checkbox').getProperty('checked')) {
|
if($('ipfilter_enabled_checkbox').getProperty('checked')) {
|
||||||
$('ipfilter_text').setProperty('disabled', false);
|
$('ipfilter_text').setProperty('disabled', false);
|
||||||
|
$('ipfilter_trackers_checkbox').setProperty('disabled', false);
|
||||||
} else {
|
} else {
|
||||||
$('ipfilter_text').setProperty('disabled', true);
|
$('ipfilter_text').setProperty('disabled', true);
|
||||||
|
$('ipfilter_trackers_checkbox').setProperty('disabled', true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -547,6 +574,7 @@ updatePeerProxySettings = function() {
|
|||||||
$('peer_proxy_host_text').setProperty('disabled', false);
|
$('peer_proxy_host_text').setProperty('disabled', false);
|
||||||
$('peer_proxy_port_value').setProperty('disabled', false);
|
$('peer_proxy_port_value').setProperty('disabled', false);
|
||||||
$('use_peer_proxy_checkbox').setProperty('disabled', false);
|
$('use_peer_proxy_checkbox').setProperty('disabled', false);
|
||||||
|
$('force_proxy_checkbox').setProperty('disabled', false);
|
||||||
if($('peer_proxy_type_select').getProperty('value') != "socks5") {
|
if($('peer_proxy_type_select').getProperty('value') != "socks5") {
|
||||||
$('peer_proxy_auth_checkbox').setProperty('checked', false);
|
$('peer_proxy_auth_checkbox').setProperty('checked', false);
|
||||||
$('peer_proxy_auth_checkbox').setProperty('disabled', true);
|
$('peer_proxy_auth_checkbox').setProperty('disabled', true);
|
||||||
@ -558,6 +586,7 @@ updatePeerProxySettings = function() {
|
|||||||
$('peer_proxy_host_text').setProperty('disabled', true);
|
$('peer_proxy_host_text').setProperty('disabled', true);
|
||||||
$('peer_proxy_port_value').setProperty('disabled', true);
|
$('peer_proxy_port_value').setProperty('disabled', true);
|
||||||
$('use_peer_proxy_checkbox').setProperty('disabled', true);
|
$('use_peer_proxy_checkbox').setProperty('disabled', true);
|
||||||
|
$('force_proxy_checkbox').setProperty('disabled', true);
|
||||||
$('peer_proxy_auth_checkbox').setProperty('disabled', true);
|
$('peer_proxy_auth_checkbox').setProperty('disabled', true);
|
||||||
$('peer_proxy_auth_checkbox').setProperty('checked', false);
|
$('peer_proxy_auth_checkbox').setProperty('checked', false);
|
||||||
updatePeerProxyAuthSettings();
|
updatePeerProxyAuthSettings();
|
||||||
@ -653,6 +682,7 @@ loadPreferences = function() {
|
|||||||
// Connection
|
// Connection
|
||||||
$('port_value').setProperty('value', pref.listen_port.toInt());
|
$('port_value').setProperty('value', pref.listen_port.toInt());
|
||||||
$('upnp_checkbox').setProperty('checked', pref.upnp);
|
$('upnp_checkbox').setProperty('checked', pref.upnp);
|
||||||
|
$('random_port_checkbox').setProperty('checked', pref.random_port);
|
||||||
|
|
||||||
var dl_limit = pref.dl_limit.toInt();
|
var dl_limit = pref.dl_limit.toInt();
|
||||||
if(dl_limit <= 0) {
|
if(dl_limit <= 0) {
|
||||||
@ -751,15 +781,18 @@ loadPreferences = function() {
|
|||||||
var mycb = "<input id='cb_watch_"+ i +"' type='checkbox' " + checked + ">";
|
var mycb = "<input id='cb_watch_"+ i +"' type='checkbox' " + checked + ">";
|
||||||
WatchedFoldersTable.push([myinput, mycb]);
|
WatchedFoldersTable.push([myinput, mycb]);
|
||||||
}
|
}
|
||||||
|
$('exportdir_checkbox').setProperty('checked', pref.export_dir_enabled);
|
||||||
if(pref.export_dir_enabled) {
|
if(pref.export_dir_enabled)
|
||||||
$('exportdir_text').setProperty('value', pref.export_dir);
|
$('exportdir_text').setProperty('value', pref.export_dir);
|
||||||
$('exportdir_checkbox').setProperty('checked', true);
|
else
|
||||||
} else {
|
|
||||||
$('exportdir_text').setProperty('value', '');
|
$('exportdir_text').setProperty('value', '');
|
||||||
$('exportdir_checkbox').setProperty('checked', false);
|
|
||||||
}
|
|
||||||
updateExportDirEnabled();
|
updateExportDirEnabled();
|
||||||
|
$('exportdirfin_checkbox').setProperty('checked', pref.export_dir_fin_enabled);
|
||||||
|
if(pref.export_dir_fin_enabled)
|
||||||
|
$('exportdirfin_text').setProperty('value', pref.export_dir_fin);
|
||||||
|
else
|
||||||
|
$('exportdirfin_text').setProperty('value', '');
|
||||||
|
updateExportDirFinEnabled();
|
||||||
$('mail_notification_checkbox').setProperty('checked', pref.mail_notification_enabled);
|
$('mail_notification_checkbox').setProperty('checked', pref.mail_notification_enabled);
|
||||||
$('dest_email_txt').setProperty('value', pref.mail_notification_email);
|
$('dest_email_txt').setProperty('value', pref.mail_notification_email);
|
||||||
$('smtp_server_txt').setProperty('value', pref.mail_notification_smtp);
|
$('smtp_server_txt').setProperty('value', pref.mail_notification_smtp);
|
||||||
@ -785,9 +818,18 @@ loadPreferences = function() {
|
|||||||
$('max_active_to_value').setProperty('value', pref.max_active_torrents.toInt());
|
$('max_active_to_value').setProperty('value', pref.max_active_torrents.toInt());
|
||||||
$('dont_count_slow_torrents_checkbox').setProperty('checked', pref.dont_count_slow_torrents);
|
$('dont_count_slow_torrents_checkbox').setProperty('checked', pref.dont_count_slow_torrents);
|
||||||
updateQueueingSystem();
|
updateQueueingSystem();
|
||||||
|
$('max_ratio_checkbox').setProperty('checked', pref.max_ratio_enabled);
|
||||||
|
if (pref.max_ratio_enabled)
|
||||||
|
$('max_ratio_value').setProperty('value', pref.max_ratio.toInt());
|
||||||
|
else
|
||||||
|
$('max_ratio_value').setProperty('value', 1);
|
||||||
|
var max_ratio_act = pref.max_ratio_act.toInt();
|
||||||
|
$('max_ratio_act').getChildren('option')[max_ratio_act].setAttribute('selected', '');
|
||||||
|
updateMaxRatioEnabled();
|
||||||
// IP Filter
|
// IP Filter
|
||||||
$('ipfilter_enabled_checkbox').setProperty('checked', pref.ip_filter_enabled);
|
$('ipfilter_enabled_checkbox').setProperty('checked', pref.ip_filter_enabled);
|
||||||
$('ipfilter_text').setProperty('value', pref.ip_filter_path);
|
$('ipfilter_text').setProperty('value', pref.ip_filter_path);
|
||||||
|
$('ipfilter_trackers_checkbox').setProperty('checked', pref.ip_filter_trackers);
|
||||||
updateFilterSettings();
|
updateFilterSettings();
|
||||||
// PEER Proxy
|
// PEER Proxy
|
||||||
switch(pref.proxy_type.toInt()) {
|
switch(pref.proxy_type.toInt()) {
|
||||||
@ -809,6 +851,7 @@ loadPreferences = function() {
|
|||||||
$('peer_proxy_host_text').setProperty('value', pref.proxy_ip);
|
$('peer_proxy_host_text').setProperty('value', pref.proxy_ip);
|
||||||
$('peer_proxy_port_value').setProperty('value', pref.proxy_port);
|
$('peer_proxy_port_value').setProperty('value', pref.proxy_port);
|
||||||
$('use_peer_proxy_checkbox').setProperty('checked', pref.proxy_peer_connections);
|
$('use_peer_proxy_checkbox').setProperty('checked', pref.proxy_peer_connections);
|
||||||
|
$('force_proxy_checkbox').setProperty('checked', pref.force_proxy);
|
||||||
$('peer_proxy_auth_checkbox').setProperty('checked', pref.proxy_auth_enabled);
|
$('peer_proxy_auth_checkbox').setProperty('checked', pref.proxy_auth_enabled);
|
||||||
updatePeerProxyAuthSettings();
|
updatePeerProxyAuthSettings();
|
||||||
$('peer_proxy_username_text').setProperty('value', pref.proxy_username);
|
$('peer_proxy_username_text').setProperty('value', pref.proxy_username);
|
||||||
@ -845,8 +888,8 @@ applyPreferences = function() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
settings.set('listen_port', listen_port);
|
settings.set('listen_port', listen_port);
|
||||||
|
|
||||||
settings.set('upnp', $('upnp_checkbox').getProperty('checked'));
|
settings.set('upnp', $('upnp_checkbox').getProperty('checked'));
|
||||||
|
settings.set('random_port', $('random_port_checkbox').getProperty('checked'));
|
||||||
|
|
||||||
var dl_limit = -1;
|
var dl_limit = -1;
|
||||||
if($('dl_limit_checkbox').getProperty('checked')) {
|
if($('dl_limit_checkbox').getProperty('checked')) {
|
||||||
@ -962,6 +1005,11 @@ applyPreferences = function() {
|
|||||||
settings.set('export_dir', $('exportdir_text').getProperty('value'));
|
settings.set('export_dir', $('exportdir_text').getProperty('value'));
|
||||||
else
|
else
|
||||||
settings.set('export_dir', '');
|
settings.set('export_dir', '');
|
||||||
|
if($('exportdirfin_checkbox').getProperty('checked'))
|
||||||
|
settings.set('export_dir_fin', $('exportdirfin_text').getProperty('value'));
|
||||||
|
else
|
||||||
|
settings.set('export_dir_fin', '');
|
||||||
|
|
||||||
settings.set('preallocate_all', $('preallocateall_checkbox').getProperty('checked'));
|
settings.set('preallocate_all', $('preallocateall_checkbox').getProperty('checked'));
|
||||||
if(!$('appendexttr').hasClass('invisible')) {
|
if(!$('appendexttr').hasClass('invisible')) {
|
||||||
settings.set('incomplete_files_ext', $('appendext_checkbox').getProperty('checked'));
|
settings.set('incomplete_files_ext', $('appendext_checkbox').getProperty('checked'));
|
||||||
@ -972,6 +1020,18 @@ applyPreferences = function() {
|
|||||||
settings.set('max_active_torrents', $('max_active_to_value').getProperty('value').toInt());
|
settings.set('max_active_torrents', $('max_active_to_value').getProperty('value').toInt());
|
||||||
settings.set('dont_count_slow_torrents', $('dont_count_slow_torrents_checkbox').getProperty('checked'));
|
settings.set('dont_count_slow_torrents', $('dont_count_slow_torrents_checkbox').getProperty('checked'));
|
||||||
|
|
||||||
|
var max_ratio = -1;
|
||||||
|
if($('max_ratio_checkbox').getProperty('checked')) {
|
||||||
|
max_ratio = $('max_ratio_value').getProperty('value').toInt();
|
||||||
|
if(max_ratio < 0 || max_ratio > 9998) {
|
||||||
|
alert("QBT_TR(Share ratio limit must be between 0 and 9998.)QBT_TR");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
settings.set('max_ratio_enabled', $('max_ratio_checkbox').getProperty('checked'));
|
||||||
|
settings.set('max_ratio', max_ratio);
|
||||||
|
settings.set('max_ratio_act', $('max_ratio_act').getProperty('value').toInt());
|
||||||
|
|
||||||
settings.set('mail_notification_enabled', $('mail_notification_checkbox').getProperty('checked'));
|
settings.set('mail_notification_enabled', $('mail_notification_checkbox').getProperty('checked'));
|
||||||
settings.set('mail_notification_email', $('dest_email_txt').getProperty('value'));
|
settings.set('mail_notification_email', $('dest_email_txt').getProperty('value'));
|
||||||
settings.set('mail_notification_smtp', $('smtp_server_txt').getProperty('value'));
|
settings.set('mail_notification_smtp', $('smtp_server_txt').getProperty('value'));
|
||||||
@ -986,6 +1046,7 @@ applyPreferences = function() {
|
|||||||
// IP Filter
|
// IP Filter
|
||||||
settings.set('ip_filter_enabled', $('ipfilter_enabled_checkbox').getProperty('checked'));
|
settings.set('ip_filter_enabled', $('ipfilter_enabled_checkbox').getProperty('checked'));
|
||||||
settings.set('ip_filter_path', $('ipfilter_text').getProperty('value'));
|
settings.set('ip_filter_path', $('ipfilter_text').getProperty('value'));
|
||||||
|
settings.set('ip_filter_trackers', $('ipfilter_trackers_checkbox').getProperty('checked'));
|
||||||
|
|
||||||
// Peer Proxy
|
// Peer Proxy
|
||||||
var proxy_type_str = $('peer_proxy_type_select').getProperty('value');
|
var proxy_type_str = $('peer_proxy_type_select').getProperty('value');
|
||||||
@ -1017,6 +1078,7 @@ applyPreferences = function() {
|
|||||||
settings.set('proxy_ip', $('peer_proxy_host_text').getProperty('value'));
|
settings.set('proxy_ip', $('peer_proxy_host_text').getProperty('value'));
|
||||||
settings.set('proxy_port', $('peer_proxy_port_value').getProperty('value').toInt());
|
settings.set('proxy_port', $('peer_proxy_port_value').getProperty('value').toInt());
|
||||||
settings.set('proxy_peer_connections', $('use_peer_proxy_checkbox').getProperty('checked'));
|
settings.set('proxy_peer_connections', $('use_peer_proxy_checkbox').getProperty('checked'));
|
||||||
|
settings.set('force_proxy', $('force_proxy_checkbox').getProperty('checked'));
|
||||||
settings.set('proxy_username', $('peer_proxy_username_text').getProperty('value'));
|
settings.set('proxy_username', $('peer_proxy_username_text').getProperty('value'));
|
||||||
settings.set('proxy_password', $('peer_proxy_password_text').getProperty('value'));
|
settings.set('proxy_password', $('peer_proxy_password_text').getProperty('value'));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user