diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-01-29 12:22:13 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-01-29 12:22:13 +0000 |
commit | 7e367862550616802b29a38067bbc1b49e81a10c (patch) | |
tree | 2fcb8659f8d9eed09dfc05657fab32a7f16aca72 /protocols/JabberG/src/jabber_caps.cpp | |
parent | 470cb1075fa98894cdb557464b183a00a6de63bf (diff) |
added new_gpg caps
git-svn-id: http://svn.miranda-ng.org/main/trunk@3336 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber_caps.cpp')
-rw-r--r-- | protocols/JabberG/src/jabber_caps.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/protocols/JabberG/src/jabber_caps.cpp b/protocols/JabberG/src/jabber_caps.cpp index 57ac7d77da..5f5fb36346 100644 --- a/protocols/JabberG/src/jabber_caps.cpp +++ b/protocols/JabberG/src/jabber_caps.cpp @@ -58,6 +58,7 @@ const JabberFeatCapPair g_JabberFeatCapPairs[] = { { _T(JABBER_FEAT_PUBSUB), JABBER_CAPS_PUBSUB, _T("Supports generic publish-subscribe functionality") },
{ _T(JABBER_FEAT_SECUREIM), JABBER_CAPS_SECUREIM, _T("Supports SecureIM plugin for Miranda NG") },
{ _T(JABBER_FEAT_MIROTR), JABBER_CAPS_MIROTR, _T("Supports MirOTR plugin for Miranda NG") },
+ { _T(JABBER_FEAT_NEWGPG), JABBER_CAPS_NEWGPG, _T("Supports New_GPG plugin for Miranda NG") },
{ _T(JABBER_FEAT_PRIVACY_LISTS), JABBER_CAPS_PRIVACY_LISTS, _T("Can block communications from particular other users using Privacy lists") },
{ _T(JABBER_FEAT_MESSAGE_RECEIPTS), JABBER_CAPS_MESSAGE_RECEIPTS, _T("Supports Message Receipts") },
{ _T(JABBER_FEAT_USER_TUNE), JABBER_CAPS_USER_TUNE, _T("Can report information about the music to which a user is listening") },
@@ -79,6 +80,7 @@ const JabberFeatCapPair g_JabberFeatCapPairs[] = { const JabberFeatCapPair g_JabberFeatCapPairsExt[] = {
{ _T(JABBER_EXT_SECUREIM), JABBER_CAPS_SECUREIM },
{ _T(JABBER_EXT_MIROTR), JABBER_CAPS_MIROTR },
+ { _T(JABBER_EXT_NEWGPG), JABBER_CAPS_NEWGPG },
{ _T(JABBER_EXT_COMMANDS), JABBER_CAPS_COMMANDS },
{ _T(JABBER_EXT_USER_MOOD), JABBER_CAPS_USER_MOOD_NOTIFY },
{ _T(JABBER_EXT_USER_TUNE), JABBER_CAPS_USER_TUNE_NOTIFY },
|