toxygen/README.md

118 lines
3.4 KiB
Markdown
Raw Normal View History

2016-07-27 14:53:50 +00:00
# Toxygen
2016-08-30 17:23:55 +00:00
Toxygen is powerful cross-platform [Tox](https://tox.chat/) client written in pure Python3.
2016-03-16 16:06:15 +00:00
2022-09-27 18:39:33 +00:00
### [Install](/docs/install.md) - [Contribute](/docs/contributing.md) - [Plugins](/docs/plugins.md) - [Compile](/docs/compile.md) - [Contact](/docs/contact.md)
2016-05-12 19:52:47 +00:00
2024-02-06 18:07:32 +00:00
### Supported OS: Linux and Windows (only Linux is tested at the moment)
2016-07-27 14:53:50 +00:00
2016-08-19 17:12:51 +00:00
### Features:
2016-03-29 18:19:29 +00:00
2017-07-15 09:28:19 +00:00
- 1v1 messages
- File transfers
- Audio calls
- Video calls
2018-01-24 20:42:03 +00:00
- Group chats
2017-07-15 09:28:19 +00:00
- Plugins support
- Desktop sharing
- Chat history
- Emoticons
- Stickers
- Screenshots
- Name lookups (toxme.io support)
- Save file encryption
- Profile import and export
- Faux offline messaging
- Faux offline file transfers
- Inline images
- Message splitting
2024-02-06 18:07:32 +00:00
- Proxy support - runs over tor
2017-07-15 09:28:19 +00:00
- Avatars
- Multiprofile
- Multilingual
- Sound notifications
- Contact aliases
- Contact blocking
- Typing notifications
- Changing nospam
- File resuming
- Read receipts
2022-09-27 18:39:33 +00:00
- NGC groups
2016-03-16 16:06:15 +00:00
2016-07-27 14:53:50 +00:00
### Screenshots
2016-05-12 19:52:47 +00:00
*Toxygen on Ubuntu and Windows*
2016-03-30 21:23:10 +00:00
![Ubuntu](/docs/ubuntu.png)
![Windows](/docs/windows.png)
2016-03-29 18:19:29 +00:00
2024-02-06 18:07:32 +00:00
Windows was working but is not currently being tested. AV was working
but is not currently being tested: we're unsure of handling the AV devices
from the commandline. We need to get a working echobot that supports SOCKS5;
we were working on one in https://git.plastiras.org/emdee/toxygen_wrapper
2022-09-27 12:52:32 +00:00
## Forked
2016-08-19 17:12:51 +00:00
2022-11-23 19:23:21 +00:00
This hard-forked from the dead https://github.com/toxygen-project/toxygen
2022-09-27 12:52:32 +00:00
```next_gen``` branch.
2022-11-05 01:16:25 +00:00
2022-10-11 16:36:09 +00:00
See ToDo.md to the current ToDo list.
2024-02-06 18:07:32 +00:00
## Wechat
2022-11-20 18:44:17 +00:00
You can have a [weechat](https://github.com/weechat/qweechat)
console so that you can have IRC and jabber in a window as well as Tox.
There's a copy of qweechat in ```thirdparty/qweechat``` backported to
PyQt5 and integrated into toxygen. Follow the normal instructions for
adding a ```relay``` to [weechat](https://github.com/weechat/weechat)
2022-11-20 01:11:51 +00:00
```
2022-11-20 18:44:17 +00:00
/relay add ipv4.ssl.weechat 9001
/relay start ipv4.ssl.weechat
```
or
```
/relay add weechat 9000
/relay start weechat
```
2022-11-23 19:23:21 +00:00
and use the Plugins/Weechat Console to start weechat under Toxygen.
2023-12-11 02:18:11 +00:00
Then use the File/Connect menu item of the Console to connect to weechat.
2022-11-23 19:23:21 +00:00
Weechat has a Jabber plugin to enable XMPP:
2022-11-20 18:44:17 +00:00
```
/python load jabber.el
/help jabber
2022-11-20 01:11:51 +00:00
```
2022-11-23 19:23:21 +00:00
so you can have Tox, IRC and XMPP in the same application!
2022-11-20 01:11:51 +00:00
2024-02-06 18:07:32 +00:00
## Install
To install read the requirements.txt and look at the comments; there
may be things that need installing by hand or decisions to be made
on supported alternatives.
https://git.plastiras.org/emdee/toxygen_wrapper needs packaging
on pypi as it is a dependency. Just download and install it from
https://git.plastiras.org/emdee/toxygen_wrapper
2023-12-11 02:18:11 +00:00
2024-02-06 18:07:32 +00:00
This is being ported to Qt6 using qtpy https://github.com/spyder-ide/qtpy
It should run on PyQt5, PyQt6 and may run on PySide2 and PySide6 - YMMV.
You should be able to choose between them by setting the environment variable
QT_API to one of: pyqt5 pyqt6 pyside2 pyside6.
To install it, look in the Makefile for the install target and type
```
make install
```
You should set the PIP_EXE_MSYS and PYTHON_EXE_MSYS variables and it does
```
${PIP_EXE_MSYS} --python ${PYTHON_EXE_MSYS} install \
--target ${PREFIX}/lib/python${PYTHON_MINOR}/site-packages/ \
--upgrade .
```
and installs into PREFIX which is usually /usr/local
2023-12-11 15:39:28 +00:00
2024-02-03 04:34:10 +00:00
Up-to-date code is on https://git.plastiras.org/emdee/toxygen
2024-02-06 18:07:32 +00:00
## MultiDevice
2024-02-03 04:34:10 +00:00
Work on this project is suspended until the
[MultiDevice](https://git.plastiras.org/emdee/tox_profile/wiki/MultiDevice-Announcements-POC) problem is solved. Fork me!