-
Notifications
You must be signed in to change notification settings - Fork 196
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement MIX message, presence and roster extensions #175
Implement MIX message, presence and roster extensions #175
Conversation
e569ed3
to
1bfbe65
Compare
Codecov Report
@@ Coverage Diff @@
## master #175 +/- ##
==========================================
+ Coverage 65.88% 66.12% +0.23%
==========================================
Files 148 147 -1
Lines 14849 14962 +113
==========================================
+ Hits 9783 9893 +110
- Misses 5066 5069 +3
Continue to review full report at Codecov.
|
1bfbe65
to
36cc8e9
Compare
36cc8e9
to
b0642a4
Compare
b0642a4
to
229402a
Compare
If the ABI break is a problem for you, you could maybe merge everything into a new develop branch or something like this. |
I do not think that ABI breaks may be a problem for now. Because we only at the beginning of a way of introducing the practice of maintaining of stable ABI in qxmpp. |
Is there anything because this pull request can't be merged? |
@jlaine Please come back from your reviewing holidays :) |
This implements the new message extension specified by XEP-0369: Mediated Information eXchange (MIX) in version 0.14.2. https://xmpp.org/extensions/xep-0369.html#usecase-user-message
This implements the new presence extension defined by XEP-0405: Mediated Information eXchange (MIX): Participant Server Requirements in version 0.4.0. https://xmpp.org/extensions/xep-0405.html#usecase-user-presence-receive
This adds the MIX extensions for roster queries as defined in XEP-0405: Mediated Information eXchange (MIX): Participant Server Requirements in version 0.4.0. https://xmpp.org/extensions/xep-0405.html#mix-roster-capability-sharing
229402a
to
e63698c
Compare
Updated implementation to latest XEP version. |
@@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.2) | |||
set(VERSION_MAJOR 1) | |||
set(VERSION_MINOR 0) | |||
set(VERSION_PATCH 1) | |||
set(SO_VERSION 1) | |||
set(SO_VERSION 2) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks unrelated to this PR.
Update: ah shit, roster IQ ABI changed, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, that's the problem.
I wish someone else would take part in the review process.. It's a bit daunting when there are 20 PRs to review! |
@jlaine Thanks for merging! :)
I'd like to do so, but I also can't review my own pull requests. |
No description provided.