-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathChangeLog.API
2840 lines (2694 loc) · 110 KB
/
ChangeLog.API
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Pidgin and Finch: The Pimpin' Penguin IM Clients That're Good for the Soul
This file intends to list all changes to libpurple, Pidgin, and Finch's public
API. We sometimes forget to add changes to this file--sorry.
If your plugin fails to build with a new major version (e.g. 3.0.0) we
suggest checking this list first, in case a function was simply renamed.
You may still need to consult our API docs or our source code.
If you notice something missing from this list, please let us know and we'll
add it.
version 3.0.0 (??/??/????):
libpurple:
Added:
* displaying-emails-clear signal (notification signal)
* purple_gdk_pixbuf_make_round
* purple_gdk_pixbuf_is_opaque
* purple_gdk_pixbuf_from_data
* purple_gdk_pixbuf_from_image
* purple_gdk_pixbuf_new_from_file
* purple_gdk_pixbuf_new_from_file_at_size
* PurplePluginInfoFlags (PURPLE_PLUGIN_INFO_FLAGS_INTERNAL and
PURPLE_PLUGIN_INFO_FLAGS_AUTO_LOAD)
* purple_plugin_get_dependent_plugins
* purple_plugin_is_internal
* purple_plugin_info_new
* purple_plugin_get_info
* purple_plugin_info_get_error
* purple_plugin_info_get_extra_cb
* purple_plugin_info_get_pref_frame_cb
* purple_plugin_info_get_pref_request_cb
* purple_plugin_info_get_ui_data
* purple_plugin_info_set_ui_data
* PurpleProtocol, inherits GObject. Please see the documentation for
details.
* PurpleProtocolAction
* PurpleProtocolOverrideFlags
* PurpleProtocolClientIface
* PurpleProtocolServerIface
* PurpleProtocolChatIface
* PurpleProtocolXferIface
* PurpleProtocolRoomlistIface
* PurpleProtocolMediaIface
* PurpleProtocolFactoryIface
* purple_protocol_get_* for PurpleProtocol members
* purple_protocol_class_* for class methods
* purple_protocol_server_iface_* for server interface methods
* purple_protocol_factory_iface_* for factory interface methods
* purple_protocol_action_new
* purple_protocol_action_free
* purple_request_certificate
* purple_request_field_certificate_new
* purple_request_field_certificate_get_value
* purple_request_field_choice_add_full
* purple_request_field_get_tooltip
* purple_request_field_group_get_fields_list
* purple_request_field_list_has_icons
* purple_request_field_set_tooltip
* purple_request_fields_get_ui_data
* purple_request_fields_set_ui_data
* purple_roomlist_get_account
* purple_roomlist_get_proto_data
* purple_roomlist_room_get_expanded_once
* purple_roomlist_room_set_expanded_once
* purple_roomlist_set_proto_data
* purple_whiteboard_get_account
* purple_whiteboard_get_draw_list
* purple_whiteboard_set_draw_list
* purple_whiteboard_get_protocol_data
* purple_whiteboard_set_protocol_data
* purple_whiteboard_get_state
* purple_whiteboard_set_state
* purple_whiteboard_get_ui_data
* purple_whiteboard_set_ui_data
* purple_whiteboard_get_who
* purple_xfer_get_fd
* purple_xfer_get_message
* purple_xfer_get_protocol_data
* purple_xfer_get_ui_data
* purple_xfer_get_watcher
* purple_xfer_set_fd
* purple_xfer_set_local_port
* purple_xfer_set_protocol_data
* purple_xfer_set_remote_user
* purple_xfer_set_status
* purple_xfer_set_ui_data
* purple_xfer_set_watcher
* purple_xmlnode_get_default_namespace
* purple_xmlnode_strip_prefixes
Changed:
* account.h has been split into account.h (PurpleAccount GObject) and
accounts.h (Accounts subsystem)
* blist.h has been split into buddylist.h (PurpleBuddyList and
subsystem), blistnode.h (PurpleBlistNode and PurpleCountingNode
GObjects), blistnodetypes (Buddy, Chat, Contact, Group GObjects)
* circbuffer.h renamed to circularbuffer.h
* conversation.h has been split into conversation.h
(PurpleConversation), conversationtypes.h (PurpleIMConversation and
PurpleChatConversation) and conversations.h (Conversations subsystem)
* Renamed ft.h file to xfer.h
* Renamed plugin.h file to plugins.h
* prpl.h has been split into protocol.h (PurpleProtocol GObject and
protocol interfaces) and protocols.h (protocols subsystem)
* status.h has been split into status.h (Status API) and presence.h
(Presence API)
* account-authorization-requested signal merged with
account-authorization-requested-with-message signal
* purple_account_add_buddy now takes an invite message as the last
parameter
* purple_account_add_buddies now takes an invite message as the last
parameter
* PurpleAccount is now a GObject. Please see the documentation for
details.
* purple_account_get_alias renamed to purple_account_get_private_alias
* purple_account_set_alias renamed to purple_account_set_private_alias
* purple_account_set_status_list renamed to
purple_account_set_status_attrs
* purple_account_option_get_type renamed to
purple_account_option_get_pref_type
* PurplePrivacyType renamed to PurpleAccountPrivacyType
* purple_privacy_* functions are now purple_account_privacy_*
* Removed arguments local and restore from purple_account_privacy_allow
and purple_account_privacy_deny
* PurpleBlistNode is now a GObject. Please see the documentation for
details.
* purple_blist_alias_buddy renamed to purple_buddy_set_local_alias
* purple_blist_alias_chat renamed to purple_chat_set_alias
* purple_blist_alias_contact renamed to purple_contact_set_alias
* purple_blist_get_root now takes a PurpleBuddyList parameter;
use purple_blist_get_default_root to work on the default buddy
list as before
* purple_blist_merge_contact renamed to purple_contact_merge
* purple_blist_rename_buddy renamed to purple_buddy_set_name
* purple_blist_rename_group renamed to purple_group_set_name
* purple_blist_server_alias_buddy renamed to
* purple_blist_update_buddy_status renamed to purple_buddy_update_status
purple_buddy_set_server_alias
* purple_buddy_get_local_buddy_alias renamed to
purple_buddy_get_local_alias
* PurpleContact and PurpleGroup inherit PurpleCountingNode
* PurpleBuddyList is now a GObject. Please see the documentation for
details.
* purple_find_buddies renamed to purple_blist_find_buddies
* purple_find_buddy_in_group renamed to purple_blist_find_buddy_in_group
* purple_find_buddy renamed to purple_blist_find_buddy
* purple_find_group renamed to purple_blist_find_group
* purple_get_blist renamed to purple_blist_get_default
* PurpleBuddyIconSpec has been moved to buddyicon.h
* purple_certificate_check_signature_chain now returns a list of failing
PurpleCertificate*s as the second parameter
* PurpleConversation is now an abstract type, and is a GObject. Please
see the documentation for details.
* purple_conv_* functions are now purple_conversation_*
* purple_conv_im_* functions are now purple_im_conversation_*
* purple_conv_chat_* functions are now purple_chat_conversation_*
* purple_chat_conversation_find_user renamed to
purple_chat_conversation_has_user
* PurpleTypingState renamed to PurpleIMTypingState
* PurpleConvChatBuddy changed to PurpleChatUser, is now a GObject.
Please see the documentation for details.
* purple_conv_chat_cb_* functions are now purple_chat_user_*
* Replaced 'chat-buddy' with 'chat-user' in conversation signals
* Replaced chatname, buddyname arguments of 'chat-user-flags' (formerly
'chat-buddy-flags') signal with PurpleChatUser *
* PurpleCircBuffer changed to PurpleCircularBuffer, is now a GObject.
Please see the documentation for details.
* purple_circ_buffer_* functions are now purple_circular_buffer_*
* purple_connection_error now takes a PurpleConnectionError
as the second parameter
* PurpleConnection is now a GObject. Please see the documentation for
details.
* PURPLE_CONNECTION_* prefix of PurpleConnectionFlag enum names changed
to PURPLE_CONNECTION_FLAG_*
* PURPLE_* prefix of PurpleConnectionState enum names changed to
PURPLE_CONNECTION_*
* purple_conversation_get_gc renamed to
purple_conversation_get_connection
* purple_dnsquery_a now takes a PurpleAccount as the first parameter
* PurpleIconScaleRules renamed to PurpleBuddyIconScaleFlags
* purple_imgstore_add renamed to purple_imgstore_new
* purple_imgstore_add_with_id renamed to purple_imgstore_new_with_id
* PurpleLog, purple_log_new, purple_log_write and
PurpleLogLogger->write take a GDateTime instead of a time_t
and struct tm
* purple_media_add_stream and purple_media_backend_add_stream
(and its interface vfunc) and take a hash table of
string->GValue parameters instead of an array of GParameter
* purple_media_set_params and purple_media_backend_set_params
(and its interface vfunc) take a hash table of
string->GValue parameters instead of an array of GParameter
* PurpleNotifyMsgType renamed to PurpleNotifyMessageType
* purple_notify_user_info_add_pair renamed to
purple_notify_user_info_add_pair_html
* purple_notify_user_info_get_entries returns a GQueue instead of
a GList
* purple_notify_user_info_entry_get_type renamed to
purple_notify_user_info_entry_get_entry_type
* purple_notify_user_info_entry_set_type renamed to
purple_notify_user_info_entry_set_entry_type
* purple_notify_user_info_prepend_pair renamed to
purple_notify_user_info_prepend_pair_html
* PurplePlugin is now a GObject (alias for GPluginPlugin). Please see
the documentation for details.
* PurplePluginInfo is now a GObject, inherits GPluginPluginInfo. Please
see the documentation for details.
* PURPLE_INIT_PLUGIN(pluginname, initfunc, plugininfo) is now
PURPLE_PLUGIN_INIT(pluginname, query_func, load_func, unload_func).
See "C Plugins tutorial" (tut_c_plugins.xml) for an example.
* purple_plugin_load and purple_plugin_unload now use an error argument
to return load/unload errors
* purple_plugins_get_all is now purple_plugins_find_all, and the
returned list of plugins MUST be free'd using g_list_free
* purple_plugin_get_* functions for plugin info are now
purple_plugin_info_get_*
* purple_plugin_get_author is now purple_plugin_info_get_authors, and
returns a NULL-terminated list of authors
* purple_plugins_probe is now purple_plugins_refresh
* purple_plugins_find_with_id renamed to purple_plugins_find_plugin
* purple_plugins_find_with_filename renamed to
purple_plugins_find_by_filename
* purple_plugin_pref_get_type renamed to
purple_plugin_pref_get_pref_type
* purple_plugin_pref_set_type renamed to
purple_plugin_pref_set_pref_type
* purple_prefs_get_type renamed to purple_prefs_get_pref_type
* proto_chat_entry has been renamed to PurpleProtocolChatEntry
* PurpleProxyType members are now name spaced under PURPLE_PROXY_TYPE_*
* purple_proxy_info_get_host renamed to purple_proxy_info_get_hostname
* purple_proxy_info_get_type renamed to purple_proxy_info_get_proxy_type
* purple_proxy_info_set_host renamed to purple_proxy_info_set_hostname
* purple_proxy_info_set_type renamed to purple_proxy_info_set_proxy_type
* purple_request_field_get_type renamed to
purple_request_field_get_field_type
* PurpleRoomlist is now a GObject. Please see the documentation for
details.
* purple_request_field_group_get_tab
* purple_request_field_group_set_tab
* purple_request_field_list_get_items now returns list of PurpleKeyValuePair
* purple_request_fields_get_tab_names
* purple_request_fields_set_tab_names
* purple_roomlist_room_get_type is now
purple_roomlist_room_get_room_type
* purple_roomlist_field_get_type is now
purple_roomlist_field_get_field_type
* purple_savedstatus_get_type renamed to
purple_savedstatus_get_primitive_type
* purple_savedstatus_set_type renamed to
purple_savedstatus_set_primitive_type
* purple_savedstatus_substatus_get_type renamed to
purple_savedstatus_substatus_get_status_type
* serv_* functions are now purple_serv_*
* purple_srv_resolve now takes a PurpleAccount as the first parameter
* purple_srv_txt_query_get_type renamed to
purple_srv_txt_query_get_query_type
* PurpleStatus is now a GObject. Please see the documentation for
details.
* purple_status_attr_* functions are now purple_status_attribute_*
* purple_status_set_active_with_attrs_list renamed to
purple_status_set_active_with_attrs_dict
* PurpleStatusAttr renamed to PurpleStatusAttribute
* PurplePresence is now an abstract type, and is a GObject. Please see
the documentation for details.
* update_idle method has been added to PurplePresenceClass to update the
idle state of a presence
* StunCallback renamed to PurpleStunCallback
* purple_str_size_to_units now takes a goffset as the size parameter
* PTFunc renamed to PurpleThemeFunc
* purple_txt_resolve now takes a PurpleAccount as the first parameter
* purple_upnp_remove_port_mapping no longer returns anything
* purple_upnp_set_port_mapping no longer returns anything
* purple_util_fetch_url_request now takes a PurpleAccount as
the first parameter
* purple_util_fetch_url_request now takes a length as the eighth
parameter
* purple_util_fetch_url_len now takes a length as the fifth parameter
* purple_uuid_random. Use g_uuid_string_random.
* PurpleWhiteboard is now a GObject. Please see the documentation for
details.
* purple_value_destroy is now purple_value_free
* purple_value_new, purple_value_dup and purple_value_free now operate
on GValue instead of PurpleValue
* Signal registration now uses GTypes instead of PurpleValues. See
SIGNAL-HOWTO for more information.
* purple_whiteboard_create renamed to purple_whiteboard_new
* purple_xfer_get_bytes_remaining now returns a goffset
* purple_xfer_get_bytes_sent now returns a goffset
* purple_xfer_get_size now returns a goffset
* purple_xfer_is_canceled renamed to purple_xfer_is_cancelled
* PurpleXfer is now a GObject. Please see the documentation for details.
* purple_xfer_get_type renamed to purple_xfer_get_xfer_type
* PurpleXferStatusType renamed to PurpleXferStatus
* PURPLE_XFER_* prefix of PurpleXferType enums changed to
PURPLE_XFER_TYPE_*
* purple_xfer_set_bytes_sent now takes a goffset as the bytes_sent
parameter
* purple_xfer_set_size now takes a goffset as the size parameter
* PurpleCertificateVerificationStatus enumeration is now merged with
internal flags, thus removing PURPLE_CERTIFICATE_INVALID and
replacing it with more precise errors.
* PurpleConnectionUiOps.report_disconnect now passes a
PurpleConnectionError as the second parameter
* PurpleXfer.bytes_remaining is now a goffset
* PurpleXfer.bytes_sent is now a goffset
* PurpleXfer.size is now a goffset
* PurpleCertificateScheme.get_times now uses gint64 instead of
time_t to represent times
* purple_certificate_get_times now uses gint64 instead of
time_t to represent times
* xmlnode renamed to PurpleXmlNode
* XMLNodeType renamed to PurpleXmlNodeType
* xmlnode_* functions are now purple_xmlnode_*
Removed:
* buddy-added and buddy-removed blist signals
* privacy.h file
* value.h file
* _PurpleCmdFlag
* _PurpleCmdPriority
* _PurpleCmdRet
* _PurpleCmdStatus
* _PurplePrefType
* _PurplePrivacyType
* _PurpleSoundEventID
* _PurpleSslConnection
* _XMLNodeType
* account-authorization-requested-with-message signal
* file-recv-accept, file-recv-cancel, file-recv-complete,
file-recv-start, file-send-accept, file-send-cancel,
file-send-complete, file-send-start signals. Use
notify::status on #PurpleXfer objects instead.
* network-configuration-changed signal
* PurpleAccount->ui_data
* PurpleAccountPrefsUiOps
* PurpleAccountRequestAuthorizationCb
* PurpleAccountRequestType
* PurpleAccountUiOps:close_account_request
* PurpleAccountUiOps:request_add
* PurpleAccountUiOps:request_authorization
* purple_account_add_buddies_with_invite
* purple_account_add_buddy_with_invite
* purple_account_destroy_log
* purple_account_get_check_mail
* purple_account_get_log
* purple_account_get_password. Use
purple_credential_manager_read_password_async instead.
* purple_account_get_public_alias
* purple_account_get_ui_int
* purple_account_get_ui_string
* purple_account_get_ui_bool
* purple_account_notify_added
* purple_account_request_authorization
* purple_account_request_close
* purple_account_set_check_mail
* purple_account_set_current_error
* purple_account_set_password. Use
purple_credential_manager_write_password_async instead.
* purple_account_set_public_alias
* purple_account_set_ui_int
* purple_account_set_ui_string
* purple_account_set_ui_bool
* purple_accounts_add
* purple_accounts_find
* purple_accounts_get_all
* purple_accounts_get_all_active
* purple_accounts_remove
* purple_accounts_reorder
* PurpleAttentionType
* purple_attention_type_set_name
* purple_attention_type_set_incoming_desc
* purple_attention_type_set_outgoing_desc
* purple_attention_type_set_icon_name
* purple_attention_type_set_unlocalized_name
* purple_attention_type_get_name
* purple_attention_type_get_incoming_desc
* purple_attention_type_get_outgoing_desc
* purple_attention_type_get_icon_name
* purple_attention_type_get_unlocalized_name
* purple_base16_*
* purple_base64_*. Use g_base64_* instead
* purple_blist_get_ui_data
* purple_blist_load
* purple_blist_new
* purple_blist_node_get_ui_data
* purple_blist_node_set_ui_data
* purple_blist_set_ui_data
* purple_set_blist
* purple_blist_update_buddy_icon
* purple_buddy_get_local_alias
* purple_buddy_icons_has_custom_icon
* purple_buddy_icons_find_custom_icon
* purple_buddy_icons_set_custom_icon
* purple_build_dir. Use g_mkdir_with_parents instead
* PurpleCallback. Use GCallback instead
* PURPLE_CALLBACK. Use G_CALLBACK instead
* PurpleCertificateScheme
* PURPLE_CERTIFICATE_SCHEME_HAS_FUNC
* purple_certificate_check_signature_chain
* purple_certificate_check_signature_chain_with_failing
* purple_certificate_compare_pubkeys
* purple_certificate_display_x509
* purple_certificate_get_fingerprint_sha256
* Purple Cipher API (PurpleCipherContext and friends).
Use GLib's GHmac or GChecksum instead.
* PurpleCommandsUiOps
* purple_cmds_get_ui_ops
* purple_cmds_set_ui_ops
* PURPLE_CMD_FUNC
* purple_connection_error_reason
* PURPLE_CONNECTION_FLAG_ALLOW_CUSTOM_SMILEY
* purple_connection_new
* purple_connection_new_unregister
* purple_connection_notice
* purple_connection_destroy
* purple_connection_set_account
* purple_connection_ssl_error
* PurpleConnectionUiOps->connect_progress
* PurpleConnectionUiOps->notice
* purple_connection_update_progress
* purple_connections_get_connecting
* purple_contact_set_alias
* purple_conv_chat_set_users
* purple_conv_custom_smiley_add
* purple_conv_custom_smiley_close
* purple_conv_custom_smiley_write
* PurpleConversationType
* purple_conversation_add_smiley
* purple_conversation_close_logs
* purple_conversation_get_remote_smileys
* purple_conversation_get_smiley
* purple_conversation_is_logging
* purple_conversations_add. Use purple_conversation_manager_register
instead.
* purple_conversations_remove. Use
purple_conversation_manager_unregister instead.
* purple_conversations_get_all. Use purple_conversation_manager_get_all
instead.
* purple_conversations_find_with_account. Use
purple_conversation_manager_find instead.
* purple_conversations_find_im_with_account. Use
purple_conversation_manager_find_im instead.
* purple_conversations_find_chat_with_account. Use
purple_conversation_manager_find_chat instead.
* purple_conversations_find_chat. Use
purple_conversation_manager_find_chat_by_id instead.
* purple_conversation_set_logging
* purple_core_get_ui, use purple_core_get_ui_info instead.
* purple_core_ensure_single_instance. Check via GApplication
or whatever is appropriate for your UI.
* purple_core_migrate
* Removed the general Purple DBus interface
* purple_date_format_long, use g_date_time_format instead.
* purple_date_format_short, use g_date_time_format instead.
* PurpleDebugUiOps
* purple_debug_is_enabled
* purple_debug_set_colored
* purple_debug_set_enabled
* purple_dnsquery_a_account
* purple_event_loop_{get|set}_ui_ops. Manually drive the GLib
event loop yourself. See GLib Main Event Loop docs.
* PurpleEventLoopUiOps. Manually drive the GLib event loop
yourself. See GLib Main Event Loop docs.
* purple_fd_get_ip. Use GSocket instead.
* purple_find_pounce
* purple_gai_strerror
* PurpleGetPublicAliasSuccessCallback
* PurpleGetPublicAliasFailureCallback
* purple_get_attention_type_from_code
* purple_get_host_name. Use g_get_host_name, instead.
* purple_get_tzoff_str(). Use g_date_time_format, instead.
* PurpleIdleUiOps
* purple_idle_get_ui_ops
* purple_idle_set_ui_ops
* purple_idle_ui_ops_get_type
* purple_ip_address_is_valid, purple_ipv4_address_is_valid, and
purple_ipv6_address_is_valid. Use g_hostname_is_ip_address()
or #GInetAddress instead.
* purple_markup_extract_info_field
* purple_markup_get_css_property
* purple_markup_is_rtl
* purple_marshal_BOOLEAN__INT_POINTER
* purple_marshal_BOOLEAN__POINTER_POINTER_POINTER_POINTER_UINT
* purple_marshal_BOOLEAN__POINTER_POINTER_POINTER_UINT
* purple_marshal_INT__INT
* purple_marshal_INT__INT_INT
* purple_marshal_INT__POINTER_POINTER
* purple_marshal_POINTER__POINTER
* purple_marshal_POINTER__POINTER_INT
* purple_marshal_POINTER__POINTER_INT64
* purple_marshal_POINTER__POINTER_INT_BOOLEAN
* purple_marshal_POINTER__POINTER_INT64_BOOLEAN
* purple_marshal_POINTER__POINTER_POINTER
* purple_marshal_POINTER__POINTER_POINTER_BOOLEAN
* purple_marshal_VOID__INT
* purple_marshal_VOID__INT_INT
* PurpleMimeDocument, PurpleMimePart,
purple_mime_document_new, purple_mime_document_free,
purple_mime_document_parse, purple_mime_document_parsen,
purple_mime_document_write, purple_mime_document_get_fields,
purple_mime_document_get_field,
purple_mime_document_set_field,
purple_mime_document_get_parts, purple_mime_part_new,
purple_mime_part_get_fields, purple_mime_part_get_field,
purple_mime_part_get_field_decoded,
purple_mime_part_set_field, purple_mime_part_get_data,
purple_mime_part_get_data_decoded,
purple_mime_part_get_length, purple_mime_part_set_data, and
purple_mime_decode_field. Use the GMime library, instead.
* purple_mkstemp
* purple_network_convert_idn_to_ascii. Use g_hostname_to_ascii,
instead.
* purple_network_get_all_local_system_ips. Use libnice instead.
* purple_network_get_handle
* purple_network_get_my_ip
* purple_network_get_local_system_ip. Use libnice instead.
* purple_network_get_port_from_fd
* purple_network_ip_atoi
* PurpleNetworkListenData
* PurpleNetworkListenCallback
* purple_network_listen
* purple_network_listen_cancel
* purple_network_listen_family
* purple_network_listen_map_external
* purple_network_listen_range
* purple_network_listen_range_family
* purple_network_remove_port_mapping
* PurpleNotifyUiOps.notify_email
* PurpleNotifyUiOps.notify_emails
* purple_notify_email
* purple_notify_emails
* purple_notify_searchresults_column_get_title
* purple_notify_searchresults_get_columns_count
* purple_notify_searchresults_get_rows_count
* purple_notify_searchresults_row_get
* purple_ntlm_*
* PURPLE_PLUGIN_INIT, use GPLUGIN_NATIVE_PLUGIN_DECLARE
* PurplePluginAction
* PurplePluginActionCb
* PurplePluginLoaderInfo
* PurplePluginPriority
* PurplePluginProtocolInfo
* PurplePluginType
* PurplePluginUiInfo
* purple_plugin_action_new
* purple_plugin_action_free
* purple_plugin_ipc_*
* purple_plugin_is_unloadable
* purple_plugin_new
* purple_plugin_probe
* purple_plugin_register
* purple_plugin_reload
* purple_plugins:plugin-load signal
* purple-plugins:plugin-unload signal
* purple_plugins_destroy_all
* purple_plugins_enabled
* purple_plugins_find_with_basename
* purple_plugins_find_with_name
* purple_plugins_get_handle
* purple_plugins_get_protocols
* purple_plugins_get_search_paths
* purple_plugins_register_load_notify_cb
* purple_plugins_register_probe_notify_cb
* purple_plugins_register_unload_notify_cb
* purple_plugins_unregister_load_notify_cb
* purple_plugins_unregister_probe_notify_cb
* purple_plugins_unregister_unload_notify_cb
* purple_plugins_unload
* purple_plugins_unload_all
* purple_pounce_action_get_attribute
* purple_pounce_action_is_enabled
* purple_pounce_action_register
* purple_pounce_action_set_attribute
* purple_pounce_action_set_enabled
* purple_pounce_destroy
* purple_pounce_destroy_all_by_account
* purple_pounce_destroy_all_by_buddy
* purple_pounce_execute
* purple_pounce_get_data
* purple_pounce_get_events
* purple_pounce_get_options
* purple_pounce_get_pouncee
* purple_pounce_get_pouncer
* purple_pounce_get_save
* purple_pounce_new
* purple_pounce_set_data
* purple_pounce_set_events
* purple_pounce_set_options
* purple_pounce_set_pouncee
* purple_pounce_set_pouncer
* purple_pounce_set_save
* purple_pounces_get_all
* purple_pounces_get_all_for_ui
* purple_pounces_get_handle
* purple_pounces_init
* purple_pounces_load
* purple_pounces_register_handler
* purple_pounces_uninit
* purple_pounces_unregister_handler
* PurplePounceCb
* PurplePounceEvent
* PurplePounceOption
* PurplePrefsUiOps
* PurpleProxyConnectData
* PurpleProxyConnectFunction
* purple_proxy_connect
* purple_proxy_connect_cancel
* purple_proxy_connect_cancel_with_handle
* purple_prefs_get_ui_ops
* purple_prefs_set_generic
* purple_prefs_set_ui_ops
* purple_prefs_update_old
* purple_presence_add_status
* purple_presence_add_list
* PurplePresenceContext
* purple_presence_new
* purple_presence_new_for_account
* purple_presence_new_for_buddy
* purple_print_utf8_to_console
* purple_program_is_valid
* pidgin_protocol_option_menu_new
* purple_proxy_connect_socks5
* purple_proxy_connect_socks5_account
* purple_prpl_got_attention
* purple_prpl_got_attention_in_chat
* purple_prpl_send_attention
* purple_quotedp_decode. See the GMime library if needed.
* purple_restore_default_signal_handlers
* purple_request_certificate
* purple_request_field_choice_set_data_destructor. Use
purple_request_field_choice_add_full instead
* purple_request_field_list_add
* purple_request_field_list_get_icons
* PurpleRoomlistRoomType
* purple_roomlist_expand_category
* purple_roomlist_field_get_field_type
* purple_roomlist_field_get_hidden
* purple_roomlist_field_get_label
* purple_roomlist_field_new
* purple_roomlist_get_fields
* purple_roomlist_get_protocol_data
* purple_roomlist_set_protocol_data
* purple_running_osx
* PurpleSetPublicAliasFailureCallback
* PurpleSetPublicAliasSuccessCallback
* purple_smiley_get_type
* purple_smiley_new
* purple_smiley_new_from_file
* purple_smiley_delete
* purple_smiley_set_shortcut
* purple_smiley_set_data
* purple_smiley_get_shortcut
* purple_smiley_get_checksum
* purple_smiley_get_stored_image
* purple_smiley_get_data
* purple_smiley_get_extension
* purple_smiley_get_full_path
* purple_smileys_get_all
* purple_smileys_find_by_shortcut
* purple_smileys_find_by_checksum
* purple_smileys_get_storing_dir
* purple_smileys_init
* purple_smileys_uninit
* purple_socket_get_family
* purple_socket_speaks_ipv4
* PurpleSoundUiOps
* PurpleSoundStatus
* PURPLE_SOUND_STATUS_AVAILABLE
* PURPLE_SOUND_STATUS_AWAY
* PURPLE_SOUND_STATUS_ALWAYS
* PurpleSoundEventID
* PURPLE_SOUND_BUDDY_ARRIVE
* PURPLE_SOUND_BUDDY_LEAVE
* PURPLE_SOUND_RECEIVE
* PURPLE_SOUND_FIRST_RECEIVE
* PURPLE_SOUND_SEND
* PURPLE_SOUND_CHAT_JOIN
* PURPLE_SOUND_CHAT_LEAVE
* PURPLE_SOUND_CHAT_YOU_SAY
* PURPLE_SOUND_CHAT_SAY
* PURPLE_SOUND_POUNCE_DEFAULT
* PURPLE_SOUND_CHAT_NICK
* PURPLE_SOUND_GOT_ATTENTION
* purple_sound_ui_ops_get_type
* purple_sound_play_file
* purple_sound_play_event
* purple_sound_set_ui_ops
* purple_sound_get_ui_ops
* purple_sound_init
* purple_sound_uninit
* purple_sounds_get_handle
* purple_sound_theme_get_type
* purple_sound_theme_get_file
* purple_sound_theme_get_file_full
* purple_sound_theme_set_file
* purple_sound_theme_loader_get_type
* PURPLE_NUM_SOUNDS
* purple_srv_cancel
* purple_srv_resolve_account
* purple_srv_txt_query_destroy
* PurpleSslErrorType
* purple_str_add_cr
* purple_strcasereplace
* PurpleStunNatType
* PurpleStunNatDiscovery.type
* PURPLE_SSL_DEFAULT_PORT
* PurpleSslConnection
* PurpleSslErrorFunction
* PurpleSslInputFunction
* purple_ssl_close
* purple_ssl_connect
* purple_ssl_connect_fd
* purple_ssl_connect_with_host_fd
* purple_ssl_connect_with_ssl_cn
* purple_ssl_get_peer_certificates
* purple_ssl_init
* purple_ssl_input_add
* purple_ssl_input_remove
* purple_ssl_read
* purple_ssl_strerror
* purple_ssl_uninit
* purple_ssl_write
* purple_status_set_attr_boolean
* purple_status_set_attr_int
* purple_status_set_attr_string
* purple_status_type_add_attr
* purple_status_type_add_attrs
* purple_status_type_add_attrs_vargs
* purple_status_type_get_primary_attr
* purple_status_type_set_primary_attr
* purple_strlcat
* purple_strlcpy
* purple_str_binary_to_ascii
* purple_str_has_prefix. Use g_str_has_prefix instead
* purple_str_has_suffix. Use g_str_has_suffix instead
* purple_str_size_to_units. Use g_format_size() instead.
* purple_str_to_date_time
* purple_str_to_time
* purple_time_build. Use g_date_time_new* instead.
* purple_time_format. Use g_date_time_format instead.
* purple_timeout_*. Use g_timeout_* or g_idle_* instead.
* purple_txt_cancel
* purple_txt_resolve_account
* PurpleType, use GType instead.
* purple_unescape_filename
* PurpleUPnPMappingAddRemove
* purple_upnp_cancel_port_mapping
* purple_url_decode
* purple_user_dir
* purple_utf8_salvage. Use g_utf8_make_valid instead.
* purple_utf8_strftime
* purple_util_write_data_to_file_absolute. Use g_file_set_contents
instead.
* purple_util_fetch_url_len. Use purple_util_fetch_url, instead.
* purple_util_fetch_url_request_len. Use
* purple_util_fetch_url_request, instead.
* purple_util_fetch_url_request_len_with_account. Use
purple_util_fetch_url_request, instead.
* purple_util_get_image_checksum. Use
g_compute_checksum_for_data(G_CHECKSUM_SHA1, ...), instead.
* purple_util_read_xml_from_file
* purple_util_write_data_to_file
* purple_util_write_data_to_file_absolute
* purple_uts35_to_str
* purple_xfer_add
* purple_xfer_get_ui_data and purple_xfer_set_ui_data. Use
GObject data functions instead.
* purple_xfer_update_progress
* PurpleCertificateVerificationStatus.PURPLE_CERTIFICATE_INVALID
* PurpleConnectionUiOps.report_disconnect_reason
* PurplePluginProtocolInfo.add_buddy_with_invite
* PurplePluginProtocolInfo.add_buddies_with_invite
* PurplePluginProtocolInfo.get_cb_away
* PurpleValue, use GValue instead.
* purple_whiteboard_get_ui_data and purple_whiteboard_set_ui_data, use
g_object_set_data instead.
* PurpleXferUiOps.add_thumbnail. Use PurpleXfer::add-thumbnail
instead.
* PurpleXferUiOps.add_xfer. Use notify::visible on #PurpleXfer
objects instead.
* PurpleXferUiOps.cancel_local and
PurpleXferUiOps.cancel_remote. Use notify::status on
#PurpleXfer objects instead.
* PurpleXferUiOps.data_not_sent. Use PurpleXfer::data-not-sent
instead.
* PurpleXferUiOps.destroy
* PurpleXferUiOps.ui_read. Use PurpleXfer::read-local instead.
* PurpleXferUiOps.ui_write. Use PurpleXfer::write-local instead.
* PurpleXferUiOps.update_progress. Use notify::progress on
#PurpleXfer objects instead.
* serv_got_attention
* serv_send_attention
* struct _PurpleAttentionType
* struct _PurpleCipherCaps
* struct _PurpleConversation
* struct _PurpleConvChat
* struct _PurpleConvChatBuddy
* struct _PurpleConvIm
* struct _PurpleConvMessage
* struct _PurpleMenuAction
* struct _PurplePounce
* struct _PurpleProxyInfo
* struct _PurpleRequestField
* struct _PurpleRoomlist
* struct _PurpleRoomlistField
* struct _PurpleRoomlistRoom
* struct _PurpleWhiteboard
* struct PurpleAccountOption
* struct PurpleAccountUserSplit
* struct PurpleNotifySearchColumn
* wpurple_g_access
* xmlnode_set_attrib_with_namespace
* xmlnode_set_attrib_with_prefix
Pidgin:
Added:
* pidgin_create_webview
* PidginDockletFlag
* PidginPluginInfo, inherits PurplePluginInfo
* Various WebKit-related functions in gtkwebview.h
Changed:
* gtkft.h file renamed to gtkxfer.h
* pidgin_blist_sort_method renamed to _PidginBlistSortMethod
* BRUSH_STATE_DOWN renamed to PIDGIN_BRUSH_STATE_DOWN
* BRUSH_STATE_MOTION renamed to PIDGIN_BRUSH_STATE_MOTION
* BRUSH_STATE_UP renamed to PIDGIN_BRUSH_STATE_UP
* DEFAULT_FONT_FACE renamed to PIDGIN_DEFAULT_FONT_FACE
* DndHintPosition renamed to PidginDndHintPosition
* DndHintWindowId renamed to PidginDndHintWindowId
* dnd_* functions renamed to pidgin_dnd_*
* FULL_CIRCLE_DEGREES renamed to PIDGIN_FULL_CIRCLE_DEGREES
* NUM_NICK_SEED_COLORS renamed to PIDGIN_NUM_NICK_SEED_COLORS
* PALETTE_NUM_COLORS renamed to PIDGIN_PALETTE_NUM_COLORS
* pidgin_account_option_menu_* renamed to
pidgin_account_chooser_*
* pidgin_conversations_get_unseen_all removed hidden_only parameter.
* pidgin_make_mini_dialog renamed to
pidgin_mini_dialog_new_with_buttons; note the argument order
has changed to match pidgin_mini_dialog_new
* pidgin_new_item_from_stock renamed to pidgin_new_menu_item and
removed the accel related parameters.
* pidgin_setup_screenname_autocomplete now takes a filter function and
its data as final two arguments
* PidginWindow renamed to PidginConvWindow
Removed:
* account-modified (gtkaccount signal)
* conversation-dragging (gtkconv signal)
* conversation-timestamp (gtkconv signal)
* conversation-hiding (gtkconv signal)
* drawing-buddy (gtkblist signal)
* GtkIMHtml.clipboard_html_string
* GtkIMHtml.clipboard_text_string
* GtkIMHtmlFontDetail
* gtkblist-hiding (gtkblist signal)
* gtkblist-unhiding (gtkblist signal)
* gtk_imhtml_animation_free
* gtk_imhtml_animation_new
* gtk_imhtml_image_add_to
* gtk_imhtml_image_free
* gtk_imhtml_image_new
* gtk_imhtml_image_scale
* pidgin_account_dialog_show
* pidgin_accounts_get_handle
* pidgin_accounts_window_hide
* pidgin_accounts_window_show, use pidgin_account_manager_new instead.
* pidgin_append_blist_node_extended_menu
* pidgin_append_blist_node_privacy_menu
* pidgin_append_blist_node_proto_menu
* pidgin_append_menu_action
* pidgin_blist_add_alert
* pidgin_blist_draw_tooltip
* pidgin_blist_get_status_icon
* pidgin_blist_get_theme
* pidgin_blist_layout_get_type
* pidgin_blist_make_buddy_menu
* pidgin_blist_set_headline
* pidgin_blist_set_theme
* pidgin_blist_theme_get_background_color
* pidgin_blist_theme_get_collapsed_background_color
* pidgin_blist_theme_get_collapsed_text_info
* pidgin_blist_theme_get_contact_color
* pidgin_blist_theme_get_contact_text_info
* pidgin_blist_theme_get_expanded_background_color
* pidgin_blist_theme_get_expanded_text_info
* pidgin_blist_theme_get_idle_text_info
* pidgin_blist_theme_get_offline_text_info
* pidgin_blist_theme_get_online_text_info
* pidgin_blist_theme_get_online_text_info
* pidgin_blist_theme_get_opacity
* pidgin_blist_theme_get_opacity
* pidgin_blist_theme_get_status_text_info
* pidgin_blist_theme_get_type
* pidgin_blist_theme_get_unread_message_nick_said_text_info
* pidgin_blist_theme_get_unread_message_text_info
* pidgin_blist_theme_loader_get_type
* pidgin_blist_theme_set_away_text_info
* pidgin_blist_theme_set_background_color
* pidgin_blist_theme_set_collapsed_background_color
* pidgin_blist_theme_set_collapsed_text_info
* pidgin_blist_theme_set_contact_color
* pidgin_blist_theme_set_contact_text_info
* pidgin_blist_theme_set_expanded_background_color
* pidgin_blist_theme_set_expanded_text_info
* pidgin_blist_theme_set_idle_text_info
* pidgin_blist_theme_set_layout
* pidgin_blist_theme_set_offline_text_info
* pidgin_blist_theme_set_online_text_info
* pidgin_blist_theme_set_opacity
* pidgin_blist_theme_set_status_text_info
* pidgin_blist_theme_set_unread_message_nick_said_text_info
* pidgin_blist_theme_set_unread_message_text_info
* pidgin_blist_toggle_visibility
* pidgin_blist_tooltip_destroy
* pidgin_blist_update_account_error_state
* pidgin_blist_update_accounts_menu
* pidgin_blist_update_columns
* pidgin_blist_update_plugin_actions
* pidgin_blist_update_refresh_timeout
* pidgin_blist_visibility_manager_add
* pidgin_blist_visibility_manager_remove
* PidginBlistLayout
* pidgin_buddy_icon_chooser_new
* PidginBuddyList.connection_errors
* PidginButtonStyle
* PidginCellRendererExpander
* PIDGIN_TYPE_CELL_RENDERER_EXPANDER
* pidgin_cell_renderer_expander_new
* pidgin_check_if_dir
* pidgin_clear_cursor
* PidginConversation.sg
* PidginConvPlacementFunc
* pidgin_conv_get_tab_at_xy
* pidgin_conv_get_tab_icon, use PidginPresenceIcon instead.
* pidgin_conv_get_window
* pidgin_conv_is_hidden
* pidgin_conv_new
* pidgin_conv_placement_get_name
* pidgin_conv_placement_add_fnc
* pidgin_conv_placement_remove_fnc
* pidgin_conv_placement_get_fnc
* pidgin_conv_placement_set_current_func
* pidgin_conv_placement_get_current_func
* pidgin_conv_present_conversation
* PidginConvWindow
* pidgin_conv_window_add_gtkconv
* pidgin_conv_window_destroy
* pidgin_conv_window_first_chat
* pidgin_conv_window_first_im
* pidgin_conv_window_get_active_conversation
* pidgin_conv_window_get_active_gtkconv
* pidgin_conv_window_get_at_event
* pidgin_conv_window_get_gtkconv_at_index
* pidgin_conv_window_get_gtkconv_count
* pidgin_conv_window_get_gtkconvs
* pidgin_conv_window_has_focus
* pidgin_conv_window_hide
* pidgin_conv_window_is_active_conversation
* pidgin_conv_window_last_im
* pidgin_conv_window_last_chat
* pidgin_conv_window_new
* pidgin_conv_window_raise
* pidgin_conv_window_remove_gtkconv
* pidgin_conv_window_show
* pidgin_conv_window_switch_gtkconv
* pidgin_conv_windows_get_list
* pidgin_conv_update_buddy_icon
* pidgin_conv_update_buttons_by_protocol
* pidgin_conversations_fill_menu
* pidgin_conversations_get_unseen_all
* pidgin_create_dialog, use pidgin_dialog_new instead.
* pidgin_create_icon_from_protocol
* pidgin_create_protocol_icon
* pidgin_create_small_button, use pidgin_close_button_new instead.
* pidgin_create_status_icon
* pidgin_create_window, use pidgin_window_new instead.
* PIDGIN_DIALOG
* pidgin_dialog_add_button
* pidgin_dialog_get_action_area
* pidgin_dialog_get_vbox
* pidgin_dialog_get_vbox_with_properties
* pidgin_dialogs_alias_contact
* pidgin_dialogs_destroy_all
* pidgin_dialogs_log
* pidgin_get_dim_grey_string
* pidgin_gdk_pixbuf_make_round, use purple_gdk_pixbuf_make_round instead.
* pidgin_gdk_pixbuf_is_opaque, use purple_gdk_pixbuf_is_opaque instead.
* pidgin_menu_popup_at_treeview_selection
* pidgin_new_menu_item
* pidgin_pixbuf_from_data, use purple_gdk_pixbuf_from_data instead.
* pidgin_pixbuf_anim_from_data
* pidgin_pixbuf_from_image, use purple_gdk_pixbuf_from_image instead.
* pidgin_pixbuf_new_from_file, use purple_gdk_pixbuf_new_from_file instead.
* pidgin_pixbuf_new_from_file_at_size, use purple_gdk_pixbuf_new_from_file_at_size instead.
* pidgin_pixbuf_new_from_file_at_scale
* pidgin_pixbuf_scale_down
* PIDGIN_ICON_SIZE_*
* PIDGIN_ICON_THEME
* PIDGIN_ICON_THEME_CLASS