diff --git a/docs/contact.md b/docs/contact.md index 9f80595..5eb2fa6 100644 --- a/docs/contact.md +++ b/docs/contact.md @@ -1,5 +1,6 @@ # Contact us: -1) Using GitHub - open issue +1) https://git.plastiras.org/emdee/toxygen/issues -2) Use Toxygen Tox Group (NGC) - ID: 59D68B2709E81A679CF91416CB0E3692851C6CFCABEFF98B7131E3805A6D75FA +2) Use Toxygen Tox Group (NGC) - +ID: 59D68B2709E81A679CF91416CB0E3692851C6CFCABEFF98B7131E3805A6D75FA diff --git a/docs/contributing.md b/docs/contributing.md index 93292aa..b2cebf4 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -7,12 +7,15 @@ Help us find all bugs in Toxygen! Please provide following info: - Toxygen executable info - python executable (.py), precompiled binary, from package etc. - Steps to reproduce the bug -Want to see new feature in Toxygen? [Ask for it!](https://github.com/toxygen-project/toxygen/issues) +Want to see new feature in Toxygen? +[Ask for it!](https://git.plastiras.org/emdee/toxygen/issues) # Pull requests Developer? Feel free to open pull request. Our dev team is small so we glad to get help. -Don't know what to do? Improve UI, fix [issues](https://github.com/toxygen-project/toxygen/issues) or implement features from our TODO list. +Don't know what to do? Improve UI, fix +[issues](https://git.plastiras.org/emdee/toxygen/issues) +or implement features from our TODO list. You can find our TODO's in code, issues list and [here](/README.md). Also you can implement [plugins](/docs/plugins.md) for Toxygen. Note that we have a lot of branches for different purposes. Master branch is for stable versions (releases) only, so I recommend to open PR's to develop branch. Development of next Toxygen version usually goes there. Other branches used for implementing different tasks such as file transfers improvements or audio calls implementation etc. diff --git a/docs/install.md b/docs/install.md index 00f8188..b3c5457 100644 --- a/docs/install.md +++ b/docs/install.md @@ -1,33 +1,15 @@ # How to install Toxygen -## Use precompiled binary (recommended for users): -[Check our releases page](https://github.com/toxygen-project/toxygen/releases) - -## Using pip3 - -### Windows - -``pip install toxygen`` - -Run app using ``toxygen`` command. - ### Linux -1. Install [toxcore](https://github.com/irungentoo/toxcore/blob/master/INSTALL.md) with toxav support in your system (install in /usr/lib/) +1. Install [c-toxcore](https://github.com/TokTok/c-toxcore/) 2. Install PortAudio: ``sudo apt-get install portaudio19-dev`` 3. For 32-bit Linux install PyQt5: ``sudo apt-get install python3-pyqt5`` 4. Install [OpenCV](http://docs.opencv.org/trunk/d7/d9f/tutorial_linux_install.html) or via ``sudo pip3 install opencv-python`` -5. Install toxygen: -``sudo pip3 install toxygen`` +5. Install [toxygen](https://git.plastiras.org/emdee/toxygen/) 6. Run toxygen using ``toxygen`` command. -## Packages - -Arch Linux: [AUR](https://aur.archlinux.org/packages/toxygen-git/) - -Debian/Ubuntu: [tox.chat](https://tox.chat/download.html#gnulinux) - ## From source code (recommended for developers) ### Windows @@ -44,27 +26,17 @@ Note: 32-bit Python isn't supported due to bug with videocalls. It is strictly r 8. Download latest libtox.dll build, download latest libsodium.a build, put it into \toxygen\libs\ 9. Run \toxygen\main.py. -Optional: install toxygen using setup.py: ``python setup.py install`` - -[libtox.dll for 32-bit Python](https://build.tox.chat/view/libtoxcore/job/libtoxcore_build_windows_x86_shared_release/lastSuccessfulBuild/artifact/libtoxcore_build_windows_x86_shared_release.zip) - -[libtox.dll for 64-bit Python](https://build.tox.chat/view/libtoxcore/job/libtoxcore_build_windows_x86-64_shared_release/lastSuccessfulBuild/artifact/libtoxcore_build_windows_x86-64_shared_release.zip) - -[libsodium.a for 32-bit Python](https://build.tox.chat/view/libsodium/job/libsodium_build_windows_x86_static_release/lastSuccessfulBuild/artifact/libsodium_build_windows_x86_static_release.zip) - -[libsodium.a for 64-bit Python](https://build.tox.chat/view/libsodium/job/libsodium_build_windows_x86-64_static_release/lastSuccessfulBuild/artifact/libsodium_build_windows_x86-64_static_release.zip) - ### Linux 1. Install latest Python3: ``sudo apt-get install python3`` 2. Install PyQt5: ``sudo apt-get install python3-pyqt5`` or ``sudo pip3 install pyqt5`` -3. Install [toxcore](https://github.com/irungentoo/toxcore/blob/master/INSTALL.md) with toxav support in your system (install in /usr/lib/) +3. Install [toxcore](https://github.com/TokTok/c-toxcore) with toxav support) 4. Install PyAudio: ``sudo apt-get install portaudio19-dev`` and ``sudo apt-get install python3-pyaudio`` (or ``sudo pip3 install pyaudio``) 5. Install NumPy: ``sudo pip3 install numpy`` 6. Install [OpenCV](http://docs.opencv.org/trunk/d7/d9f/tutorial_linux_install.html) or via ``sudo pip3 install opencv-python`` -7. [Download toxygen](https://github.com/toxygen-project/toxygen/archive/master.zip) +7. [Download toxygen](https://git.plastiras.org/emdee/toxygen/) 8. Unpack archive 9. Run app: ``python3 main.py`` diff --git a/docs/plugin_api.md b/docs/plugin_api.md index d549e68..9eb30a4 100644 --- a/docs/plugin_api.md +++ b/docs/plugin_api.md @@ -1,6 +1,6 @@ # Plugins API -In Toxygen plugin is single python (supported Python 3.4 - 3.6) module (.py file) and directory with data associated with it. +In Toxygen plugin is single python module (.py file) and directory with data associated with it. Every module must contain one class derived from PluginSuperClass defined in [plugin_super_class.py](/src/plugins/plugin_super_class.py). Instance of this class will be created by PluginLoader class (defined in [plugin_support.py](/src/plugin_support.py) ). This class can enable/disable plugins and send data to it. Every plugin has its own full name and unique short name (1-5 symbols). Main app can get it using special methods. diff --git a/docs/ubuntu.png b/docs/ubuntu.png old mode 100755 new mode 100644 index cd80444..67951a5 Binary files a/docs/ubuntu.png and b/docs/ubuntu.png differ diff --git a/docs/windows.png b/docs/windows.png old mode 100755 new mode 100644 index d4ed323..f13f4c0 Binary files a/docs/windows.png and b/docs/windows.png differ