summaryrefslogtreecommitdiff
path: root/protocols/JabberG
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-08-03 12:23:43 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-08-03 12:23:43 +0000
commit158516fc55b5e38fd3d5cd67150cc85a5162f76b (patch)
tree6d51fec36e05c36d842287b8b20c624acb53d234 /protocols/JabberG
parent428dc4b401dbadfb37282789dfb95f74726cf4f3 (diff)
all protos got their own versions, but they still pass the core version to the outside world
git-svn-id: http://svn.miranda-ng.org/main/trunk@1335 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG')
-rw-r--r--protocols/JabberG/jabber_caps.cpp3
-rw-r--r--protocols/JabberG/version.h7
2 files changed, 5 insertions, 5 deletions
diff --git a/protocols/JabberG/jabber_caps.cpp b/protocols/JabberG/jabber_caps.cpp
index 9656264071..176fd135ac 100644
--- a/protocols/JabberG/jabber_caps.cpp
+++ b/protocols/JabberG/jabber_caps.cpp
@@ -25,6 +25,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "jabber_iq.h"
#include "jabber_caps.h"
#include "version.h"
+#include <m_version.h>
const JabberFeatCapPair g_JabberFeatCapPairs[] = {
{ _T(JABBER_FEAT_DISCO_INFO), JABBER_CAPS_DISCO_INFO, _T("Supports Service Discovery info"), },
@@ -694,7 +695,7 @@ BOOL CJabberClientCapsManager::HandleInfoRequest( HXML, CJabberIqInfo* pInfo, co
form << XCHILD( _T("field")) << XATTR( _T("var"), _T("os_version")) << XCHILD( _T("value"), os );
}
form << XCHILD( _T("field")) << XATTR( _T("var"), _T("software")) << XCHILD( _T("value"), _T("Miranda NG Jabber Protocol"));
- form << XCHILD( _T("field")) << XATTR( _T("var"), _T("software_version")) << XCHILD( _T("value"), _T(__VERSION_STRING));
+ form << XCHILD( _T("field")) << XATTR( _T("var"), _T("software_version")) << XCHILD( _T("value"), _T(MIRANDA_VERSION_STRING));
form << XCHILD( _T("field")) << XATTR( _T("var"), _T("x-miranda-core-version")) << XCHILD( _T("value"), szCoreVersion );
#ifdef _DEBUG
diff --git a/protocols/JabberG/version.h b/protocols/JabberG/version.h
index fead11179a..cf7a422dc2 100644
--- a/protocols/JabberG/version.h
+++ b/protocols/JabberG/version.h
@@ -1,4 +1,3 @@
-#define __FILEVERSION_STRING 0,92,2,0
-#define __VERSION_STRING "0.92.2.0"
-#define __VERSION_DWORD PLUGIN_MAKE_VERSION(0, 92, 2, 0)
-
+#define __FILEVERSION_STRING 0,11,0,1
+#define __VERSION_STRING "0.11.0.1"
+#define __VERSION_DWORD PLUGIN_MAKE_VERSION(0,11,0,1)