From 16a0a88b3db9e8c3f1c8ff80139b77a31f2da287 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Wed, 25 Mar 2020 14:34:31 +0100 Subject: Support for receiving m.reaction events Continuation of the #341 backport. --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index b2536f1b..8ae97a6c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -98,6 +98,7 @@ set(libqmatrixclient_SRCS lib/events/roommemberevent.cpp lib/events/typingevent.cpp lib/events/receiptevent.cpp + lib/events/reactionevent.cpp lib/events/callanswerevent.cpp lib/events/callcandidatesevent.cpp lib/events/callhangupevent.cpp -- cgit v1.2.3 From 123d58fc3c29d8e9adbb5b654df53d5cbb0a32fa Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Thu, 26 Mar 2020 19:14:34 +0100 Subject: SsoSession and Connection::prepareForSso() Final part of #388 backport. --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 8ae97a6c..ebde5186 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -78,6 +78,7 @@ set(libqmatrixclient_SRCS lib/networkaccessmanager.cpp lib/connectiondata.cpp lib/connection.cpp + lib/ssosession.cpp lib/logging.cpp lib/room.cpp lib/user.cpp -- cgit v1.2.3 From 0591b3d58f7cff90fd6dcfb54c01f04b6a4549a4 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Fri, 27 Mar 2020 17:30:48 +0100 Subject: CMakeLists.txt: update version to 0.5.3 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index ebde5186..34afb2dc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.1) set(API_VERSION "0.5.1") # Normally it should just include major.minor -project(qmatrixclient VERSION "0.5.2" LANGUAGES CXX) +project(qmatrixclient VERSION "0.5.3" LANGUAGES CXX) option(QMATRIXCLIENT_INSTALL_EXAMPLE "install qmc-example application" ON) -- cgit v1.2.3 From f0c5016656c4b2ddd26be5522b735a7959469ed1 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Tue, 31 Mar 2020 07:46:55 +0200 Subject: Version 0.5.3.1 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 34afb2dc..fc54cd81 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.1) set(API_VERSION "0.5.1") # Normally it should just include major.minor -project(qmatrixclient VERSION "0.5.3" LANGUAGES CXX) +project(qmatrixclient VERSION "0.5.3.1" LANGUAGES CXX) option(QMATRIXCLIENT_INSTALL_EXAMPLE "install qmc-example application" ON) -- cgit v1.2.3 From c4bbd187b8dac480230848906c31c4a0bc24663e Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Wed, 1 Apr 2020 18:49:48 +0200 Subject: CMakeLists.txt: bump API_VERSION; prepare for 0.5.3.2 Because new API has been introduced in 0.5.3. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index fc54cd81..e503bc5f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.1) -set(API_VERSION "0.5.1") # Normally it should just include major.minor -project(qmatrixclient VERSION "0.5.3.1" LANGUAGES CXX) +set(API_VERSION "0.5.3") # Normally it should just include major.minor +project(qmatrixclient VERSION "0.5.3.2" LANGUAGES CXX) option(QMATRIXCLIENT_INSTALL_EXAMPLE "install qmc-example application" ON) -- cgit v1.2.3