2014-07-13 02:30:07 +08:00
qTox
2014-06-25 04:19:37 +08:00
======
2014-07-13 02:30:07 +08:00
Powerful Tox client that tries to follow the Tox UI mockup while running on all major systems. < br / >
This GUI uses code from @nurupo 'tos ProjectTox-Qt-GUI, in particular the "Core" Toxcore wrapper. < br />
2014-06-25 04:19:37 +08:00
However, it is not a fork.
< h2 > Features< / h2 >
2014-06-28 16:53:38 +08:00
- One to one chat with friends
- Group chats
2014-06-27 01:49:59 +08:00
- File transfers, with previewing of images
2014-06-28 04:00:06 +08:00
- Audio calls
2014-07-13 04:27:49 +08:00
- Video calls (alpha)
2014-07-01 02:40:28 +08:00
- Tox DNS
2014-07-04 21:42:14 +08:00
- Translations in various languages
2014-06-25 04:19:37 +08:00
< h2 > Requirements< / h2 >
2014-07-13 02:30:07 +08:00
This client runs on Windows, Linux and Mac natively, but is not build regularly for Linux < br / >
Linux users will have to compile the source code themselves if they want the latest updates.
2014-06-25 04:21:34 +08:00
2014-07-01 09:50:49 +08:00
< a href = "https://jenkins.libtoxcore.so/job/tux3-toxgui-win32/lastSuccessfulBuild/artifact/toxgui-win32.zip" > Windows download< / a > < br / >
2014-07-13 01:19:01 +08:00
< a href = "https://jenkins.libtoxcore.so/job/ToxGUI%20OS%20X/lastSuccessfulBuild/artifact/toxgui.dmg" > Mac download < / a > < br / >
2014-07-13 04:27:49 +08:00
< a href = "https://mega.co.nz/#!9l5B0QqZ!O2glB8XE_Tcf4zTub2WEk-_9Ra43RoeiFV-AQBKDZJU" > Linux download (12st July 2014 20:30 GMT)< / a > < br / >
2014-07-12 01:03:29 +08:00
Note that the Linux download has not been tested and may not be up to date.< br / >
2014-06-27 02:58:53 +08:00
2014-06-27 01:49:59 +08:00
< h3 > Screenshots< / h3 >
2014-06-28 01:14:19 +08:00
< h5 > Note: The screenshots may not always be up to date, but they should give a good idea of the general look and features< / h5 >
2014-07-01 18:42:53 +08:00
< img src = "http://i.imgur.com/mMUdr6u.png" / >
2014-06-27 01:49:59 +08:00
< img src = "http://i.imgur.com/66ARBGC.png" / >
2014-07-04 21:42:14 +08:00
< h3 > Compiling< / h3 >
Compiling toxgui requires Qt 5.2 with the Qt Multimedia module and a C++11 compatible compiler.
It also requires the toxcore and toxav libraries.
2014-07-13 02:30:07 +08:00
To compile, first clone or download the qTox repository and open a terminal in the qTox folder.
2014-07-04 21:42:14 +08:00
Then run the script bootstrap.sh (for Linux and Mac) or bootsrap.bat (for Windows) to download an up-to-date toxcore.
2014-07-13 02:30:07 +08:00
And finally run the commands "qmake" and "make" to start building qTox.
2014-07-04 21:53:33 +08:00
2014-07-04 15:50:55 +08:00
< h3 > OSX Install Guide< / h3 >
2014-07-13 02:30:07 +08:00
< strong > This guide is intended for people who wish to use an existing or new ProjectTox-Core installation separate to the bundled installation with qTox, if you do not wish to use a separate installation you can skip to the section titled 'Final Steps'.< / strong >
2014-07-04 15:50:55 +08:00
Installation on OSX, isn't quite straight forward, here is a quick guide on how to install;
The first thing you need to do is install ProjectTox-Core with a/v support. Refer to the INSTALL guide in the ProjectTox-Core github repo.
Next you need to download QtTools (http://qt-project.org/downloads), at the time of writing this is at version 5.3.0.
Make sure you deselect all the unnecessary components from the 5.3 checkbox (iOS/Android libs) otherwise you will end up with a very large download.
Once that is installed you will most likely need to set the path for qmake. To do this, open up terminal and paste in the following;
```bash
export PATH=/location/to/qmake/binary:$PATH
```
For myself, the qmake binary was located in /Users/mouseym/Qt/5.3/clang_64/bin/.
2014-07-06 05:29:37 +08:00
This is not a permanent change, it will revert when you close the terminal window, to add it permanently you will need to add echo the above line to your .profile/.bash_profile.
2014-07-04 15:50:55 +08:00
Once this is installed, do the following;
```bash
2014-07-13 02:30:07 +08:00
git clone https://github.com/tux3/qTox
2014-07-04 15:50:55 +08:00
cd toxgui
qmake
```
2014-07-12 02:35:05 +08:00
Now, we need to create a symlink to /usr/local/lib/ and /usr/local/include/
```
2014-07-13 02:30:07 +08:00
mkdir -p $HOME/qTox/libs
sudo ln -s /usr/local/lib $HOME/qTox/libs/lib
sudo ln -s /usr/local/include $HOME/qTox/libs/include
2014-07-04 15:50:55 +08:00
```
2014-07-04 23:47:38 +08:00
< h5 > Final Steps< / h5 >
2014-07-04 15:50:55 +08:00
The final step is to run
```bash
make
```
2014-07-13 02:30:07 +08:00
in the qTox directory, or if you are using the bundled tox core installation, you can use
2014-07-04 15:50:55 +08:00
```bash
./bootstrap.sh
```
2014-07-13 02:30:07 +08:00
Assuming all went well you should now have a qTox.app file within the directory. Double click and it should open!