mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 22:18:05 -06:00
Tagged v2.5.5 release
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
* Thu Jan 6 2011 - Christophe Dumez <chris@qbittorrent.org> - v2.5.4
|
* Thu Jan 6 2011 - Christophe Dumez <chris@qbittorrent.org> - v2.5.5
|
||||||
- BUGFIX: Added --enable-debug parameter to the configure script
|
- BUGFIX: Added --enable-debug parameter to the configure script
|
||||||
- BUGFIX: Prioritize first and last pieces when sequential download is enabled
|
- BUGFIX: Prioritize first and last pieces when sequential download is enabled
|
||||||
- BUGFIX: Some encoding fixes (Windows)
|
- BUGFIX: Some encoding fixes (Windows)
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Categories=Qt;Network;P2P;
|
Categories=Qt;Network;P2P;
|
||||||
Comment=V2.5.4
|
Comment=V2.5.5
|
||||||
Exec=qbittorrent %f
|
Exec=qbittorrent %f
|
||||||
GenericName=Bittorrent client
|
GenericName=Bittorrent client
|
||||||
GenericName[ar]=العميل Bittorrent
|
GenericName[ar]=العميل Bittorrent
|
||||||
|
|||||||
@@ -47,7 +47,7 @@
|
|||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>APPL</string>
|
<string>APPL</string>
|
||||||
<key>CFBundleGetInfoString</key>
|
<key>CFBundleGetInfoString</key>
|
||||||
<string>2.5.4</string>
|
<string>2.5.5</string>
|
||||||
<key>CFBundleSignature</key>
|
<key>CFBundleSignature</key>
|
||||||
<string>????</string>
|
<string>????</string>
|
||||||
<key>CFBundleExecutable</key>
|
<key>CFBundleExecutable</key>
|
||||||
|
|||||||
@@ -135,7 +135,7 @@ void TorrentCreatorThread::run() {
|
|||||||
emit updateProgress(100);
|
emit updateProgress(100);
|
||||||
emit creationSuccess(save_path, parent_path);
|
emit creationSuccess(save_path, parent_path);
|
||||||
} else {
|
} else {
|
||||||
throw std::exception(tr("Cannot write the output file").toLocal8Bit().constData());
|
throw std::exception();
|
||||||
}
|
}
|
||||||
} catch (std::exception& e){
|
} catch (std::exception& e){
|
||||||
emit creationFailure(QString::fromLocal8Bit(e.what()));
|
emit creationFailure(QString::fromLocal8Bit(e.what()));
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# Generated by the configure file
|
# Generated by the configure file
|
||||||
include(../conf.pri)
|
include(conf.pri)
|
||||||
|
|
||||||
# COMPILATION SPECIFIC
|
# COMPILATION SPECIFIC
|
||||||
QT += dbus
|
QT += dbus
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
os2 {
|
os2 {
|
||||||
DEFINES += VERSION=\'\"v2.5.4\"\'
|
DEFINES += VERSION=\'\"v2.5.5\"\'
|
||||||
} else {
|
} else {
|
||||||
DEFINES += VERSION=\\\"v2.5.4\\\"
|
DEFINES += VERSION=\\\"v2.5.5\\\"
|
||||||
}
|
}
|
||||||
DEFINES += VERSION_MAJOR=2
|
DEFINES += VERSION_MAJOR=2
|
||||||
DEFINES += VERSION_MINOR=5
|
DEFINES += VERSION_MINOR=5
|
||||||
DEFINES += VERSION_BUGFIX=4
|
DEFINES += VERSION_BUGFIX=5
|
||||||
|
|
||||||
# NORMAL,ALPHA,BETA,RELEASE_CANDIDATE,DEVEL
|
# NORMAL,ALPHA,BETA,RELEASE_CANDIDATE,DEVEL
|
||||||
DEFINES += VERSION_TYPE=NORMAL
|
DEFINES += VERSION_TYPE=NORMAL
|
||||||
|
|||||||
Reference in New Issue
Block a user