mirror of
https://github.com/transmission/transmission
synced 2025-03-19 18:25:38 +00:00
* Bump minimum Qt version to 5.6 * Switch from QRegExp to QRegularExpression While still available, QRegExp has been moved to Qt6::Core5Compat module and is not part of Qt6::Core. * Use qIsEffectiveTLD instead of QUrl::topLevelDomain The latter is not part of Qt6::Core. The former is a private utility in Qt6::Network; using it for now, until (and if) we switch to something non-Qt-specific. * Use QStyle::State_Horizontal state when drawing progress bars Although available for a long time, this state either didn't apply to progress bars before Qt 6, or was deduced based on bar size. With Qt 6, failing to specify it results in bad rendering. * Don't use QStringRef (and associated methods) While still available, QStringRef has been moved to Qt6::Core5Compat module and is not part of Qt6::Core. Related method (e.g. QString::midRef) have been removed in Qt 6. * Use Qt::ItemIsAutoTristate instead of Qt::ItemIsTristate The latter was deprecated and replaced with the former in Qt 5.6. * Don't use QApplication::globalStrut This property has been deprecated in Qt 5.15 and removed in Qt 6. * Use QImage::fromHICON instead of QtWin::fromHICON WinExtras module (providind the latter helper) has been removed in Qt 6. * Use QStringDecoder instead of QTextCodec While still available, QTextCodec has been moved to Qt6::Core5Compat module and is not part of Qt6::Core. * Don't forward-declare QStringList Instead of being a standalone class, its definition has changed to QList<QString> template specialization in Qt 6. * Use explicit (since Qt 6) QFileInfo constructor * Use QDateTime's {to,from}SecsSinceEpoch instead of {to,from}Time_t The latter was deprecated in Qt 5.8 and removed in Qt 6. * Don't use QFuture<>'s operator== It has been removed in Qt 6. Since the original issue this code was solving was caused by future reuse, just don't reuse futures and create new finished ones when necessary. * Use std::vector<> instead of QVector<> The latter has been changed to a typedef for QList<>, which might not be what one wants, and which also changed behavior a bit leading to compilation errors. * Don't use + for flags, cast to int explicitly Operator+ for enum values has been deleted in Qt 6, so using operator| instead. Then, there's no conversion from QFlags<> to QVariant, so need to cast to int. * Support Qt 6 in CMake and for MSI packaging * Remove extra (empty) CMake variable use when constructing Qt target names * Simplify logic in tr_qt_add_translation CMake helper Co-authored-by: Charles Kerr <charles@charleskerr.com> |
||
---|---|---|
.. | ||
icons | ||
translations | ||
.clang-tidy | ||
AboutDialog.cc | ||
AboutDialog.h | ||
AboutDialog.ui | ||
AddData.cc | ||
AddData.h | ||
Application.cc | ||
Application.h | ||
application.qrc | ||
BaseDialog.h | ||
CMakeLists.txt | ||
ColumnResizer.cc | ||
ColumnResizer.h | ||
ComInteropHelper.cc | ||
ComInteropHelper.h | ||
CustomVariantType.h | ||
DBusInteropHelper.cc | ||
DBusInteropHelper.h | ||
DetailsDialog.cc | ||
DetailsDialog.h | ||
DetailsDialog.ui | ||
FaviconCache.cc | ||
FaviconCache.h | ||
FileTreeDelegate.cc | ||
FileTreeDelegate.h | ||
FileTreeItem.cc | ||
FileTreeItem.h | ||
FileTreeModel.cc | ||
FileTreeModel.h | ||
FileTreeView.cc | ||
FileTreeView.h | ||
FilterBar.cc | ||
FilterBar.h | ||
FilterBarComboBox.cc | ||
FilterBarComboBox.h | ||
FilterBarComboBoxDelegate.cc | ||
FilterBarComboBoxDelegate.h | ||
Filters.cc | ||
Filters.h | ||
Formatter.cc | ||
Formatter.h | ||
FreeSpaceLabel.cc | ||
FreeSpaceLabel.h | ||
IconCache.cc | ||
IconCache.h | ||
IconToolButton.cc | ||
IconToolButton.h | ||
InteropHelper.cc | ||
InteropHelper.h | ||
InteropObject.cc | ||
InteropObject.h | ||
LicenseDialog.cc | ||
LicenseDialog.h | ||
LicenseDialog.ui | ||
Macros.h | ||
MainWindow.cc | ||
MainWindow.h | ||
MainWindow.ui | ||
MakeDialog.cc | ||
MakeDialog.h | ||
MakeDialog.ui | ||
MakeProgressDialog.ui | ||
my-valgrind.sh | ||
OptionsDialog.cc | ||
OptionsDialog.h | ||
OptionsDialog.ui | ||
PathButton.cc | ||
PathButton.h | ||
Prefs.cc | ||
Prefs.h | ||
PrefsDialog.cc | ||
PrefsDialog.h | ||
PrefsDialog.ui | ||
qtr.ico | ||
qtr.rc | ||
README.txt | ||
RelocateDialog.cc | ||
RelocateDialog.h | ||
RelocateDialog.ui | ||
RpcClient.cc | ||
RpcClient.h | ||
RpcQueue.cc | ||
RpcQueue.h | ||
Session.cc | ||
Session.h | ||
SessionDialog.cc | ||
SessionDialog.h | ||
SessionDialog.ui | ||
Speed.h | ||
SqueezeLabel.cc | ||
SqueezeLabel.h | ||
StatsDialog.cc | ||
StatsDialog.h | ||
StatsDialog.ui | ||
StyleHelper.cc | ||
StyleHelper.h | ||
Torrent.cc | ||
Torrent.h | ||
TorrentDelegate.cc | ||
TorrentDelegate.h | ||
TorrentDelegateMin.cc | ||
TorrentDelegateMin.h | ||
TorrentFilter.cc | ||
TorrentFilter.h | ||
TorrentModel.cc | ||
TorrentModel.h | ||
TorrentView.cc | ||
TorrentView.h | ||
TrackerDelegate.cc | ||
TrackerDelegate.h | ||
TrackerModel.cc | ||
TrackerModel.h | ||
TrackerModelFilter.cc | ||
TrackerModelFilter.h | ||
transmission-qt.1 | ||
transmission-qt.desktop | ||
transmission-qt.idl | ||
transmission-qt.tlb.rc | ||
transmission_en.qm | ||
Typedefs.h | ||
Utils.cc | ||
Utils.h | ||
VariantHelpers.cc | ||
VariantHelpers.h | ||
WatchDir.cc | ||
WatchDir.h |
VOLUNTEERS WANTED - Qt developers and translators are needed - If you find a bug, please report it at https://github.com/transmission/transmission ABOUT TRANSMISSION-QT Transmission-qt is a GUI for Transmission loosely based on the GTK+ client. This is the only Transmission client that can act as its own self-contained session (as the GTK+ and Mac clients do), and can also connect to a remote session (as the web client and transmission-remote terminal client do). Use Case 1: If you like to run BitTorrent for awhile from your desktop, then the Mac, GTK+, and Qt clients are a good match. Use Case 2: If you like to leave BitTorrent running nonstop on your computer or router, and want to control it from your desktop or from a remote site, then transmission-remote and the web and Qt clients are a good match. To use the Qt client as a remote, in the menu go to Edit > Change Session The Qt client is also the most likely to wind up running on Windows, though that's not a high priority at the moment... BUILDING ON WINDOWS rb07 has a writeup of this on the Transmission wiki: https://trac.transmissionbt.com/wiki/BuildingTransmissionQtWindows BUILDING ON OS X nnc has a writeup of this on the Transmission wiki: https://trac.transmissionbt.com/wiki/BuildingTransmissionQtMac BUILDING ON UNIX 1. Prerequisites: Qt >= 4.8 and its development packages 2. Build Transmission as normal 3. In the qt/ directory, type "qmake qtr.pro" (or "qmake-qt4 qtr.pro", or "qmake-qt5 qtr.pro") 4. In the qt/ directory, type "make" 5. In the qt/ directory, as root, type "INSTALL_ROOT=/usr make install" (Feel free to replace /usr with /usr/local or /opt or whatever)