Ton-O / transmisson-remote-gui

Automatically exported from code.google.com/p/transmisson-remote-gui
GNU General Public License v2.0
0 stars 0 forks source link

Add changing downloaded file permission (umask) #718

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Enhancement:
Since the option exists in transmission config file, it would be nice to have 
the possibility to change the default 644 file permissions directly in TransGUI

Umask is normally represented in octal, but since json does not support that, 
transmission folks did convert it to base 10. You can do this in the shell like 
this (for umask 644):

$ echo $(( 8#022 ))
>>>18

 "umask": 18, -> /etc/transmission-daemon/settings.json

Original issue reported on code.google.com by albi...@gmail.com on 25 Nov 2013 at 12:53

GoogleCodeExporter commented 9 years ago
There is no way to control this option via RPC.

Original comment by j...@cp-lab.com on 29 Dec 2013 at 1:44