├── .gitignore ├── .gitmodules └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files 2 | *.slo 3 | *.lo 4 | *.o 5 | *.obj 6 | 7 | # Compiled Dynamic libraries 8 | *.so 9 | *.dylib 10 | *.dll 11 | 12 | # Compiled Static libraries 13 | *.lai 14 | *.la 15 | *.a 16 | *.lib 17 | 18 | # Executables 19 | *.exe 20 | *.out 21 | *.app 22 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "zeroreserve"] 2 | path = zeroreserve 3 | url = https://github.com/zeroreserve/ZeroReserve.git 4 | [submodule "paintchat"] 5 | path = paintchat 6 | url = https://github.com/electron128/Retroshare-Paintchat-Plugin.git 7 | [submodule "rswebui"] 8 | path = rswebui 9 | url = https://gitorious.org/rswebui/rswebui.git 10 | [submodule "friendmap"] 11 | path = friendmap 12 | url = https://github.com/chozabu/FriendMap.git 13 | 14 | 15 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | retroshare-plugins 2 | ================== 3 | 4 | A collection of Plugins from various authors. 5 | 6 | The aim of this git repo is simplify plugin compilation, 7 | and provide a decent collection so you dont have to search 8 | out where to find them. 9 | 10 | Please send me a pull requests to include any plugins 11 | I have missed. 12 | 13 | 14 | Compiling. 15 | ================ 16 | 17 | [Pre-requisite] Compiled Retroshare. 18 | -------------------- 19 | 20 | svn co retroshare retroshare-svn 21 | cd retroshare-svn 22 | qmake 23 | make 24 | 25 | check-out in base of retroshare source tree. 26 | ------------------------------------ 27 | 28 | git clone git:\\github.com\drbob\retroshare-plugins.git 29 | cd retroshare-plugins 30 | git update submodules --init 31 | qmake 32 | make 33 | 34 | 35 | 36 | Plugins 37 | ====================== 38 | 39 | ZeroReserve by Anu: Friend 2 Friend Payment and Bitcoin exchange 40 | ------------------ 41 | https://github.com/zeroreserve/ZeroReserve 42 | 43 | PaintChat by electron128 44 | ------------------------- 45 | https://github.com/electron128/Retroshare-Paintchat-Plugin 46 | 47 | RsWebUI by csoler 48 | ------------------------ 49 | https://gitorious.org/rswebui/rswebui 50 | 51 | FriendMap by nyfor and chozabu 52 | ------------------------------ 53 | https://github.com/chozabu/FriendMap 54 | 55 | 56 | Other Plugins which are not yet included: 57 | ========================================= 58 | 59 | EmptyPluginRS by chozabu 60 | ----------------------- 61 | https://github.com/chozabu/EmptyPluginRS 62 | 63 | WebScriptRS by chozabu 64 | ------------------------ 65 | https://github.com/chozabu/WebScriptRS 66 | 67 | Documentation by Morpheus Being 68 | ---------------------- 69 | https://github.com/morpheusbeing/retroshare_plugin_writing 70 | 71 | --------------------------------------------------------------------------------