Compare commits

..

3 Commits

Author SHA1 Message Date
Carl Schwan
cc372f67eb Update version to 1.1.1 2021-02-23 14:39:22 +01:00
Tobias Fella
aaa042a2f0 Fix include
(cherry picked from commit 37a681596b)
2021-02-23 11:36:29 +00:00
Tobias Fella
6fdc8a9298 Fix another include
(cherry picked from commit b67a35bfe3)
2021-02-23 11:36:09 +00:00
4 changed files with 5 additions and 3 deletions

View File

@@ -28,7 +28,7 @@ endif()
# Fix a crash due to problems with quotient's event system. Can probably be removed once the reworked event system is in
cmake_policy(SET CMP0063 OLD)
ecm_setup_version(1.1.0
ecm_setup_version(1.1.1
VARIABLE_PREFIX NEOCHAT
VERSION_HEADER ${CMAKE_CURRENT_BINARY_DIR}/neochat-version.h
)

View File

@@ -115,6 +115,7 @@
<content_attribute id="social-chat">intense</content_attribute>
</content_rating>
<releases>
<release urgency="critical" version="1.1.1" date="2021-02-23"></release>
<release version="1.1.0" date="2021-02-22">
<description>
<p>Probably the highlight of this release is the completely new login page. It detects the server configuration based on your Matrix Id. This allows you to login to servers requiring Single Sign On (SSO) (like the Mozilla or the incoming Fedora Matrix instance).</p>

View File

@@ -11,10 +11,11 @@
#include <events/redactionevent.h>
#include <events/roomavatarevent.h>
#include <events/roommemberevent.h>
#include <events/stickerevent.h>
#include <events/simplestateevents.h>
#include <user.h>
#include "stickerevent.h"
#include <QDebug>
#include <QQmlEngine> // for qmlRegisterType()
#include <QTimeZone>

View File

@@ -27,7 +27,7 @@
#include "events/roomcanonicalaliasevent.h"
#include "events/roommessageevent.h"
#include "events/roompowerlevelsevent.h"
#include "events/stickerevent.h"
#include "stickerevent.h"
#include "events/typingevent.h"
#include "jobs/downloadfilejob.h"
#include "neochatconfig.h"