diff --git a/README.md b/README.md index f59e5d8..a947279 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/lib/include/cc_tools_qt/version.h b/lib/include/cc_tools_qt/version.h index 61f97bb..45aaa0e 100644 --- a/lib/include/cc_tools_qt/version.h +++ b/lib/include/cc_tools_qt/version.h @@ -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_) \ diff --git a/lib/src/MsgMgrImpl.cpp b/lib/src/MsgMgrImpl.cpp index 82c809d..87da882 100644 --- a/lib/src/MsgMgrImpl.cpp +++ b/lib/src/MsgMgrImpl.cpp @@ -186,7 +186,8 @@ void MsgMgrImpl::sendMsgs(MessagesList&& msgs) QList 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; }