Changes between Version 1 and Version 2 of EditingConfigurationParameters
- Timestamp:
- Jan 22, 2010, 2:54:27 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
EditingConfigurationParameters
v1 v2 6 6 Note: The client ''should'' be shutdown before making changes, otherwise settings will be reverted to it's previous state. 7 7 8 == Transmission-Desktop Linux/GTK, Qt, Transmission- Server==8 == Transmission-Desktop Linux/GTK, Qt, Transmission-Daemon == 9 9 10 10 GTK, CLI and Daemon (both on a Mac and Linux) use a [http://www.json.org/ JSON] formatted file, mainly because of its human readability. [[BR]] … … 13 13 === Reload Settings === 14 14 You can make the daemon reload the settings file by sending it the {{{SIGHUP}}} signal.[[BR]] 15 Or, simply run either of the following commands:15 Eg: 16 16 {{{ 17 17 $ killall -HUP transmission-daemon 18 }}}19 Or:20 {{{21 $ pkill -HUP transmission-daemon22 18 }}} 23 19 However bear in mind that if you edit settings whilst the daemon is running they may be overwritten. 24 20 25 21 === Formatting === 26 Here is a sample of the three basic types, respectively Boolean, Number and String: 22 There are three basic types: 23 24 25 || '''Type''' || '''Values''' || 26 || Boolean || true, false || 27 || Number || Integer or Real depending on context || 28 || String || surround with (double?) quotes || 29 30 The settings.json format is: 31 {{{ 32 "KEY" : VALUE, (for a Boolean or Number) 33 "KEY" : "VALUE" (for a string) 34 }}} 35 36 Example: 27 37 {{{ 28 38 { 29 "rpc-enabled": 1,39 "rpc-enabled": true, 30 40 "peer-port" : 51413, 31 41 "rpc-whitelist": "127.0.0.1,192.168.*.*"