docs update

This commit is contained in:
ingvar1995 2016-06-23 12:46:48 +03:00
parent 190877f5b9
commit a4da3a7afa
3 changed files with 9 additions and 15 deletions

View File

@ -3,13 +3,7 @@
You can compile Toxygen using [PyInstaller](http://www.pyinstaller.org/) You can compile Toxygen using [PyInstaller](http://www.pyinstaller.org/)
Install PyInstaller: Install PyInstaller:
``pip install pyinstaller`` ``pip3 install pyinstaller``
On Linux:
``pyinstaller --windowed main.py``
On Windows:
``pyinstaller --windowed --icon images/icon.ico main.py`` ``pyinstaller --windowed --icon images/icon.ico main.py``

View File

@ -7,9 +7,9 @@
### Windows ### Windows
1. [Download and install latest Python 2.7](https://www.python.org/downloads/windows/) 1. [Download and install latest Python 3.4](https://www.python.org/downloads/windows/)
2. [Install PySide](https://pypi.python.org/pypi/PySide/1.2.4) (recommended) or [PyQt4](https://riverbankcomputing.com/software/pyqt/download) 2. [Install PySide](https://pypi.python.org/pypi/PySide/1.2.4) (recommended) or [PyQt4](https://riverbankcomputing.com/software/pyqt/download)
3. Install PyAudio: ``python -m pip install pyaudio`` 3. Install PyAudio: ``pip3 install pyaudio``
4. [Download toxygen](https://github.com/xveduk/toxygen/archive/master.zip) 4. [Download toxygen](https://github.com/xveduk/toxygen/archive/master.zip)
5. Unpack archive 5. Unpack archive
6. Download latest libtox.dll build, download latest libsodium.a build, put it into \src\libs\ 6. Download latest libtox.dll build, download latest libsodium.a build, put it into \src\libs\
@ -28,21 +28,21 @@
Dependencies: Dependencies:
1. Install Python2.7: 1. Install Python3.4:
``sudo apt-get install python2.7`` ``sudo apt-get install python3``
2. [Install PySide](https://wiki.qt.io/PySide_Binaries_Linux) (recommended) or [PyQt4](https://riverbankcomputing.com/software/pyqt/download) 2. [Install PySide](https://wiki.qt.io/PySide_Binaries_Linux) (recommended) or [PyQt4](https://riverbankcomputing.com/software/pyqt/download)
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/irungentoo/toxcore/blob/master/INSTALL.md) with toxav support in your system (install in /usr/lib/)
4. Install PyAudio: 4. Install PyAudio:
```bash ```bash
sudo apt-get install portaudio19-dev sudo apt-get install portaudio19-dev
sudo pip install pyaudio sudo apt-get install python3-pyaudio
``` ```
Toxygen: Toxygen:
1. [Download toxygen](https://github.com/xveduk/toxygen/archive/master.zip) 1. [Download toxygen](https://github.com/xveduk/toxygen/archive/master.zip)
2. Unpack archive 2. Unpack archive
3. Run app: 3. Run app:
``python main.py`` ``python3 main.py``
## Compile Toxygen ## Compile Toxygen
Check [compile.md](/docs/compile.md) for more info Check [compile.md](/docs/compile.md) for more info

View File

@ -1,6 +1,6 @@
#Plugins #Plugins
Toxygen is the first [Tox](https://tox.chat/) client with plugins support. Plugin is Python module (.py file) and directory with plugin's data which provide some additional functionality. Toxygen is the first [Tox](https://tox.chat/) client with plugins support. Plugin is Python 3.4 module (.py file) and directory with plugin's data which provide some additional functionality.
#How to write plugin #How to write plugin