• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.tx/H16-May-2020-2318

Transmission.xcodeproj/H16-May-2020-3,7303,713

cli/H03-May-2022-685553

cmake/H03-May-2022-809676

daemon/H03-May-2022-1,6261,249

dist/msi/H16-May-2020-714599

docker/code_style/H16-May-2020-97

extras/H03-May-2022-5710

gtk/H03-May-2022-17,51913,257

libtransmission/H03-May-2022-74,51252,211

m4/H16-May-2020-837749

macosx/H03-May-2022-113,116101,639

po/H03-May-2022-228,916178,895

qt/H03-May-2022-99,59994,465

release/windows/H16-May-2020-609472

third-party/H16-May-2020-37,19922,818

utils/H03-May-2022-4,7594,013

web/H03-May-2022-4,3673,981

.gitignoreH A D16-May-2020524 2625

.gitmodulesH A D16-May-2020863 2524

.jsbeautifyrcH A D16-May-2020222 1110

AUTHORSH A D16-May-20202.4 KiB5952

COPYINGH A D16-May-2020711 1611

ChangeLogH A D16-May-20200

Makefile.amH A D16-May-2020967 6254

NEWS.mdH A D16-May-202095.7 KiB1,9481,834

README.mdH A D16-May-20202.5 KiB7651

appveyor.ymlH A D16-May-20202.8 KiB9678

autogen.shH A D16-May-20201,010 4736

code_style.shH A D16-May-20201.6 KiB7968

configure.acH A D16-May-202023.3 KiB704604

docker-compose.ymlH A D16-May-2020188 108

transmission-gtk.spec.inH A D16-May-20201.7 KiB6858

uncrustify.cfgH A D16-May-202027.7 KiB717716

update-version-h.shH A D16-May-20202.2 KiB6749

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