You've already forked qBittorrent
mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-10-14 11:52:15 +02:00
Compare commits
46 Commits
release-3.
...
release-3.
Author | SHA1 | Date | |
---|---|---|---|
![]() |
944fc5cf38 | ||
![]() |
026c065ebc | ||
![]() |
00ac784a4d | ||
![]() |
7d99223547 | ||
![]() |
65a338b5c2 | ||
![]() |
b0fd6ac756 | ||
![]() |
c268ca1278 | ||
![]() |
13e3141dfb | ||
![]() |
70fbd61758 | ||
![]() |
db638319c7 | ||
![]() |
8d36a03f68 | ||
![]() |
2b8dc3df18 | ||
![]() |
11c5172588 | ||
![]() |
43f55f5d3c | ||
![]() |
153ebe2b77 | ||
![]() |
70d11217de | ||
![]() |
82beff5527 | ||
![]() |
2e4f0876b0 | ||
![]() |
072a72316f | ||
![]() |
d199482205 | ||
![]() |
eae7953061 | ||
![]() |
d88d4e9165 | ||
![]() |
cea36bc756 | ||
![]() |
c517444258 | ||
![]() |
a109274d1f | ||
![]() |
490cb9dfdb | ||
![]() |
ab748166d5 | ||
![]() |
a796df9019 | ||
![]() |
85abc98759 | ||
![]() |
041540de6b | ||
![]() |
72a06ad176 | ||
![]() |
eea69630fb | ||
![]() |
19846758d8 | ||
![]() |
7532fcfd3c | ||
![]() |
616575911f | ||
![]() |
227a1f6532 | ||
![]() |
2c7186a381 | ||
![]() |
b4775b9d29 | ||
![]() |
ad8d7e3373 | ||
![]() |
b5e7443ae3 | ||
![]() |
5a33c0d9ba | ||
![]() |
7064ac994b | ||
![]() |
3c05e660b3 | ||
![]() |
ed54c5f7ac | ||
![]() |
63d6dd3735 | ||
![]() |
02d56fd026 |
13
Changelog
13
Changelog
@@ -1,3 +1,16 @@
|
||||
* Sat Jan 19 2013 - Christophe Dumez <chris@qbittorrent.org> - v3.0.7
|
||||
- BUGFIX: Update max write cache size to 2048MB and set it to automatic by default (closes #148)
|
||||
- BUGFIX: Add m4v to the list of previewable file extensions (closes #216)
|
||||
- BUGFIX: Fix "Couldn't set environment variable..." message on start up (closes #245)
|
||||
- BUGFIX: Use right path separator in torrent addition dialog on Windows
|
||||
- BUGFIX: Fix "Set as default save path" setting (closes #254)
|
||||
- BUGFIX: Reenable disk cache on Windows since the memory issue seems to be gone
|
||||
- BUGFIX: Fixed several search engine plugins and removed the dead ones
|
||||
- BUGFIX: Use https links in search plugins when possible
|
||||
- BUGFIX: Bump Mootools to v1.4.5 (Web UI)
|
||||
- BUGFIX: Require password to exit qBittorrent from tray icon when locked (closes #311)
|
||||
- BUGFIX: Fix possible crash in loadPeers() (closes #222)
|
||||
|
||||
* Sun Oct 7 2012 - Christophe Dumez <chris@qbittorrent.org> - v3.0.6
|
||||
- BUGFIX: Fix unicode support for command-line arguments on Windows (closes #139)
|
||||
- BUGFIX: Do not store created torrent in memory before writing it to a file (closes #133)
|
||||
|
@@ -65,7 +65,7 @@ AddNewTorrentDialog::AddNewTorrentDialog(QWidget *parent) :
|
||||
QIniSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent"));
|
||||
Preferences pref;
|
||||
ui->start_torrent_cb->setChecked(!pref.addTorrentsInPause());
|
||||
ui->save_path_combo->addItem(fsutils::toDisplayPath(pref.getSavePath()));
|
||||
ui->save_path_combo->addItem(fsutils::toDisplayPath(pref.getSavePath()), pref.getSavePath());
|
||||
loadSavePathHistory();
|
||||
ui->save_path_combo->insertSeparator(ui->save_path_combo->count());
|
||||
ui->save_path_combo->addItem(tr("Other...", "Other save path..."));
|
||||
@@ -225,7 +225,7 @@ bool AddNewTorrentDialog::loadTorrent(const QString& torrent_path, const QString
|
||||
QString single_file_relpath = misc::toQStringU(m_torrentInfo->file_at(0).path.string());
|
||||
#endif
|
||||
for (int i=0; i<ui->save_path_combo->count()-1; ++i) {
|
||||
ui->save_path_combo->setItemText(i, QDir(ui->save_path_combo->itemText(i)).absoluteFilePath(single_file_relpath));
|
||||
ui->save_path_combo->setItemText(i, fsutils::toDisplayPath(QDir(ui->save_path_combo->itemText(i)).absoluteFilePath(single_file_relpath)));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -594,6 +594,8 @@ void AddNewTorrentDialog::on_buttonBox_accepted()
|
||||
saveSavePathHistory();
|
||||
// Save settings
|
||||
pref.useAdditionDialog(!ui->never_show_cb->isChecked());
|
||||
if (ui->default_save_path_cb->isChecked())
|
||||
if (ui->default_save_path_cb->isChecked()) {
|
||||
pref.setSavePath(ui->save_path_combo->itemData(ui->save_path_combo->currentIndex()).toString());
|
||||
QBtSession::instance()->setDefaultSavePath(pref.getSavePath());
|
||||
}
|
||||
}
|
||||
|
@@ -73,12 +73,7 @@ using namespace libtorrent;
|
||||
*/
|
||||
QString fsutils::toDisplayPath(const QString& path)
|
||||
{
|
||||
#if defined(Q_WS_WIN) || defined(Q_OS_OS2)
|
||||
QString ret = path;
|
||||
return ret.replace("/", "\\");
|
||||
#else
|
||||
return path;
|
||||
#endif
|
||||
return QDir::toNativeSeparators(path);
|
||||
}
|
||||
|
||||
/**
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -431,6 +431,10 @@ p, li { white-space: pre-wrap; }
|
||||
<source>Always announce to all trackers</source>
|
||||
<translation>Uvijek obavijesti sve trackere</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source> (auto)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AutomatedRssDownloader</name>
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -389,6 +389,10 @@ p, li { white-space: pre-wrap; }
|
||||
<source>Always announce to all trackers</source>
|
||||
<translation>Kondig altijd aan naar alle trackers</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source> (auto)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AutomatedRssDownloader</name>
|
||||
|
@@ -390,6 +390,10 @@ p, li { white-space: pre-wrap; }
|
||||
<source>Always announce to all trackers</source>
|
||||
<translation>Zawsze ogłaszaj do wszystkich trackerów</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source> (auto)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AutomatedRssDownloader</name>
|
||||
|
@@ -377,6 +377,10 @@ p, li { white-space: pre-wrap; }
|
||||
<source>Always announce to all trackers</source>
|
||||
<translation>Sempre anunciar para todos os trackers</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source> (auto)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AutomatedRssDownloader</name>
|
||||
|
@@ -377,6 +377,10 @@ p, li { white-space: pre-wrap; }
|
||||
<source>Always announce to all trackers</source>
|
||||
<translation>Sempre anunciar para todos os trackers</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source> (auto)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AutomatedRssDownloader</name>
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user