Menu

Tree [836e02] main /
 History

HTTPS access


File Date Author Commit
 .github 2024-11-18 Yat Ho Yat Ho [836e02] ci: test `REBUILD_WEB=ON` (#7242)
 .tx 2023-12-29 Mike Gelfand Mike Gelfand [f54439] Sync translations (#6453)
 Transmission.xcodeproj 2024-11-12 Yat Ho Yat Ho [7e4b4f] refactor: faster wishlist (#7027)
 android 2024-08-25 Robin Seth Ekman Robin Seth Ekman [526033] build: enable clang-tidy by default (#4821) (#6...
 cli 2024-06-15 Torbjörn Lönnemark Torbjörn Lönnemark [ec5296] fix: restore tr_optind in all getConfigDir bran...
 cmake 2024-06-04 niol niol [d42d0f] build with -latomic on platforms that need it (...
 daemon 2024-11-01 Yat Ho Yat Ho [2c82f3] fix: add missing `settings.json` docs and app d...
 dist 2024-07-18 Jason Beck Jason Beck [3e9f5f] fix: Qt build missing an icon (#6683)
 docs 2024-11-01 Yat Ho Yat Ho [2c82f3] fix: add missing `settings.json` docs and app d...
 extras 2022-10-13 A Cœur A Cœur [4ea9c8] fix: some typos (#3904)
 gtk 2024-10-21 Cœur Cœur [a8bf44] fix: code should be clang-formatted (#7184)
 icons 2024-07-18 Jason Beck Jason Beck [3e9f5f] fix: Qt build missing an icon (#6683)
 libtransmission 2024-11-18 Charles Kerr Charles Kerr [d1a1a0] fix: clang-tidy header warnings, pt. 1 (#7228)
 licenses 2022-08-20 Charles Kerr Charles Kerr [5bcbb7] refactor: aggregate arc4 into libtransmission (...
 macosx 2024-11-03 Cœur Cœur [c97527] Crash fix: "Invalid parameter not satisfying: a...
 news 2023-08-23 Charles Kerr Charles Kerr [cb2462] docs: update release notes for 4.0.4 (#5924)
 po 2024-01-01 Mike Gelfand Mike Gelfand [6a84db] Remove low-quality gettext locales from the lis...
 qt 2024-10-24 Charles Kerr Charles Kerr [d8adec] fix: clang-tidy-20 warnings in transmission-qt ...
 release 2024-07-16 Mike Gelfand Mike Gelfand [c21ee8] Add CI configuration for clang-tidy on Windows ...
 tests 2024-11-12 Yat Ho Yat Ho [7e4b4f] refactor: faster wishlist (#7027)
 third-party 2024-11-18 Yat Ho Yat Ho [384b26] chore: bump libutp (#7250)
 utils 2024-08-17 Yat Ho Yat Ho [1e1691] refactor: new `tr_variant` API in `transmission...
 web 2024-11-18 Rukario Rukario [a1befb] Update torrent-row.js (#7245)
 .clang-format 2024-08-12 Yat Ho Yat Ho [120b2f] chore: misc formatting updates and fixes (#7049)
 .clang-format-ignore 2024-01-21 Geoffrey Bonneville Geoffrey Bonneville [7030b5] android patches for ndk (#6024)
 .clang-format-include 2022-05-13 Antoine Cœur Antoine Cœur [7ab2fb] Adopting .clang-format-include and .clang-forma...
 .gitignore 2024-01-21 Geoffrey Bonneville Geoffrey Bonneville [7030b5] android patches for ndk (#6024)
 .gitmodules 2024-03-17 Cœur Cœur [1edd91] bumping libdeflate/small/utfcpp to newer versio...
 AUTHORS 2024-03-15 Gary Elshaw Gary Elshaw [5ad6b9] docs: update AUTHORS (#6696)
 CMakeLists.txt 2024-11-03 Yat Ho Yat Ho [231590] build: accept false constant other than `OFF` f...
 CONTRIBUTING.md 2024-04-21 Dzmitry Neviadomski Dzmitry Neviadomski [ef1881] Fix code style script path in CONTRIBUTING.md (...
 COPYING 2024-01-04 github-actions[bot] github-actions[bot] [1c382c] chore: update copyright years (#6470)
 README.md 2023-10-24 Yat Ho Yat Ho [9d4ad2] chore: update build instructions (#6102)
 appveyor.yml 2024-03-13 Mike Gelfand Mike Gelfand [991b0f] Support WiX toolset versions other than 3.11 (#...
 code_style.sh 2024-05-25 Cœur Cœur [bf0119] Recommended Project Settings (#6591)
 icon.png 2023-06-05 Charles Kerr Charles Kerr [0ef58c] chore: improve lossless compression of png file...
 update-version-h.sh 2024-03-17 Cœur Cœur [c63c66] fix: Sparkle Version Comparator (#5263)

Read Me

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.0.4.tar.xz
$ cd transmission-4.0.4
# 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
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.