Official Transmission BitTorrent client repository https://transmissionbt.com
Find a file
Yat Ho f495047a33
ci(qt): run clang-tidy on Linux (#8557)
* ci(qt): run clang-tidy

* chore(qt): silence warnings
2026-02-19 09:30:05 -06:00
.github ci(qt): run clang-tidy on Linux (#8557) 2026-02-19 09:30:05 -06:00
.tx feat: Data-based QuickLook extension for macOS 12+ (#7213) 2025-10-31 11:30:55 -05:00
android ci: bump actions and deps (#8141) 2026-01-15 14:15:47 -06:00
cli refactor: string-utils, file-utils, env (#8417) 2026-02-11 11:21:45 -06:00
cmake build: fix external project builds with LTO-enabled toolchains (#8369) 2026-02-04 22:45:06 -06:00
daemon refactor: string-utils, file-utils, env (#8417) 2026-02-11 11:21:45 -06:00
dist/msi GHA CI: Add support for Windows arm64 (#7758) 2025-12-31 06:25:27 +00:00
docs docs(rpc): formally define torrent ID and transfer stats as integers (#8455) 2026-02-13 21:04:05 -06:00
extras fix: some typos (#3904) 2022-10-13 09:35:10 -05:00
gtk fix: FTBFS with glibmm 2.68 (#8565) 2026-02-18 18:46:54 -06:00
icons fix: Qt build missing an icon (#6683) 2024-07-18 02:12:18 +01:00
libtransmission refactor: safeguard against nullptr tr_torrent* args in tr_torrentFoo() methods (#8550) 2026-02-17 17:58:34 -06:00
libtransmission-app ci(gtk): run clang-tidy (#8251) 2026-02-17 17:53:01 -06:00
licenses refactor: aggregate arc4 into libtransmission (#3684) 2022-08-20 13:41:40 -05:00
macosx fix: crash when removing a torrent that the inspector is showing (#8496) (#8553) 2026-02-17 22:23:12 -06:00
news docs: add release notes for 4.1.0-beta.5 (#8065) 2026-01-05 16:07:38 -06:00
po chore: sync translations (#8059) 2026-01-04 11:45:46 -06:00
qt ci(qt): run clang-tidy on Linux (#8557) 2026-02-19 09:30:05 -06:00
release/windows test: add unit tests for Prefs (#8112) 2026-01-11 19:23:00 -06:00
tests test: use QT_QPA_PLATFORM=offscreen for qt tests on posix (#8575) 2026-02-19 09:24:58 -06:00
third-party refactor: migrate to Madler's crc32c (#8475) 2026-02-15 15:16:01 -06:00
Transmission.xcodeproj refactor: migrate to Madler's crc32c (#8475) 2026-02-15 15:16:01 -06:00
utils refactor: string-utils, file-utils, env (#8417) 2026-02-11 11:21:45 -06:00
web chore: update web dependencies (#8534) 2026-02-18 15:20:47 -06:00
.clang-format build: bump to C++20 (#7191) 2026-01-20 16:27:34 -06:00
.clang-format-ignore android patches for ndk (#6024) 2024-01-21 15:27:24 +00:00
.clang-format-include Adopting .clang-format-include and .clang-format-ignore (#3047) 2022-05-13 18:48:33 -05:00
.gitattributes chore: mark web files as generated (#7588) 2025-05-08 21:44:06 +01:00
.gitignore android patches for ndk (#6024) 2024-01-21 15:27:24 +00:00
.gitmodules refactor: migrate to Madler's crc32c (#8475) 2026-02-15 15:16:01 -06:00
appveyor.yml Bump Windows dependencies (#7755) 2025-11-01 18:59:13 +00:00
AUTHORS docs: update AUTHORS (#6696) 2024-03-14 22:46:54 -05:00
CMakeLists.txt chore: update web dependencies (#8534) 2026-02-18 15:20:47 -06:00
code_style.sh Adding xcode toolchain lookup. (#8342) 2026-02-04 08:11:08 -06:00
CONTRIBUTING.md docs: add PR release notes guidelines (#8320) 2026-02-03 08:44:00 -06:00
COPYING chore: update copyright years (#8039) 2025-12-31 21:59:44 -06:00
icon.png chore: improve lossless compression of png files (#5586) 2023-06-05 17:03:11 -05:00
README.md docs: document different macOS versions needed for building vs running 2026-02-03 19:28:41 -06:00
update-version-h.sh fix: Sparkle Version Comparator (#5263) 2024-03-17 16:23:39 -05:00

About

Transmission is a fast, easy, and free BitTorrent client. It comes in several flavors:

  • A native macOS GUI application
  • GTK+ and Qt GUI applications for Linux, BSD, etc.
  • A Qt-based Windows-compatible GUI application
  • A headless daemon for servers and routers
  • A web UI for remote controlling any of the above

Visit https://transmissionbt.com/ for more information.

Documentation

Transmission's documentation is currently out-of-date, but the team has recently begun a new project to update it and is looking for volunteers. If you're interested, please feel free to submit pull requests!

Command line interface notes

Transmission is fully supported in transmission-remote, the preferred cli client.

Three standalone tools to examine, create, and edit .torrent files exist: transmission-show, transmission-create, and transmission-edit, respectively.

Prior to development of transmission-remote, the standalone client transmission-cli was created. Limited to a single torrent at a time, transmission-cli is deprecated and exists primarily to support older hardware dependent upon it. In almost all instances, transmission-remote should be used instead.

Different distributions may choose to package any or all of these tools in one or more separate packages.

Building

Transmission has an Xcode project file (Transmission.xcodeproj) for building in Xcode.

For a more detailed description, and dependencies, visit How to Build Transmission in docs

Building a Transmission release from the command line

$ tar xf transmission-4.1.0.tar.xz
$ cd transmission-4.1.0
# Use -DCMAKE_BUILD_TYPE=RelWithDebInfo to build optimized binary with debug information. (preferred)
# Use -DCMAKE_BUILD_TYPE=Release to build full optimized binary.
$ cmake -B build -DCMAKE_BUILD_TYPE=RelWithDebInfo
$ cd build
$ cmake --build .
$ sudo cmake --install .

Building Transmission from the nightly builds

Download a tarball from https://build.transmissionbt.com/job/trunk-linux/ and follow the steps from the previous section.

If you're new to building programs from source code, this is typically easier than building from Git.

Building Transmission from Git (first time)

$ git clone --recurse-submodules https://github.com/transmission/transmission Transmission
$ cd Transmission
# Use -DCMAKE_BUILD_TYPE=RelWithDebInfo to build optimized binary with debug information. (preferred)
# Use -DCMAKE_BUILD_TYPE=Release to build full optimized binary.
$ cmake -B build -DCMAKE_BUILD_TYPE=RelWithDebInfo
$ cd build
$ cmake --build .
$ sudo cmake --install .

Building Transmission from Git (updating)

$ cd Transmission/build
$ cmake --build . -t clean
$ git submodule foreach --recursive git clean -xfd
$ git pull --rebase --prune
$ git submodule update --init --recursive
$ cmake --build .
$ sudo cmake --install .

Contributing

Code Style

You would want to setup your editor to make use of the .clang-format file located in the root of this repository and the eslint/prettier rules in web/package.json.

If for some reason you are unwilling or unable to do so, there is a shell script which you can use: ./code_style.sh

Translations

See language translations.

Sponsors

[MacStadium] macOS CI builds are running on a M1 Mac Mini provided by MacStadium
[SignPath] Free code signing on Windows provided by SignPath.io, certificate by SignPath Foundation