Search found 306 matches

by mike.dld
Wed Dec 23, 2020 10:05 pm
Forum: Support
Topic: Transmission Script after completion *Not working*
Replies: 1
Views: 7960

Re: Transmission Script after completion *Not working*

Things to try first: 1. Check that the user Transmission is running as has access to your script. Note that on Linux this usually means access to parent directories as well (for read or read/execute). E.g. # sudo su debian-transmission -s /bin/sh -c 'cat /path/to/script.sh' # sudo su debian-transmis...
by mike.dld
Sat Nov 21, 2020 10:53 am
Forum: Mac Requests
Topic: Transmission Version for iMac 4,1 early 2006
Replies: 4
Views: 42362

Re: Transmission Version for iMac 4,1 early 2006

First link points to an XML file used by Transmission when checking for updates. It currently states that Transmission version 3.00 requires OS version 10.10.0 an up Transmission version 2.94 requires OS version 10.7.0 an up Transmission version 2.84 requires OS version 10.6.0 an up Transmission ver...
by mike.dld
Fri Nov 20, 2020 11:17 pm
Forum: Mac Requests
Topic: Transmission Version for iMac 4,1 early 2006
Replies: 4
Views: 42362

Re: Transmission Version for iMac 4,1 early 2006

Based on the OS version, you may find the proper DMG link in https://transmissionbt.com/appcast.xml (pay attention to sparkle:minimumSystemVersion tags). If there's no suitable version listed there, you could try some other (earlier) ones from https://github.com/transmission/transmission-releases.
by mike.dld
Tue Oct 20, 2020 7:27 am
Forum: General
Topic: Transmission nightly
Replies: 11
Views: 42495

Re: Transmission nightly

Both build the same revisions but may do so on a slightly different schedule, so just wait a while if that happens. As for the second link, this build configuration is no longer used and will soon be removed since we don't provide autotools build system anymore; use the CMake-based one: https://trtc...
by mike.dld
Sat Oct 10, 2020 11:41 am
Forum: Mac Support
Topic: Mac OS - Launch script on torrent completion
Replies: 3
Views: 24676

Re: Mac OS - Launch script on torrent completion

Preferences dialog -> Transfers -> Management tab -> Call Script: When download completes: (at the bottom of the dialog)
by mike.dld
Wed Oct 07, 2020 5:04 pm
Forum: General
Topic: Transmission nightly
Replies: 11
Views: 42495

Re: Transmission nightly

I'll try to fix https://build.transmissionbt.com/job/trunk-linux/ today/tomorrow. In the meantime, if you need sources tarball take a look at build artifacts at https://trtc.mikedld.com/buildConfiguration/Transmission_Sanity_GentooX8664autotools?branch=<default>&buildTypeTab=overview&mode=bu...
by mike.dld
Tue Sep 08, 2020 1:39 pm
Forum: Support
Topic: Where is Transmission installed on Ubuntu
Replies: 7
Views: 6870

Re: Where is Transmission installed on Ubuntu

Run `transmission-remote -si` to get session information which will contain "Configuration directory:" line in "CONFIG" section; that's where Transmission stores all its information about your torrents and their progress, and where your configuration file (settings.json) is locat...
by mike.dld
Tue Sep 08, 2020 9:11 am
Forum: Support
Topic: Where is Transmission installed on Ubuntu
Replies: 7
Views: 6870

Re: Where is Transmission installed on Ubuntu

The easiest is probably to use https://packages.ubuntu.com/ to find the particular package and view the list of its files, e.g. https://packages.ubuntu.com/focal/amd64/transmission-daemon/filelist. Other options could be googled as well, e.g. https://superuser.com/questions/82923/how-to-list-files-o...
by mike.dld
Mon Jun 29, 2020 9:20 pm
Forum: Windows Support
Topic: Win10 script torrent complete not running .exe's
Replies: 3
Views: 35809

Re: Win10 script torrent complete not running .exe's

To the OP, if you still have this issue consider redirecting the transmission-remote output to a file as well, e.g.

Code: Select all

CALL "D:\Program Files\Transmission\transmission-remote" -l > C:\test\output.log 2>&1
by mike.dld
Mon Jun 29, 2020 9:09 pm
Forum: Windows Support
Topic: Win10 script torrent complete not running .exe's
Replies: 3
Views: 35809

Re: Win10 script torrent complete not running .exe's

Read my comment (and maybe the whole thread) on GitHub for pointers: https://github.com/transmission/transmi ... -472212932
by mike.dld
Wed Jun 03, 2020 5:47 pm
Forum: Support
Topic: Transmission 3.0
Replies: 10
Views: 18244

Re: Transmission 3.0

Transmission is using cURL library to make HTTP requests to trackers. As long as that library is built with SSL support (and potentially against an SSL library that supports a particular SSL/TLS version in use by the tracker), Transmission itself supports SSL.
by mike.dld
Sun May 31, 2020 1:21 pm
Forum: Mac Support
Topic: Transmission 3.0 torrent File badly renamed :(
Replies: 4
Views: 6166

Re: Transmission 3.0 torrent File badly renamed :(

Two reasons you should not rely on torrent filenames: 1. Files stored in "torrent" and "resume" subdirectories are best managed by Transmission and should not generally be touched by a human. In particular, .torrent and .resume files are stored for Transmission's internal use and...
by mike.dld
Sun May 31, 2020 11:18 am
Forum: Support
Topic: Compiling Transmission from GitHub source
Replies: 3
Views: 3802

Re: Compiling Transmission from GitHub source

I'd suggest starting from the top. You may not have done the cloning correctly.
by mike.dld
Wed May 27, 2020 2:44 pm
Forum: Mac Support
Topic: Transmission Crashes
Replies: 1
Views: 2798

Re: Transmission Crashes

The report is incomplete. It says that "crashed thread: 1" but then only includes "thread 0" which seems to operate normally. Include as much as you can, I'm not sure if the report could be that big that the forum won't allow you to paste it all. Also, please wrap it in "cod...
by mike.dld
Wed May 27, 2020 2:40 pm
Forum: Support
Topic: Compiling Transmission from GitHub source
Replies: 3
Views: 3802

Re: Compiling Transmission from GitHub source

Take a look at https://github.com/transmission/transmission-release-scripts/blob/master/build-source.sh for the steps that should be enough (those are for Debian). Note that on some Linux distributions (and yours is one of those) you need to install additional packages in order to do any development...