Skip to content

Commit

Permalink
Release 3.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jpnurmi committed Dec 18, 2021
1 parent dab3f2e commit d1625e5
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [3.7.0] - 2021-12-18
- Fix build with Qt 6
- Add a way to skip capability validation
- Make sure to remove buffer from channel list when buffer get destroyed
- Don't reset connection count on connection close but on quit
- Support more responses to CAP LS 302

## [3.6.0] - 2020-10-29
- General
- Fixed deprecation warnings up until Qt 5.15
Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = Communi
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 3.6.0
PROJECT_NUMBER = 3.7.0

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
4 changes: 2 additions & 2 deletions include/IrcCore/ircglobal.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
\sa Irc::version()
*/
#define IRC_VERSION 0x030600
#define IRC_VERSION 0x030700

/*!
\def IRC_VERSION_STR
Expand All @@ -92,7 +92,7 @@
\sa Irc::version()
*/
#define IRC_VERSION_STR "3.6.0"
#define IRC_VERSION_STR "3.7.0"

#ifdef IRC_NAMESPACE

Expand Down
1 change: 1 addition & 0 deletions src/imports/qml1/plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ class CommuniPlugin : public QDeclarativeExtensionPlugin
qmlRegisterType<Irc>(uri, 3, 4, "Irc");
qmlRegisterType<Irc>(uri, 3, 5, "Irc");
qmlRegisterType<Irc>(uri, 3, 6, "Irc");
qmlRegisterType<Irc>(uri, 3, 7, "Irc");
qmlRegisterType<IrcCommand>(uri, 3, 0, "IrcCommand");
qmlRegisterType<IrcConnection>(uri, 3, 0, "IrcConnection");
qmlRegisterUncreatableType<IrcMessage>(uri, 3, 0, "IrcMessage", "Cannot create an instance of IrcMessage. Use IrcConnection::messageReceived() signal instead.");
Expand Down
1 change: 1 addition & 0 deletions src/imports/qml2/plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ class CommuniPlugin : public QQmlExtensionPlugin
qmlRegisterType<Irc>(uri, 3, 4, "Irc");
qmlRegisterType<Irc>(uri, 3, 5, "Irc");
qmlRegisterType<Irc>(uri, 3, 6, "Irc");
qmlRegisterType<Irc>(uri, 3, 7, "Irc");
qmlRegisterType<IrcCommand>(uri, 3, 0, "IrcCommand");
qmlRegisterType<IrcConnection>(uri, 3, 0, "IrcConnection");
qmlRegisterUncreatableType<IrcMessage>(uri, 3, 0, "IrcMessage", QStringLiteral("Cannot create an instance of IrcMessage. Use IrcConnection::messageReceived() signal instead."));
Expand Down
5 changes: 3 additions & 2 deletions src/imports/qml2/plugins.qmltypes
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,10 @@ Module {
"Communi/Irc 3.3",
"Communi/Irc 3.4",
"Communi/Irc 3.5",
"Communi/Irc 3.6"
"Communi/Irc 3.6",
"Communi/Irc 3.7"
]
exportMetaObjectRevisions: [0, 0, 0, 0, 0, 0]
exportMetaObjectRevisions: [0, 0, 0, 0, 0, 0, 0]
Enum {
name: "Color"
values: {
Expand Down
2 changes: 1 addition & 1 deletion version.pri
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Communi
######################################################################

IRC_VERSION = 3.6.0
IRC_VERSION = 3.7.0

0 comments on commit d1625e5

Please sign in to comment.