You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
2.7 KiB
Markdown

Tox-WeeChat
===========
10 years ago
Tox-WeeChat is a C plugin for the [WeeChat][1] chat client that enables it to connect to the [Tox][2] network. It is functional, but fairly limited in features and not intended for general use yet.
10 years ago
Current build status: [![Build Status](https://travis-ci.org/haavardp/tox-weechat.svg?branch=master)](https://travis-ci.org/haavardp/tox-weechat)
Installation
------------
Tox-WeeChat requires [WeeChat][1] >=1.0, [libjansson][3] >=2.5, and the latest-ish [libtoxcore][4]. It also requires CMake to be built. Installation is fairly simple:
$ git clone https://github.com/haavardp/tox-weechat.git
$ cd tox-weechat
$ mkdir build && cd build
10 years ago
$ cmake -DHOME_FOLDER_INSTALL=ON ..
$ make
$ make install
10 years ago
This installs the plugin binary `tox.so` in the recommended location `~/.weechat/plugins`. Omitting the home folder flag installs it to `/usr/local/lib/weechat/plugins`. Install anywhere else by setting `INSTALL_PATH`.
Usage
-----
- In WeeChat, load the plugin with `/plugin load tox`. If it fails, try specifying the full path to the binary.
10 years ago
- Create a new identity with `/tox add <name>`. The data file is stored in `<WeeChat home>/tox/` by default.
- Connect your identity to the Tox network with `/tox connect <name>`.
- Change your name with `/name <new name>`.
- Get your Tox address with `/myaddress`.
- To add friends or respond to friend requests, `/help friend` will get you started.
10 years ago
- Message a friend with `/msg <friend number>`. Get their friend number with `/friend list`.
10 years ago
A list of commands is available with `/help -list tox`.
10 years ago
TODO & Implemented features
10 years ago
----
10 years ago
- [x] Adding friends, one-to-one chats
- [x] Support multiple identities
10 years ago
- [x] Save friend requests
10 years ago
- [ ] Encrypted save files
- [ ] Tox DNS
10 years ago
- [ ] Group chats (awaiting libtoxcore implementation)
- [ ] Support proxies (TOR)
- [ ] A/V (long term)
10 years ago
License
---------
Copyright (c) 2014 Håvard Pettersson <haavard.pettersson@gmail.com>
This file is part of Tox-WeeChat.
Tox-WeeChat is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Tox-WeeChat is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Tox-WeeChat. If not, see <http://www.gnu.org/licenses/>.
[1]: http://weechat.org
[2]: http://tox.im
[3]: http://www.digip.org/jansson/
[4]: https://github.com/irungentoo/toxcore