Desktop Qt based XMPP messenger https://macaw.me
Go to file
Blue 09a946c204 Merge branch 'fileUpload' of blue/squawk into master 2019-11-16 18:03:47 +00:00
core some fixes about uploading, some error handling 2019-11-14 14:43:43 +03:00
external first working prototype of file upload 2019-11-12 16:38:01 +03:00
packaging uploading message destruction bug, optimisations for release warnings for debug, packaging, readme 2019-11-15 16:30:29 +03:00
resources some VCard polishing, missing icons and translations 2019-11-07 14:17:46 +03:00
translations some fixes about uploading, some error handling 2019-11-14 14:43:43 +03:00
ui uploading message destruction bug, optimisations for release warnings for debug, packaging, readme 2019-11-15 16:30:29 +03:00
.gitmodules debugging vanished messages 2019-06-28 18:15:30 +03:00
CMakeLists.txt uploading message destruction bug, optimisations for release warnings for debug, packaging, readme 2019-11-15 16:30:29 +03:00
LICENSE.md started to devide contact and MUC, license, readme, attach icon 2019-08-14 17:54:46 +03:00
README.md uploading message destruction bug, optimisations for release warnings for debug, packaging, readme 2019-11-15 16:30:29 +03:00
exception.cpp started to devide contact and MUC, license, readme, attach icon 2019-08-14 17:54:46 +03:00
exception.h started to devide contact and MUC, license, readme, attach icon 2019-08-14 17:54:46 +03:00
global.cpp phones now also saveble 2019-11-06 18:14:49 +03:00
global.h some VCard polishing, missing icons and translations 2019-11-07 14:17:46 +03:00
main.cpp uploading message destruction bug, optimisations for release warnings for debug, packaging, readme 2019-11-15 16:30:29 +03:00
order.h started to devide contact and MUC, license, readme, attach icon 2019-08-14 17:54:46 +03:00
signalcatcher.cpp Refactoring of signal/slots connection to new qt syntax 2019-11-03 21:46:40 +03:00
signalcatcher.h started to devide contact and MUC, license, readme, attach icon 2019-08-14 17:54:46 +03:00

README.md

Sqwawk

A compact XMPP desktop messenger

Prerequisites

  • QT 5.12 (lower versions might work but it wasn't tested)
  • uuid (usually included in some other package, for example it's libutil-linux in archlinux)
  • lmdb
  • CMake 3.0 or higher
  • qxmpp 1.1.0 or higher

Getting

The easiest way to get the Squawk is to install it from AUR (if you use Archlinux like distribution)

Here is the link for the AUR package

You can also install it from console if you use some AUR wrapper. Here what it's going to look like with pacaur

$ pacaur -S squawk

Building

You can also clone the repo and build it from source

Squawk requires Qt with SSL enabled. It uses CMake as build system.

There are two ways to build, it depends whether you have qxmpp installed in your system

Building with system qxmpp

Here is what you do

$ git clone https://git.macaw.me/blue/squawk
$ cd squawk
$ mkdir build
$ cd build
$ cmake ..
$ cmake --build .

Building with bundled qxmpp

Here is what you do

$ git clone --recurse-submodules https://git.macaw.me/blue/squawk
$ cd squawk
$ mkdir build
$ cd build
$ cmake .. -D SYSTEM_QXMPP=False
$ cmake --build .

License

This project is licensed under the GPLv3 License - see the LICENSE.md file for details