Official Transmission BitTorrent client repository https://transmissionbt.com
  • C++ 72.8%
  • Objective-C++ 14.9%
  • JavaScript 4%
  • CMake 2.6%
  • Objective-C 1.9%
  • Other 3.8%
Find a file
Dmitry Lobanov 4c77ce2436
refactor: use GCD block instead of performSelector. (#8922)
* refactor: use GCD block instead of performSelector.

* Apply linter rules.
2026-06-17 14:51:12 -04:00
.github ci: support visual studio 2026 (#8912) 2026-06-14 10:47:39 -05: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: remove some of the unused C-style tr_variantFooBar() methods (#8878) 2026-06-08 13:39:21 -05:00
cmake build: fix external project builds with LTO-enabled toolchains (#8369) 2026-02-04 22:45:06 -06:00
daemon refactor: use std tools for the log message queue (#8897) 2026-06-11 13:04:49 -05:00
dist/msi GHA CI: Add support for Windows arm64 (#7758) 2025-12-31 06:25:27 +00:00
docs docs(rpc): fix lost information (#8866) 2026-06-07 21:30:05 -05:00
extras fix: some typos (#3904) 2022-10-13 09:35:10 -05:00
gtk refactor: add tr_variant::Map::merge(), tr_variant::Map::clone() (#8907) 2026-06-14 16:19:24 -05:00
icons Fix blurry/old icons (#8628) 2026-05-27 18:32:46 -05:00
libtransmission refactor: remove u8string-related serializers (#8916) 2026-06-15 09:44:10 -05:00
libtransmission-app fix: performance-move-const-arg (#8788) 2026-05-25 14:04:52 -05:00
licenses refactor: aggregate arc4 into libtransmission (#3684) 2022-08-20 13:41:40 -05:00
macosx refactor: use GCD block instead of performSelector. (#8922) 2026-06-17 14:51:12 -04: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 refactor: add tr_variant::Map::merge(), tr_variant::Map::clone() (#8907) 2026-06-14 16:19:24 -05:00
release ci: support visual studio 2026 (#8912) 2026-06-14 10:47:39 -05:00
tests refactor: remove u8string-related serializers (#8916) 2026-06-15 09:44:10 -05:00
third-party refactor: migrate to Madler's crc32c (#8475) 2026-02-15 15:16:01 -06:00
Transmission.xcodeproj refactor: put libutp behind BSD-like abstraction (#8060) 2026-05-27 13:38:05 -05:00
utils refactor: remove some of the unused C-style tr_variantFooBar() methods (#8878) 2026-06-08 13:39:21 -05:00
web chore: update generated transmission-web files (#8779) 2026-05-27 18:36:33 -05:00
.clang-format fix: Use pre-clang-format-21 syntax (#8584) 2026-02-21 09:05:28 -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 build: handle error from clang-tidy 22 breaking change (#8718) 2026-03-29 19:35:15 -05: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