mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-22 12:34:19 +00:00
FEATURE: Remember previous save paths in torrent addition dialog (closes #579305)
This commit is contained in:
parent
67f41ad991
commit
ca762139f6
@ -1,5 +1,6 @@
|
|||||||
* Unreleased - Christophe Dumez <chris@qbittorrent.org> - v2.3.0
|
* Unreleased - Christophe Dumez <chris@qbittorrent.org> - v2.3.0
|
||||||
- FEATURE: Simplified torrent root folder renaming/truncating (< v2.3.0 is no longer forward compatible)
|
- FEATURE: Simplified torrent root folder renaming/truncating (< v2.3.0 is no longer forward compatible)
|
||||||
|
- FEATURE: Remember previous save paths in torrent addition dialog
|
||||||
- FEATURE: Max number of half-open connections can now be edited
|
- FEATURE: Max number of half-open connections can now be edited
|
||||||
- FEATURE: Added support for strict super seeding
|
- FEATURE: Added support for strict super seeding
|
||||||
- FEATURE: The user can force listening on a particular network interface
|
- FEATURE: The user can force listening on a particular network interface
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -68,6 +68,7 @@ public:
|
|||||||
void saveSettings();
|
void saveSettings();
|
||||||
void showLoadMagnetURI(QString magnet_uri);
|
void showLoadMagnetURI(QString magnet_uri);
|
||||||
void showLoad(QString filePath, QString from_url=QString::null);
|
void showLoad(QString filePath, QString from_url=QString::null);
|
||||||
|
QString getCurrentTruncatedSavePath() const;
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void displayContentListMenu(const QPoint&);
|
void displayContentListMenu(const QPoint&);
|
||||||
@ -80,6 +81,8 @@ public slots:
|
|||||||
void on_OkButton_clicked();
|
void on_OkButton_clicked();
|
||||||
void renameTorrentNameInModel(QString file_path);
|
void renameTorrentNameInModel(QString file_path);
|
||||||
void hideTorrentContent();
|
void hideTorrentContent();
|
||||||
|
void saveTruncatedPathHistory();
|
||||||
|
QStringList getSavePathHistory() const;
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void updateLabelInSavePath(QString label);
|
void updateLabelInSavePath(QString label);
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>585</width>
|
<width>560</width>
|
||||||
<height>517</height>
|
<height>517</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
@ -29,20 +29,14 @@
|
|||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<layout class="QHBoxLayout">
|
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||||||
<property name="spacing">
|
|
||||||
<number>6</number>
|
|
||||||
</property>
|
|
||||||
<property name="margin">
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="savePathLbl">
|
<widget class="QLabel" name="savePathLbl">
|
||||||
<property name="font">
|
<property name="sizePolicy">
|
||||||
<font>
|
<sizepolicy hsizetype="Minimum" vsizetype="Preferred">
|
||||||
<weight>50</weight>
|
<horstretch>0</horstretch>
|
||||||
<bold>false</bold>
|
<verstretch>0</verstretch>
|
||||||
</font>
|
</sizepolicy>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Save path:</string>
|
<string>Save path:</string>
|
||||||
@ -50,7 +44,17 @@
|
|||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLineEdit" name="savePathTxt"/>
|
<widget class="QComboBox" name="savePathTxt">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="editable">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QToolButton" name="browseButton">
|
<widget class="QToolButton" name="browseButton">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user