comparison pidgin/gtkmain.c @ 27503: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 ecdc58da4cdd
children 74e487f82f39
comparison
equal deleted inserted replaced
27502:4813810ea7d4 27503:88ef8c38a639
354 g_hash_table_insert(ui_info, "name", (char*)PIDGIN_NAME); 354 g_hash_table_insert(ui_info, "name", (char*)PIDGIN_NAME);
355 g_hash_table_insert(ui_info, "version", VERSION); 355 g_hash_table_insert(ui_info, "version", VERSION);
356 g_hash_table_insert(ui_info, "website", "http://pidgin.im"); 356 g_hash_table_insert(ui_info, "website", "http://pidgin.im");
357 g_hash_table_insert(ui_info, "dev_website", "http://developer.pidgin.im"); 357 g_hash_table_insert(ui_info, "dev_website", "http://developer.pidgin.im");
358 g_hash_table_insert(ui_info, "client_type", "pc"); 358 g_hash_table_insert(ui_info, "client_type", "pc");
359
360 /*
361 * This is the client key for "Pidgin." It is owned by the AIM
362 * account "markdoliner." Please don't use this key for other
363 * applications. You can either not specify a client key, in
364 * which case the default "libpurple" key will be used, or you
365 * can register for your own client key at
366 * http://developer.aim.com/manageKeys.jsp
367 */
368 g_hash_table_insert(ui_info, "prpl-aim-clientkey", "ma1cSASNCKFtrdv9");
369 g_hash_table_insert(ui_info, "prpl-icq-clientkey", "ma1cSASNCKFtrdv9");
359 } 370 }
360 371
361 return ui_info; 372 return ui_info;
362 } 373 }
363 374