-
Notifications
You must be signed in to change notification settings - Fork 4
/
ChangeLog.API
2261 lines (2115 loc) · 89.8 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)
* 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_actions_cb
* 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
* PurpleProtocolIMIface
* PurpleProtocolChatIface
* PurpleProtocolPrivacyIface
* PurpleProtocolXferIface
* PurpleProtocolRoomlistIface
* PurpleProtocolAttentionIface
* PurpleProtocolMediaIface
* PurpleProtocolFactoryIface
* purple_protocol_get_* for PurpleProtocol members
* purple_protocol_class_* for class methods
* purple_protocol_server_iface_* for server interface methods
* purple_protocol_im_iface_* for IM interface methods
* purple_protocol_privacy_iface_* for privacy interface methods
* purple_protocol_xfer_iface_* for xfer interface methods
* purple_protocol_attention_iface_* for attention interface methods
* purple_protocol_factory_iface_* for factory interface methods
* purple_protocol_action_new
* purple_protocol_action_free
* purple_protocols_add
* purple_protocols_remove
* purple_protocols_find
* purple_protocols_get_all
* purple_protocols_get_handle
* purple_protocols_init
* purple_protocols_uninit
* purple_request_certificate
* purple_request_field_certificate_new
* purple_request_field_certificate_get_value
* purple_request_field_get_tooltip
* purple_request_field_group_get_fields_list
* 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_get_ui_data
* purple_roomlist_room_get_expanded_once
* purple_roomlist_room_set_expanded_once
* purple_roomlist_set_proto_data
* purple_roomlist_set_ui_data
* purple_time_parse_month
* 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_network_listen now takes the protocol family as the second
parameter
* purple_network_listen now takes a boolean indicating external port
mapping as the fourth parameter
* purple_network_listen_range now takes a boolean indicating external
port mapping as the fifth parameter
* purple_network_listen_range now takes the protocol family as the
third parameter
* 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.
* PurplePluginAction no longer has a context field. Use
PurpleProtocolAction for protocol actions.
* 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
* purple_proxy_info_get_type renamed to purple_proxy_info_get_proxy_type
* 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_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
* UPnPMappingAddRemove renamed to PurpleUPnPMappingAddRemove
* 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
* 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
* _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
* purple_account_add_buddies_with_invite
* purple_account_add_buddy_with_invite
* purple_account_set_current_error
* purple_base64_*. Use g_base64_* instead
* purple_blist_get_ui_data
* purple_blist_load
* purple_blist_new
* 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
* 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.
* purple_connection_error_reason
* purple_connection_new
* purple_connection_new_unregister
* purple_connection_destroy
* purple_connection_set_account
* purple_contact_set_alias
* purple_conv_chat_set_users
* PurpleConversationType
* 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_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_get_host_name. Use g_get_host_name, instead.
* purple_get_tzoff_str(). Use g_date_time_format, instead.
* 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
* 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_network_convert_idn_to_ascii. Use g_hostname_to_ascii,
instead.
* purple_network_listen_family. Use purple_network_listen, instead.
* purple_network_listen_map_external
* purple_network_listen_range_family. Use purple_network_listen,
instead.
* purple_network_ip_atoi
* 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_*
* PurplePluginType
* PurplePluginPriority
* PurplePluginLoaderInfo
* PurplePluginUiInfo
* purple_plugin_ipc_*
* purple_plugin_is_unloadable
* purple_plugin_new
* purple_plugin_probe
* purple_plugin_register
* purple_plugin_reload
* purple_plugins_destroy_all
* purple_plugins_enabled
* purple_plugins_find_with_basename
* purple_plugins_find_with_name
* 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_pounces_load
* purple_prefs_set_generic
* 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
* PurplePluginProtocolInfo
* pidgin_protocol_option_menu_new
* purple_proxy_connect_socks5
* purple_quotedp_decode. See the GMime library if needed.
* purple_request_certificate
* purple_request_field_list_add
* purple_srv_cancel
* purple_srv_resolve_account
* purple_srv_txt_query_destroy
* purple_ssl_connect_fd
* 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_timeout_*. Use g_timeout_* or g_idle_* instead.
* purple_txt_cancel
* purple_txt_resolve_account
* PurpleType, use GType 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_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.
* 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
Deprecated:
* purple_user_dir
* purple_util_write_data_to_file
* purple_util_read_xml_from_file
Pidgin:
Added:
* pidgin_create_webview
* PidginDockletFlag
* pidgin_gdk_pixbuf_new_from_image
* 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_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
* smiley_list renamed to PidginSmileyList
* smiley_parse_markup renamed to pidgin_smiley_parse_markup
* smiley_theme renamed to PidginSmileyTheme
* PidginWindow renamed to PidginConvWindow
Removed:
* GtkIMHtml.clipboard_html_string
* GtkIMHtml.clipboard_text_string
* GtkIMHtmlFontDetail
* 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_blist_update_account_error_state
* PidginBuddyList.connection_errors
* pidgin_check_if_dir
* PidginConversation.sg
* PIDGIN_DIALOG
* pidgin_dialogs_alias_contact
* pidgin_make_pretty_arrows
* pidgin_mini_dialog_links_supported
* pidgin_set_custom_buddy_icon
* pidgin_setup_screenname_autocomplete_with_filter
* pidgin_toggle_sensitive, pidgin_toggle_sensitive_array, and
pidgin_toggle_showhide; use g_object_bind_property instead
* struct _GtkIMHtmlAnimation
* struct _GtkIMHtmlFontDetail
* struct _GtkIMHtmlHr
* struct _GtkIMHtmlImage
* struct _GtkIMHtmlScalable
* struct _GtkSmileyTree
* struct _PidginChatPane
* struct _PidginImPane
Finch:
Added:
* FinchPluginInfo, inherits PurplePluginInfo
Changed:
* gntft.h file renamed to gntxfer.h
* gnt_append_menu_action renamed to finch_append_menu_action
* gnt_ui_init renamed to finch_ui_init
* gnt_ui_uninit renamed to finch_ui_uninit
libgnt:
Changed:
* ENTRY_CHAR renamed to GNT_ENTRY_CHAR
* g_hash_table_duplicate renamed to gnt_hash_table_duplicate
* GDupFunc renamed to GntDuplicateFunc
Removed:
* _GntFileType
* _GntKeyPressMode
* _GntMouseEvent
* _GntParamFlags
* _GntProgressBarOrientation
* _GntTreeColumnFlag
* _GntWidgetFlags
version 2.11.0:
libpurple:
Added:
* account-status-changing signal (account signals)
* buddy-removed-from-group signal (blist signals)
version 2.9.0:
libpurple:
Added:
* Hash table to PurpleConvChat struct, used to make
purple_conv_chat_cb_find O(1).
* ui_data pointer to PurpleConvChatBuddy struct.
* deleting-chat-buddy signal (conversation signals)
* pidgin_pixbuf_from_data
* pidgin_pixbuf_anim_from_data
* pidgin_pixbuf_new_from_file
* pidgin_pixbuf_new_from_file_at_size
* pidgin_pixbuf_new_from_file_at_scale
Deprecated:
* purple_conv_chat_set_users
* PurpleConvChat in_room list
version 2.8.0 (06/07/2011):
libpurple:
Added:
* account-authorization-requested-with-message signal (Stefan Ott)
(#8690)
* cleared-message-history signal (conversation signals)
* purple_account_add_buddy_with_invite
* purple_account_add_buddies_with_invite
* purple_dnsquery_a_account
* purple_notify_user_info_add_pair_plaintext
* purple_media_get_active_local_candidates
* purple_media_get_active_remote_candidates
* purple_media_manager_get_video_caps (Jakub Adam) (#13095)
* purple_media_manager_set_video_caps (Jakub Adam) (#13095)
* purple_pounce_destroy_all_by_buddy (Kartik Mohta) (#1131)
* purple_proxy_connect_socks5_account
* purple_srv_resolve_account
* purple_txt_resolve_account
* Added add_buddy_with_invite to PurplePluginProtocolInfo
* Added add_buddies_with_invite to PurplePluginProtocolInfo
* Added PurpleSrvTxtQueryUiOps which allow UIs to specify their
own mechanisms to resolve SRV and/or TXT queries. It works
similar to PurpleDnsQueryUiOps
* purple_marshal_BOOLEAN__POINTER_BOOLEAN (kawaii.neko) (#12599)
Deprecated:
* purple_account_add_buddy
* purple_account_add_buddies_with_invite
* purple_dnsquery_a
* purple_proxy_connect_socks5
* purple_srv_resolve
* purple_txt_resolve
* add_buddy from PurplePluginProtocolInfo struct
* add_buddies from PurplePluginProtocolInfo struct
Pidgin:
Added:
* pidgin_make_scrollable (Gabriel Schulhof) (#10599)
* chat-nick-clicked signal (kawaii.neko) (#12599)
* chat-nick-autocomplete signal (kawaii.neko) (#12599)
version 2.7.11 (03/10/2011):
* libpurple:
Added:
* Four entries in the GHashTable passed when joining
an XMPP chat room which allow the UI to request a limited
amount of history. See XEP-0045 7.1.16 for details; the
entries are named history_maxchars, history_maxstanzas,
history_seconds, and history_since. history_since must be
interpretable by purple_str_to_time, and the prpl takes care
of formatting the time properly.
* Perl:
Added:
* Purple::find_conversation_with_account
* Purple::Conversation::Chat::send_with_flags
* Purple::Conversation::IM::send_with_flags
version 2.7.10 (02/06/2011):
* No changes
version 2.7.9 (12/26/2010):
* No changes
version 2.7.8 (12/19/2010):
* No changes
version 2.7.7 (11/23/2010):
* No changes
version 2.7.6 (11/21/2010):
* No changes
version 2.7.5 (10/31/2010):
* No changes
version 2.7.4 (10/20/2010):
Perl:
Added:
* Purple::BuddyList::Chat::get_components
Changed:
* Purple::BuddyList::Chat::new now works properly. Thanks
to Rafael in devel@conference.pidgin.im for reporting and
testing.
version 2.7.3 (08/10/2010):
libpurple:
Fixed:
* purple_account_[gs]et_public_alias no longer crash when
called for a protocol that doesn't support the underlying
calls and the caller does not specify a failure callback.
Perl:
Added:
* Exposed log-subsystem signals.
Pidgin:
Changed:
* Changing the visibility (gtk_widget_hide/show) of
the widgets in the GtkIMHtmlToolbar should now affect
the visibility of the entries in the 'lean' view
(the default toolbar view).
Deprecated:
* pidgin_check_if_dir
libgnt:
Added:
* gnt_tree_row_get_key, gnt_tree_row_get_next,
gnt_tree_row_get_prev, gnt_tree_row_get_child and
gnt_tree_row_get_parent.
version 2.7.2 (07/21/2010):
* No changes
version 2.7.1 (05/29/2010):
* No changes
version 2.7.0 (05/12/2010):
libpurple:
Added:
* Account signals (see account-signals.dox); useful for D-Bus
* account-signed-on
* account-signed-off
* account-connection-error
* purple_account_get_name_for_display
* purple_account_get_privacy_type
* purple_account_get_public_alias
* purple_account_set_privacy_type
* purple_account_set_public_alias
* buddy-caps-changed blist signal
* Added media_caps to the PurpleBuddy struct
* purple_buddy_get_media_caps
* purple_buddy_set_media_caps
* purple_certificates_import for importing multiple
certificates from a single file (and corresponding
import_certificates member of PurpleCertificateScheme struct)
* autojoin connection signal
* purple_contact_get_group
* sent-attention conversation signal
* got-attention conversation signal
* ui-caps-changed media manager signal
* purple_media_candidate_copy
* purple_media_codec_copy
* purple_media_manager_get_backend_type
* purple_media_manager_set_backend_type
* PurpleMood struct in status.h
* purple_network_get_all_local_system_ips, which returns all
local IPs on the system. On systems with the getifaddrs()
function, this will return both IPv4 and IPv6 addresses
(excluding link-local and loopback addresses). On others,
it returns just IPv4 addresses.
* purple_network_listen_family and
purple_network_listen_range_family. These will replace the
versions without _family in 3.0.0 and allow the caller to
specifically request either an IPv4 or IPv6 socket. IPv6 is
only supported if the getaddrinfo() function is available
at build-time (not the case on Windows, currently).
* purple_prpl_got_media_caps
* purple_request_action_with_icon
* purple_request_action_with_icon_varg
* purple_socket_get_family
* purple_socket_speaks_ipv4
* purple_unescape_text
* purple_uuid_random
* purple_xfer_get_thumbnail
* purple_xfer_get_thumbnail_mimetype
* purple_xfer_set_thumbnail
* purple_xfer_prepare_thumbnail
Pidgin:
Added:
* pidgin_dialogs_buildinfo (should not be used by anything but Pidgin)
* pidgin_dialogs_developers (should not be used by anything but Pidgin)
* pidgin_dialogs_translators (should not be used by anything but Pidgin)
* gtk_imhtmltoolbar_switch_active_conversation
* 'paste' signal for GtkIMHtml (more in gtkimhtml-signals.dox)
* 'drawing-buddy' signal for gtkblist (more in gtkblist-signals.dox)
version 2.6.6 (02/18/2010):
libpurple:
Changed:
* purple_xfer_cancel_local is now called instead of
purple_xfer_request_denied if an error is found when selecting
a file to send. Request denied is still used when a receive
request is not allowed.
* xmlnode_from_str now properly handles parsing an attribute which
contain "<br>", which were previously transformed into a
newline character (libxml2 unescapes all entities except
representations of '&', and libpurple's purple_unescape_html
converts "<br>" to a newline).
Perl:
Changed:
* Corrected the package names for the PurpleProxyType and
PurpleLogReadFlags enums to have the correct number of colons
(from Purple::ProxyType::::<type> to Purple::ProxyType::<type>
and Purple::Log:ReadFlags::::<type> to
Purple::Log::ReadFlags::<type>) (Chris Foote)
version 2.6.5 (01/08/2010):
No changes
version 2.6.4 (11/29/2009):
No changes
version 2.6.3 (10/16/2009):
No changes
version 2.6.2 (09/05/2009):
Perl:
Added:
* Purple::XMLNode::get_next(), which returns the next neighbor tag of
the current node.
Changed:
* Purple::XMLNode::get_child() will return the first child node if
passed "" or undef as the name of the node.
version 2.6.1 (08/18/2009):
No changes
version 2.6.0 (08/18/2009):
libpurple:
Added:
* PurpleMedia and PurpleMediaManager API
* PURPLE_BLIST_NODE
* PURPLE_GROUP
* PURPLE_CONTACT
* PURPLE_BUDDY
* PURPLE_CHAT
* Account signals (see account-signals.dox)
* account-actions-changed
* account-created
* account-destroying
* blist-node-added and blist-node-removed signals (see
blist-signals.dox)
* Three Blist UI ops used to overload libpurple's built-in saving
of the buddy list to blist.xml. If a UI implements these, it probably
wants to add the buddies itself and not call purple_blist_load.
* Three File Transfer UI ops used to overload libpurple's use of fread
and fwrite for saving a file locally. These allow a UI to stream a
file through a socket without buffering the file on the local disk.
* Jabber plugin signals (see jabber-signals.dox)
* purple_account_remove_setting
* purple_buddy_destroy
* purple_buddy_get_protocol_data
* purple_buddy_set_protocol_data
* purple_buddy_get_local_buddy_alias
* purple_blist_get_buddies
* purple_blist_get_ui_data
* purple_blist_set_ui_data
* purple_blist_node_get_ui_data
* purple_blist_node_set_ui_data
* purple_certificate_check_signature_chain_with_failing
* purple_chat_destroy
* purple_connection_get_protocol_data
* purple_connection_set_protocol_data
* purple_contact_destroy
* purple_conv_chat_invite_user
* purple_debug_is_unsafe
* purple_debug_is_verbose
* purple_debug_set_unsafe
* purple_debug_set_verbose
* purple_global_proxy_set_info
* purple_group_destroy
* purple_ipv4_address_is_valid
* purple_ipv6_address_is_valid
* purple_log_get_activity_score
* purple_markup_is_rtl
* purple_markup_escape_text
* purple_network_convert_idn_to_ascii
* purple_network_force_online
* purple_network_set_stun_server
* purple_network_set_turn_server
* purple_network_get_stun_ip
* purple_network_get_turn_ip
* purple_network_remove_port_mapping
* purple_plugins_get_search_paths
* purple_proxy_connect_udp
* purple_prpl_get_media_caps
* purple_prpl_got_account_actions
* purple_prpl_initiate_media
* purple_request_field_get_group
* purple_request_field_get_ui_data
* purple_request_field_set_ui_data
* purple_ssl_connect_with_ssl_cn
* purple_strequal
* purple_utf8_strip_unprintables
* purple_util_fetch_url_request_len_with_account
* purple_xfer_prpl_ready
* purple_xfer_ui_ready
* xmlnode_from_file
* xmlnode_get_parent
* xmlnode_set_attrib_full
* PURPLE_STATUS_MOOD as a new PurpleStatusPrimitive
Changed:
* xmlnode_remove_attrib now removes all attributes with the
same name. Previously, it would remove the first one found,
which was completely non-deterministic. If you want to remove
the attribute with no namespace, then use NULL with
xmlnode_remove_with_namespace.
* Plugins may now emit the jabber-sending-xmlnode signal in order
to send stanzas; this method is preferred to the prpl send_raw
function as other plugins listening to the signal see them.
* The conversation-updated signal with a PURPLE_CONV_UPDATE_TYPING
update type is emitted when receiving an IM. Previously, the
typing state was modified (and the buddy-typing-stopped signal
emitted), but this signal was not emitted.
* Added a client_type field in the get_ui_info core UI op. See
core.h for details.
* Added introspection of signals exposed via the D-Bus API.
* purple_find_buddies is now more efficient in the case where
it is enumerating all the buddies for an account.
* purple_find_group is now more efficient for large numbers of groups.
* purple_find_conversation_with_account is more efficient for large
numbers of concurrent conversations.
* All DNS routines support internationalized domain names (IDNs) when
libpurple is compiled with GNU libidn.
* status is set before emitting signals in purple_xfer_set_status.
* Creating multiple distinct chats with the same name (i.e. "MSN Chat")
is deprecated and will be removed in libpurple 3.0.0.
* purple_xfer_start now accepts -1 as the fd parameter if the protocol
plugin will administer the transfer itself. 0 is still accepted for
backward compatibility since older versions of libpurple will not
accept -1.
Deprecated:
* buddy-added and buddy-removed blist signals
* purple_blist_destroy
* purple_blist_new
* purple_buddy_get_local_alias
* purple_certificate_check_signature_chain
* purple_ip_address_is_valid
* purple_notify_user_info_remove_entry
* purple_set_blist
* purple_status_type_set_primary_attr
* purple_status_type_add_attr
* purple_status_type_add_attrs
* purple_status_type_add_attrs_vargs
* purple_status_type_get_primary_attr
* purple_status_set_attr_boolean
* purple_status_set_attr_int
* purple_status_set_attr_string
* purple_presence_add_status
* purple_presence_add_list
* purple_util_fetch_url_request_len
* xmlnode_set_attrib_with_namespace
* xmlnode_set_attrib_with_prefix
pidgin:
Added:
* gtk_imhtml_class_register_protocol
* gtk_imhtml_link_get_url, gtk_imhtml_link_get_text_tag,
gtk_imhtml_link_activate functions to process GtkIMHtmlLink
objects from GtkIMHtml protocol callbacks.