Desktop Qt based XMPP messenger
Go to file
vae 58f57f746c
build: static libraries
2021-05-09 01:22:14 +03:00
core build: static libraries 2021-05-09 01:22:14 +03:00
external build: static libraries 2021-05-09 01:22:14 +03:00
packaging 0.1.5 2020-07-29 23:26:56 +03:00
plugins highlight in directory now is optional runtime plugin to KIO, several more file managers to fallback, refactor, 2 new icons 2021-05-06 17:44:43 +03:00
resources highlight in directory now is optional runtime plugin to KIO, several more file managers to fallback, refactor, 2 new icons 2021-05-06 17:44:43 +03:00
shared now instead of storing uploading message in ram I store them in database to be able to recover unsent ones on the next statrt. Found and fixed bug with spam repaints in feedview because of icons 2021-05-07 21:26:02 +03:00
translations minor bugfixes 2020-04-15 20:27:38 +03:00
ui build: static libraries 2021-05-09 01:22:14 +03:00
.gitignore chore: add gitignore 2021-05-09 00:35:34 +03:00
.gitmodules debugging vanished messages 2019-06-28 18:15:30 +03:00
CHANGELOG.md highlight in directory now is optional runtime plugin to KIO, several more file managers to fallback, refactor, 2 new icons 2021-05-06 17:44:43 +03:00
CMakeLists.txt highlight in directory now is optional runtime plugin to KIO, several more file managers to fallback, refactor, 2 new icons 2021-05-06 17:44:43 +03:00
LICENSE.md started to devide contact and MUC, license, readme, attach icon 2019-08-14 17:54:46 +03:00
README.md highlight in directory now is optional runtime plugin to KIO, several more file managers to fallback, refactor, 2 new icons 2021-05-06 17:44:43 +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
main.cpp handled a case when user removes downloaded file, minor optimizations on message changing 2021-04-28 23:26:19 +03:00
order.h 0.1.4 kwallet optimisation related fix, DnD files into convs, visual fixes 2020-04-14 19:30:33 +03:00
shared.h First steps on the new idea of file up/downloading 2021-04-18 15:49:20 +03:00
signalcatcher.cpp 0.1.5 2020-07-29 23:26:56 +03:00
signalcatcher.h started to devide contact and MUC, license, readme, attach icon 2019-08-14 17:54:46 +03:00

README.md

Squawk - a compact XMPP desktop messenger

AUR license AUR version Liberapay patrons

Squawk screenshot

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
  • kwallet (optional)

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 .

List of keys

Here is the list of keys you can pass to configuration phase of cmake ...

  • CMAKE_BUILD_TYPE - Debug just builds showing all warnings, Release builds with no warnings and applies optimizations (default is Debug)
  • SYSTEM_QXMPP - True tries to link against qxmpp installed in the system, False builds bundled qxmpp library (default is True)
  • WITH_KWALLET - True builds the KWallet capability module if KWallet is installed and if not goes to False. False disables KWallet support (default is True)
  • WITH_KIO - True builds the KIO capability module if KIO is installed and if not goes to False. False disables KIO support (default is True)

License

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