diff options
-rw-r--r-- | metacontacts/meta_utils.c | 6 | ||||
-rw-r--r-- | metacontacts/version.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/metacontacts/meta_utils.c b/metacontacts/meta_utils.c index f844f99..1121cf3 100644 --- a/metacontacts/meta_utils.c +++ b/metacontacts/meta_utils.c @@ -664,10 +664,10 @@ BOOL dbv_same(DBVARIANT *dbv1, DBVARIANT *dbv2) { }
}
-const char *ProtoSettings[24] =
+const char *ProtoSettings[25] =
{"BirthDay", "BirthMonth", "BirthYear", "Age", "Cell", "Cellular", "Homepage", "email", "Email", "e-mail",
"FirstName", "MiddleName", "LastName", "Title", "Timezone", "Gender", "MirVer", "ApparentMode", "IdleTS", "LogonTS", "IP", "RealIP",
- "Auth", "ListeningTo"};
+ "Auth", "ListeningTo", "Country"};
const char *UserInfoSettings[71] =
{"NickName", "FirstName", "MiddleName", "LastName", "Title", "Timezone", "Gender", "DOBd", "DOBm", "DOBy",
"Mye-mail0", "Mye-mail1", "MyPhone0", "MyPhone1", "MyNotes", "PersonalWWW",
@@ -748,7 +748,7 @@ void Meta_CopyData(HANDLE hMeta) { if(options.copydata) {
CopyStatusData(hMeta);
- copy_settings_array(hMeta, 0, ProtoSettings, 24);
+ copy_settings_array(hMeta, 0, ProtoSettings, 25);
copy_settings_array(hMeta, "mBirthday", UserInfoSettings, 3);
copy_settings_array(hMeta, "ContactPhoto", ContactPhotoSettings, 5);
diff --git a/metacontacts/version.h b/metacontacts/version.h index d172e9f..7649453 100644 --- a/metacontacts/version.h +++ b/metacontacts/version.h @@ -5,7 +5,7 @@ #define __MAJOR_VERSION 0
#define __MINOR_VERSION 13
#define __RELEASE_NUM 0
-#define __BUILD_NUM 1
+#define __BUILD_NUM 2
#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
#define __FILEVERSION_STRING_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM
|