Search found 306 matches

by mike.dld
Fri Mar 09, 2018 7:35 am
Forum: Windows Support
Topic: Why Windows 7 + ?
Replies: 3
Views: 4010

Re: Why Windows 7 + ?

Sorry if that wasn't clear, but I meant to tell you that we're using Windows API functions that are not available on Windows XP. It won't work out of the box, you'll have to make changes to the source code and build your own binaries. If you need an example, one of those new functions we use is GetF...
by mike.dld
Thu Mar 08, 2018 4:58 pm
Forum: Windows Support
Topic: Why Windows 7 + ?
Replies: 3
Views: 4010

Re: Why Windows 7 + ?

Windows XP and Windows 2003 support was dropped by us since those systems aren't officially supported by Microsoft anymore. This means they don't get any security updates, which is something you most probably need to worry about these days. Another reason is that newer Windows versions provide new A...
by mike.dld
Wed Mar 07, 2018 6:41 pm
Forum: Windows Support
Topic: Preallocate files
Replies: 1
Views: 5824

Re: Preallocate files

Same as on other platforms, sparse preallocation is what is used by default. And same as on other platforms, you could adjust it in settings.json by changing the value of "preallocation" key (see https://github.com/transmission/transmission/wiki/Editing-Configuration-Files#files-and-locati...
by mike.dld
Wed Mar 07, 2018 6:38 pm
Forum: Support
Topic: Transmission-QT 2.93 Not Displaying on Windows
Replies: 1
Views: 3606

Re: Transmission-QT 2.93 Not Displaying on Windows

1. Locate settings.json (in e.g. C:\Users\<username>\AppData\Local\transmission\settings.json) and open it with a text editor (e.g. notepad). Check out the values of "main-window-x" and "main-window-y" keys and compare them to your screen resolution. If window coordinates are out...
by mike.dld
Wed Mar 07, 2018 6:23 pm
Forum: Windows Support
Topic: Transmission is not saving settings
Replies: 2
Views: 7211

Re: Transmission is not saving settings

Are you using the Qt client or the daemon? Is Transmission running when you reboot? Are the settings being preserved if you quit Transmission and start it again without reboot?
by mike.dld
Wed Mar 07, 2018 6:20 pm
Forum: Windows Support
Topic: Downloads not visible in client after update
Replies: 2
Views: 2807

Re: Downloads not visible in client after update

You're probably talking about 2.84 and 2.93. On Windows, versions before 2.9x were not provided by us, they were maintained by the guy nicknamed rb07 on SourceForge. The two versions (rb07's and ours) aren't compatible in a number of ways, one being that they have different configuration directories...
by mike.dld
Wed Mar 07, 2018 6:13 pm
Forum: Windows Support
Topic: Cant choose a location to download to
Replies: 2
Views: 3292

Re: Cant choose a location to download to

I think you're talking about Transmission Remote GUI, which is a program developed elsewhere. Try their support forums maybe (https://sourceforge.net/p/transgui/discussion/general/).
by mike.dld
Thu Mar 01, 2018 2:40 am
Forum: Windows Support
Topic: How to make "script-torrent-done-filename" working in windows
Replies: 20
Views: 15856

Re: How to make "script-torrent-done-filename" working in windows

If I were you I would access environment variables from the PowerShell script directly instead of passing them as arguments to prevent issues with e.g. torrent name containing spaces or other special characters. Just use $Env:TR_TORRENT_DIR and the like.
by mike.dld
Tue Feb 27, 2018 6:26 pm
Forum: Windows Requests
Topic: Multiple instances of Transmission
Replies: 10
Views: 83085

Re: Multiple instances of Transmission

Without -g, and if started under the same user account, both instances will use the same configuration directory.
by mike.dld
Tue Feb 27, 2018 11:23 am
Forum: Windows Requests
Topic: Multiple instances of Transmission
Replies: 10
Views: 83085

Re: Multiple instances of Transmission

The reason I initially wrote about being "more strict about running multiple instances" is I tried it myself and was able to start two instances without even passing -g. Not via a shortcut though, but just navigating to C:\Program Files\Transmission and double-clicking on transmission-qt.e...
by mike.dld
Tue Feb 27, 2018 11:05 am
Forum: Windows Requests
Topic: Multiple instances of Transmission
Replies: 10
Views: 83085

Re: Multiple instances of Transmission

What version are you using?
by mike.dld
Tue Feb 27, 2018 9:56 am
Forum: Windows Requests
Topic: Multiple instances of Transmission
Replies: 10
Views: 83085

Re: Multiple instances of Transmission

I'm not recommending running a particular program, you're free to choose on your own. The argument -g/--config-dir is the same for all flavors. If you're using the Qt client then yes, you could create a new shortcut and add these arguments in its properties (changing "c:\config2" to whatev...
by mike.dld
Tue Feb 27, 2018 6:52 am
Forum: Windows Requests
Topic: Multiple instances of Transmission
Replies: 10
Views: 83085

Re: Multiple instances of Transmission

If anything, it needs to be more strict about running multiple instances. But anyway, if you want two independent instances (be it the Qt client or the daemon), run them with passing different configuration directories as command line arguments, e.g. transmission-qt -g c:\config1 transmission-qt -g ...
by mike.dld
Sun Feb 25, 2018 4:58 pm
Forum: Windows Support
Topic: Graceful shutdown (Windows daemon)
Replies: 4
Views: 5696

Re: Graceful shutdown (Windows daemon)

Option #1, obviously, is to use a newer Windows version. Option #2 is to try programs like the one(s) mentioned in https://stackoverflow.com/q/813086/583456 (or write your own) to send the daemon the Crtl+C event instead of WM_CLOSE that taskkill on Windows 7 seems to be doing. Option #3 is, if you ...