Skip to content

Commit

Permalink
Release v5.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
arobenko committed Mar 14, 2024
2 parents c232e08 + 0c7f178 commit e03ddf6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ Since **v5.0** this project uses and requires minimum **C++17** support from the
# Developing Custom Socket/Filter/Protocol Plugin
The full tutorial as well as API documentation can be downloaded as
**doc_cc_tools_qt_vX.zip** archive from
from [release artefacts](https://github.com/commschamp/cc_tools_qt/releases).
from [release artefacts](https://github.com/commschamp/cc_tools_qt/releases) or
the latest version can be browsed [online](https://commschamp.github.io/cc_tools_qt_doc).

# Branching Model
This repository will follow the
Expand Down
2 changes: 1 addition & 1 deletion lib/include/cc_tools_qt/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#define CC_TOOLS_QT_MINOR_VERSION 1U

/// @brief Patch level of the library
#define CC_TOOLS_QT_PATCH_VERSION 0U
#define CC_TOOLS_QT_PATCH_VERSION 1U

/// @brief Macro to create numeric version as single unsigned number
#define CC_TOOLS_QT_MAKE_VERSION(major_, minor_, patch_) \
Expand Down
3 changes: 2 additions & 1 deletion lib/src/MsgMgrImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,8 @@ void MsgMgrImpl::sendMsgs(MessagesList&& msgs)

QList <DataInfoPtr> data;
data.append(std::move(dataInfoPtr));
for (auto& filter : m_filters) {
for (auto iter = m_filters.rbegin(); iter != m_filters.rend(); ++iter) {
auto& filter = *iter;
if (data.isEmpty()) {
break;
}
Expand Down

0 comments on commit e03ddf6

Please sign in to comment.