mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-22 00:17:23 -06:00
Compare commits
4 Commits
release-3.
...
release-3.
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ab83c2fff5 | ||
|
|
106f5d7cc0 | ||
|
|
11943f6b88 | ||
|
|
665e0967a5 |
@@ -1,3 +1,6 @@
|
|||||||
|
* Sun Feb 02 2014 - sledgehammer999 <sledgehammer999@qbittorrent.org> - v3.1.8
|
||||||
|
- BUGFIX: Really fix build of v3.1.6
|
||||||
|
|
||||||
* Sun Feb 02 2014 - sledgehammer999 <sledgehammer999@qbittorrent.org> - v3.1.7
|
* Sun Feb 02 2014 - sledgehammer999 <sledgehammer999@qbittorrent.org> - v3.1.7
|
||||||
- BUGFIX: Fix build of v3.1.6
|
- BUGFIX: Fix build of v3.1.6
|
||||||
|
|
||||||
|
|||||||
@@ -45,7 +45,7 @@
|
|||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>APPL</string>
|
<string>APPL</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>3.1.7</string>
|
<string>3.1.8</string>
|
||||||
<key>CFBundleSignature</key>
|
<key>CFBundleSignature</key>
|
||||||
<string>qBit</string>
|
<string>qBit</string>
|
||||||
<key>CFBundleExecutable</key>
|
<key>CFBundleExecutable</key>
|
||||||
|
|||||||
@@ -426,9 +426,11 @@ void TrackerList::showTrackerListMenu(QPoint) {
|
|||||||
copyAct = menu.addAction(IconProvider::instance()->getIcon("edit-copy"), tr("Copy tracker url"));
|
copyAct = menu.addAction(IconProvider::instance()->getIcon("edit-copy"), tr("Copy tracker url"));
|
||||||
editAct = menu.addAction(IconProvider::instance()->getIcon("edit-rename"),tr("Edit selected tracker URL"));
|
editAct = menu.addAction(IconProvider::instance()->getIcon("edit-rename"),tr("Edit selected tracker URL"));
|
||||||
}
|
}
|
||||||
if (!h.is_paused())
|
QAction *reannounceAct = NULL;
|
||||||
|
if (!h.is_paused()) {
|
||||||
menu.addSeparator();
|
menu.addSeparator();
|
||||||
|
reannounceAct = menu.addAction(IconProvider::instance()->getIcon("view-refresh"), tr("Force reannounce to all trackers"));
|
||||||
|
}
|
||||||
QAction *act = menu.exec(QCursor::pos());
|
QAction *act = menu.exec(QCursor::pos());
|
||||||
if (act == 0) return;
|
if (act == 0) return;
|
||||||
if (act == addAct) {
|
if (act == addAct) {
|
||||||
@@ -443,6 +445,10 @@ void TrackerList::showTrackerListMenu(QPoint) {
|
|||||||
deleteSelectedTrackers();
|
deleteSelectedTrackers();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (act == reannounceAct) {
|
||||||
|
properties->getCurrentTorrent().force_reannounce();
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (act == editAct) {
|
if (act == editAct) {
|
||||||
editSelectedTracker();
|
editSelectedTracker();
|
||||||
return;
|
return;
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ XPStyle on
|
|||||||
!define CSIDL_APPDATA '0x1A' ;Application Data path
|
!define CSIDL_APPDATA '0x1A' ;Application Data path
|
||||||
!define CSIDL_LOCALAPPDATA '0x1C' ;Local Application Data path
|
!define CSIDL_LOCALAPPDATA '0x1C' ;Local Application Data path
|
||||||
|
|
||||||
!define PROG_VERSION "3.1.7"
|
!define PROG_VERSION "3.1.8"
|
||||||
!define MUI_FINISHPAGE_RUN "$INSTDIR\qbittorrent.exe"
|
!define MUI_FINISHPAGE_RUN "$INSTDIR\qbittorrent.exe"
|
||||||
!define MUI_FINISHPAGE_RUN_TEXT $(launch_qbt)
|
!define MUI_FINISHPAGE_RUN_TEXT $(launch_qbt)
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
PROJECT_NAME = qbittorrent
|
PROJECT_NAME = qbittorrent
|
||||||
PROJECT_VERSION = 3.1.7
|
PROJECT_VERSION = 3.1.8
|
||||||
|
|
||||||
os2 {
|
os2 {
|
||||||
DEFINES += VERSION=\'\"v$${PROJECT_VERSION}\"\'
|
DEFINES += VERSION=\'\"v$${PROJECT_VERSION}\"\'
|
||||||
@@ -9,4 +9,4 @@ os2 {
|
|||||||
|
|
||||||
DEFINES += VERSION_MAJOR=3
|
DEFINES += VERSION_MAJOR=3
|
||||||
DEFINES += VERSION_MINOR=1
|
DEFINES += VERSION_MINOR=1
|
||||||
DEFINES += VERSION_BUGFIX=7
|
DEFINES += VERSION_BUGFIX=8
|
||||||
|
|||||||
Reference in New Issue
Block a user