Changes between Version 58 and Version 59 of Plugins


Ignore:
Timestamp:
01/05/2013 04:42:04 PM (11 years ago)
Author:
Cas
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Plugins

    v58 v59  
    9494 
    9595=== Manual Install === 
    96 Copy the egg file into the plugins directory of the deluge config.  
     96Copy the egg file into the `plugins` directory in Deluge config: 
    9797 
    98 The default location on Linux/*nix is: 
     98Linux/*nix: 
    9999{{{ 
    100  ~/.config/deluge/plugins/ 
     100 ~/.config/deluge/plugins 
    101101}}} 
    102 The default location on  Windows: 
     102Windows: 
    103103{{{ 
    104 Win XP: C:\Documents and Settings\username\Application Data\deluge\plugins\ 
    105 Win 7 : C:\Users\username\AppData\Roaming\deluge\plugins\ 
     104%APPDATA%\deluge\plugins 
    106105}}} 
    107106 
    108107=== Client-Server Setups === 
    109108 
    110 When running the Deluge server (daemon) on a separate computer, the egg file will be copied there as well when installing through the GTK client. Beware that the python versions on the server and desktop must match. (On Windows, python 2.6 is included in the Deluge install) 
     109When running the Deluge daemon, `deluged`, on a separate computer, the egg file will be copied over when installing through the GTK client. 
    111110 
    112 If the python versions do not match, you will have to copy the egg to the server manually. 
     111''Note: If the Python versions on the server and desktop do not match, you will have to copy the egg to the server manually.'' 
    113112 
    114 Example setup: 
     113For example in the setup below you will have to install the py2.6 egg on the desktop as normal but then manually install the py2.7 egg onto the server. 
    115114 
    116  * Windows desktop with python 2.6 running GTK client. 
    117  * Linux server with python 2.7 running daemon 
    118  
    119 In this case you'll have to install the 2.7 egg onto the server manually after installing the 2.6 egg on the desktop. 
    120  
    121 ---- 
     115    * Windows desktop with Python 2.6 running GTK client. 
     116    * Linux server with Python 2.7 running `deluged` 
    122117 
    123118== Plugin Development ==