|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | 03-May-2022 | - |
| .tx/ | H | 16-May-2020 | - | 23 | 18 |
| Transmission.xcodeproj/ | H | 16-May-2020 | - | 3,730 | 3,713 |
| cli/ | H | 03-May-2022 | - | 685 | 553 |
| cmake/ | H | 03-May-2022 | - | 809 | 676 |
| daemon/ | H | 03-May-2022 | - | 1,626 | 1,249 |
| dist/msi/ | H | 16-May-2020 | - | 714 | 599 |
| docker/code_style/ | H | 16-May-2020 | - | 9 | 7 |
| extras/ | H | 03-May-2022 | - | 57 | 10 |
| gtk/ | H | 03-May-2022 | - | 17,519 | 13,257 |
| libtransmission/ | H | 03-May-2022 | - | 74,512 | 52,211 |
| m4/ | H | 16-May-2020 | - | 837 | 749 |
| macosx/ | H | 03-May-2022 | - | 113,116 | 101,639 |
| po/ | H | 03-May-2022 | - | 228,916 | 178,895 |
| qt/ | H | 03-May-2022 | - | 99,599 | 94,465 |
| release/windows/ | H | 16-May-2020 | - | 609 | 472 |
| third-party/ | H | 16-May-2020 | - | 37,199 | 22,818 |
| utils/ | H | 03-May-2022 | - | 4,759 | 4,013 |
| web/ | H | 03-May-2022 | - | 4,367 | 3,981 |
| .gitignore | H A D | 16-May-2020 | 524 | 26 | 25 |
| .gitmodules | H A D | 16-May-2020 | 863 | 25 | 24 |
| .jsbeautifyrc | H A D | 16-May-2020 | 222 | 11 | 10 |
| AUTHORS | H A D | 16-May-2020 | 2.4 KiB | 59 | 52 |
| COPYING | H A D | 16-May-2020 | 711 | 16 | 11 |
| ChangeLog | H A D | 16-May-2020 | 0 | | |
| Makefile.am | H A D | 16-May-2020 | 967 | 62 | 54 |
| NEWS.md | H A D | 16-May-2020 | 95.7 KiB | 1,948 | 1,834 |
| README.md | H A D | 16-May-2020 | 2.5 KiB | 76 | 51 |
| appveyor.yml | H A D | 16-May-2020 | 2.8 KiB | 96 | 78 |
| autogen.sh | H A D | 16-May-2020 | 1,010 | 47 | 36 |
| code_style.sh | H A D | 16-May-2020 | 1.6 KiB | 79 | 68 |
| configure.ac | H A D | 16-May-2020 | 23.3 KiB | 704 | 604 |
| docker-compose.yml | H A D | 16-May-2020 | 188 | 10 | 8 |
| transmission-gtk.spec.in | H A D | 16-May-2020 | 1.7 KiB | 68 | 58 |
| uncrustify.cfg | H A D | 16-May-2020 | 27.7 KiB | 717 | 716 |
| update-version-h.sh | H A D | 16-May-2020 | 2.2 KiB | 67 | 49 |
README.md
1## About
2
3Transmission is a fast, easy, and free BitTorrent client. It comes in several flavors:
4 * A native Mac OS X GUI application
5 * GTK+ and Qt GUI applications for Linux, BSD, etc.
6 * A headless daemon for servers and routers
7 * A web UI for remote controlling any of the above
8
9Visit https://transmissionbt.com/ for more information.
10
11## Command line interface notes
12
13Transmission is fully supported in transmission-remote, the preferred cli client.
14
15Three standalone tools to examine, create, and edit .torrent files exist: transmission-show, transmission-create, and transmission-edit, respectively.
16
17Prior 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.
18
19Different distributions may choose to package any or all of these tools in one or more separate packages.
20
21## Building
22
23Transmission has an Xcode project file (Transmission.xcodeproj) for building in Xcode.
24
25For a more detailed description, and dependencies, visit: https://github.com/transmission/transmission/wiki
26
27### Building a Transmission release from the command line
28
29 $ tar xf transmission-2.92.tar.xz
30 $ cd transmission-2.92
31 $ mkdir build
32 $ cd build
33 $ cmake ..
34 $ make
35 $ sudo make install
36
37### Building Transmission from the nightly builds
38
39Download a tarball from https://build.transmissionbt.com/job/trunk-linux/ and follow the steps from the previous section.
40
41If you're new to building programs from source code, this is typically easier than building from Git.
42
43### Building Transmission from Git (first time)
44
45 $ git clone https://github.com/transmission/transmission Transmission
46 $ cd Transmission
47 $ git submodule update --init
48 $ mkdir build
49 $ cd build
50 $ cmake ..
51 $ make
52 $ sudo make install
53
54### Building Transmission from Git (updating)
55
56 $ cd Transmission/build
57 $ make clean
58 $ git pull --rebase --prune
59 $ git submodule update
60 $ cmake ..
61 $ make
62 $ sudo make install
63
64## Contributing
65
66### Code Style
67
68You would want to setup your editor to make use of uncrustify.cfg and .jsbeautifyrc configuration files located in the root of this repository.
69
70If for some reason you are unwilling or unable to do so, there is a shell script which you could run either directly or via docker-compose:
71
72 $ ./code_style.sh
73 or
74 $ docker-compose build --pull
75 $ docker-compose run --rm code_style
76