comparison finch/finch.c @ 27426:88ef8c38a639

Use a custom clientkey for AIM and ICQ for Pidgin and Finch
author Mark Doliner <mark@kingant.net>
date Wed, 08 Jul 2009 19:15:31 +0000
parents a95eed74fdd7
children 74e487f82f39
comparison
equal deleted inserted replaced
27425:4813810ea7d4 27426:88ef8c38a639
64 g_hash_table_insert(ui_info, "name", (char*)_("Finch")); 64 g_hash_table_insert(ui_info, "name", (char*)_("Finch"));
65 g_hash_table_insert(ui_info, "version", VERSION); 65 g_hash_table_insert(ui_info, "version", VERSION);
66 g_hash_table_insert(ui_info, "website", "http://pidgin.im"); 66 g_hash_table_insert(ui_info, "website", "http://pidgin.im");
67 g_hash_table_insert(ui_info, "dev_website", "http://developer.pidgin.im"); 67 g_hash_table_insert(ui_info, "dev_website", "http://developer.pidgin.im");
68 g_hash_table_insert(ui_info, "client_type", "console"); 68 g_hash_table_insert(ui_info, "client_type", "console");
69
70 /*
71 * This is the client key for "Finch." It is owned by the AIM
72 * account "markdoliner." Please don't use this key for other
73 * applications. You can either not specify a client key, in
74 * which case the default "libpurple" key will be used, or you
75 * can register for your own client key at
76 * http://developer.aim.com/manageKeys.jsp
77 */
78 g_hash_table_insert(ui_info, "prpl-aim-clientkey", "ma19sqWV9ymU6UYc");
79 g_hash_table_insert(ui_info, "prpl-icq-clientkey", "ma19sqWV9ymU6UYc");
69 } 80 }
70 81
71 return ui_info; 82 return ui_info;
72 } 83 }
73 84