comparison finch/finch.c @ 27994:c43c87965db9

merge of '2c429e7e623da14e68de42a031909190e1f9dbac' and '481dcc62a70f66aaa407732e9195d711b6d6b17c'
author Etan Reisner <pidgin@unreliablesource.net>
date Wed, 22 Jul 2009 02:36:28 +0000
parents f7c5bb2f6623
children cc8f641d2fde
comparison
equal deleted inserted replaced
27972:605b950f4644 27994:c43c87965db9
18 * You should have received a copy of the GNU General Public License 18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software 19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
21 */ 21 */
22 #include "finch.h" 22 #include "finch.h"
23 #include <internal.h>
23 24
24 #include "account.h" 25 #include "account.h"
25 #include "conversation.h" 26 #include "conversation.h"
26 #include "core.h" 27 #include "core.h"
27 #include "debug.h" 28 #include "debug.h"
64 g_hash_table_insert(ui_info, "name", (char*)_("Finch")); 65 g_hash_table_insert(ui_info, "name", (char*)_("Finch"));
65 g_hash_table_insert(ui_info, "version", VERSION); 66 g_hash_table_insert(ui_info, "version", VERSION);
66 g_hash_table_insert(ui_info, "website", "http://pidgin.im"); 67 g_hash_table_insert(ui_info, "website", "http://pidgin.im");
67 g_hash_table_insert(ui_info, "dev_website", "http://developer.pidgin.im"); 68 g_hash_table_insert(ui_info, "dev_website", "http://developer.pidgin.im");
68 g_hash_table_insert(ui_info, "client_type", "console"); 69 g_hash_table_insert(ui_info, "client_type", "console");
70
71 /*
72 * This is the client key for "Finch." It is owned by the AIM
73 * account "markdoliner." Please don't use this key for other
74 * applications. You can either not specify a client key, in
75 * which case the default "libpurple" key will be used, or you
76 * can register for your own client key at
77 * http://developer.aim.com/manageKeys.jsp
78 */
79 g_hash_table_insert(ui_info, "prpl-aim-clientkey", "ma19sqWV9ymU6UYc");
80 g_hash_table_insert(ui_info, "prpl-icq-clientkey", "ma19sqWV9ymU6UYc");
81
82 /*
83 * This is the distid for Finch, given to us by AOL. Please
84 * don't use this for other applications. You can just not
85 * specify a distid and libpurple will use a default.
86 */
87 g_hash_table_insert(ui_info, "prpl-aim-distid", GINT_TO_POINTER(1552));
88 g_hash_table_insert(ui_info, "prpl-icq-distid", GINT_TO_POINTER(1552));
69 } 89 }
70 90
71 return ui_info; 91 return ui_info;
72 } 92 }
73 93