Search found 4 matches

by gilest
Tue Jul 22, 2014 5:08 am
Forum: Web Interface
Topic: Userscript: Transmission Download Destination
Replies: 4
Views: 7778

Re: Userscript: Transmission Download Destination

So I finally got a Windows 7 VM and had a go at reproducing, but I'm afraid I got nowhere:

http://i.imgur.com/VBGa5xV.jpg

Windows 7 Enterprise SP1
Google Chrome 36.0.1985.125
Tampermonkey 3.8
Tried with developer mode on and off.

Some things you might want to try:
Check your zoom level, make ...
by gilest
Sun Jul 06, 2014 3:23 am
Forum: Web Interface
Topic: Userscript: Transmission Download Destination
Replies: 4
Views: 7778

Re: Userscript: Transmission Download Destination

Glad you like it. I think the CSS overrides don't work very well in some browsers/operating systems. Could you let me know your browser and OS versions please, and I'll have a look at it. Should be a pretty easy fix :)
by gilest
Tue Feb 25, 2014 2:38 am
Forum: Web Interface
Topic: Userscript: Transmission Download Destination
Replies: 4
Views: 7778

Userscript: Transmission Download Destination

http://gilesthompson.co.nz/images/transmission_download_destination.jpg
Transmission Download Destination

I thought some of you might be interested in using this. It's a simple userscript that allows you to save multiple download directories and choose between them when adding torrents via the ...
by gilest
Tue Feb 25, 2014 2:27 am
Forum: Web Interface
Topic: Transmission WebUI & Nginx Subdomain
Replies: 1
Views: 13379

Re: Transmission WebUI & Nginx Subdomain

I have it working fine, but I am not using HTTPS.

Code: Select all

server {
      listen 80;
      server_name torrents.mydomain.com;
      location / { proxy_pass http://localhost:9091;  }
 }