summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsje <sje@4f64403b-2f21-0410-a795-97e2b3489a10>2007-05-22 14:17:01 +0000
committersje <sje@4f64403b-2f21-0410-a795-97e2b3489a10>2007-05-22 14:17:01 +0000
commit4e3c713c6ede8936a30339a0263b6271dc579042 (patch)
tree09ca47cd37f730585af92242235bebef933a37a1
parent6848bc1605ad428ef21a8495a1117801fec01265 (diff)
added 'Proto/Country' to copied data
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@175 4f64403b-2f21-0410-a795-97e2b3489a10
-rw-r--r--metacontacts/meta_utils.c6
-rw-r--r--metacontacts/version.h2
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