Skip to content

Quiark/tensor

 
 

Repository files navigation

Tensor

The buttonless client for the Matrix chat protocol.

Pre-requisites

Linux

Screenshot

Installing pre-requisites

Just install things from "Pre-requisites" using your preferred package manager. If your Qt package base is fine-grained you might want to take a look at tensor.pro to figure out which specific libraries Tensor uses.

Building

From the root directory of the project sources, first update submodules:

git submodule update --init # pull in qmatrixclient library

Then open the project in QtCreator and build.

Installation

From the root directory of the project sources:

cd build
sudo make install

Android

Get it on F-Droid

Alternatively, Download Qt for Android, open tensor.pro in Qt Creator, and build for Android.

Screenshot

OS X

Screenshot

iOS

Screenshot

Windows

Screenshot

Installing pre-requisites

Here you have options.

Use official pre-built packages

Notes:

  • This is quicker but takes a bit of your time to gather and install everything.
  • Unless you already have Visual Studio installed, it's quicker and easier to rely on MinGW supplied by the Qt's online installer. It's only 32-bit yet, though.
  • At the time of this writing (Feb '16), there're no official Qt packages for MinGW 64-bit; so if you want a 64-bit Tensor built by MinGW you have to pass on to the next section.
  • You're not getting a "system" KCoreAddons this way - the in-tree version will be used instead to build Tensor. Actions: download and install things from "Pre-requisites" (except KCoreAddons) in no particular order.

Build-the-world

Notes:

  • This is slower and takes much more machine time (and, possibly, your own time if you're not friendly with command line and configuration files) but downloads and sets up all dependencies on your behalf (including the toolchain, unless you tell it to use Visual Studio).
  • The process is based on this KDE TechBase article and it uses a Gentoo Linux portage system ported to Windows. Have the article handy when going through it.
  • This option will download and build Qt (and KCoreAddons) from scratch so in theory you should be free to configure Qt in whatever way you want. This requires some knowledge of how the portage system works; it's definitely not for simple folks. Knowing Linux helps a lot.
  • You should give it enough time and space to compile everything (it can easily be several hours on weaker hardware and consumes 10+ Gb).
  • Tested with 64-bit MinGW. Visual Studio should work as well but noone tried it yet.
  • TODO: emerge qt below builds the default set of Qt components. By using a needed subset of Qt components instead of a qt metapackage, one can significantly reduce the build time. Actions:
  1. Check out and configure the emerge tool as described in the KDE TechBase article. Don't run emerge yet.
  2. If you don't have Windows SDK installed (it usually comes bundled with Visual Studio):
  1. Enter emerge qt qtquickcontrols kcoreaddons inside the shell made by the kdeenv script (see the KDE TechBase article), double check that the checkout-configure-build-install process has started and leave it running. Leaving it for a night on even an older machine should suffice.
  2. Once the build is over, make sure you have the toolchain reachable from the environment you're going to compile Tensor in. If you plan to use the just-compiled MinGW and CMake to compile Tensor you might want to add /dev-utils/bin and /mingw64/bin into your PATH for convenience. If you have other MinGW or CMake installations around you have to carefully select the order of PATH entries and bear in mind that emerge usually takes the latest versions by default (which are not necessarily the same that you installed).
  • Alternatively: just build Tensor inside the same kdeenv wrapper shell (not tried but should work).

Building

Build using QtCreator or try to use qmake.

Installation

There is no installer configuration for Windows as of yet. You might want to use the Windows Deployment Tool that comes with Qt to find all dependencies and put them into the build directory. Though it misses on a library or two it helps a lot. To double-check that you're good to go you can use the Dependencies Walker tool aka depends.exe - this is especially needed when you have a mixed 32/64-bit environment or have different versions of the same library scattered around.

Dependencies

Qt requires OpenSSL to make secure connections. The correct version for a given Qt version is given at https://wiki.qt.io/Qt_5.8_Tools_and_Versions, for Qt 5.8 it is openssl 1.0.2h The easiest way to install a binary version seems to be with conan package manager.

About

Cross-platform Qt5/QML-based Matrix client

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 61.3%
  • QML 28.5%
  • Makefile 3.8%
  • QMake 3.3%
  • JavaScript 3.1%