5 | | |
6 | | == Mac OS X == |
7 | | === Overview === |
8 | | |
9 | | Mac OS X has a standardized way of saving user preferences files using [http://en.wikipedia.org/wiki/XML XML] format. These files are called [http://en.wikipedia.org/wiki/Plist plist] (short for property list) files. Usually there is no need to modify these files directly, since Apple provided a comand-line tool to reliably change settings. |
10 | | |
11 | | Although the Mac client allows you to set all preferences through the gui, I'll show you how you can switch the updater to use the nightly feed: |
12 | | {{{ |
13 | | $ defaults write org.m0k.transmission SUFeedURL http://transmission.xpjets.com/ZIP/ |
14 | | }}} |
15 | | (Note: These are untested snapshots. Use them with care.) |
16 | | |
17 | | Use the following to reset the setting: |
18 | | {{{ |
19 | | $ defaults delete org.m0k.transmission SUFeedURL |
20 | | }}} |
21 | | For more information, open up your terminal and type: |
22 | | {{{ |
23 | | $ man defaults |
24 | | }}} |
| 83 | |
| 84 | == Mac OS X == |
| 85 | === Overview === |
| 86 | |
| 87 | Mac OS X has a standardized way of saving user preferences files using [http://en.wikipedia.org/wiki/XML XML] format. These files are called [http://en.wikipedia.org/wiki/Plist plist] (short for property list) files. Usually there is no need to modify these files directly, since Apple provided a [http://developer.apple.com/DOCUMENTATION/Darwin/Reference/ManPages/man1/defaults.1.html command-line tool] to reliably change settings. You do need to restart Transmission before these have effect. |
| 88 | |
| 89 | In short: |
| 90 | * To set a key: {{{defaults write org.m0k.transmission}}} ''key'' ''value'' |
| 91 | * To reset a key: {{{defaults delete org.m0k.transmission}}} ''key'' |
| 92 | |
| 93 | === Options === |
| 94 | ==== Nightly ==== |
| 95 | When you check the "Include beta releases" checkbox, you'll update to the nightlies[[BR]] |
| 96 | ''Note: Nightlies are untested snapshots. Use them with care.'' |
| 97 | * '''AppcastBeta:''' |
| 98 | {{{ |
| 99 | $ defaults write org.m0k.transmission AppcastBeta http://transmission.xpjets.com/ZIP/ |
| 100 | }}} |
| 101 | ==== Advanced ==== |
| 102 | * '''PeerSocketTOS:''' Number (Default = 8) |
| 103 | |
| 104 | |
| 105 | === Legacy === |
| 106 | ==== Transmission 1.5x and earlier ==== |
| 107 | ===== Nightly ===== |
| 108 | * '''SUFeedURL:''' |
| 109 | {{{ |
| 110 | $ defaults write org.m0k.transmission SUFeedURL http://transmission.xpjets.com/ZIP/ |
| 111 | }}} |