cpw.malu.ft_thumbnails: 28ba6754: ChangeLog new functionallity
malu at pidgin.im
malu at pidgin.im
Tue Apr 27 16:44:56 EDT 2010
-----------------------------------------------------------------
Revision: 28ba675454ee403fff38bd908382bfc4c33da084
Ancestor: e069f87c019971a5edab7466be1c95d3c5fcff06
Author: malu at pidgin.im
Date: 2010-04-27T20:37:15
Branch: im.pidgin.cpw.malu.ft_thumbnails
URL: http://d.pidgin.im/viewmtn/revision/info/28ba675454ee403fff38bd908382bfc4c33da084
Modified files:
ChangeLog ChangeLog.API libpurple/ft.h libpurple/request.h
ChangeLog:
ChangeLog new functionallity
Add new functions to ChangeLog.API
Added @since on relevant functions (assuming this gets merged for 2.7.0)
-------------- next part --------------
============================================================
--- ChangeLog 75f015e018bc5f9b787d66c0e8b5ce8ed3728673
+++ ChangeLog ad24c34639f76786874ee8bfc15b6d249fe009f1
@@ -50,7 +50,9 @@ version 2.7.0 (??/??/????):
* The 'Message Timestamp Formats' plugin allows forcing 12-hour
timestamps. (Jonathan Maltz)
* Fix pastes from Chrome (rich-text pastes and probably URLs
- having garbage appended to them)
+ having garbage appended to them).
+ * Show file transfer thumbnails for images on supporting protocols
+ (currently only supported on MSN).
Bonjour:
* Added support for IPv6. (Thanks to T_X for testing)
@@ -76,6 +78,7 @@ version 2.7.0 (??/??/????):
MSN:
* Support for version 9 of the MSN protocol has been removed. This
version is no longer supported on the servers.
+ * Support file transfer thumbnails (previews) for images.
XMPP:
* Direct messages to a specific resource only upon receipt of a message
============================================================
--- ChangeLog.API 729f4b952e1323951390a7ea9c09f9d6195be178
+++ ChangeLog.API 1f6f7682d352aec879637157a718a8051c5e199e
@@ -33,6 +33,12 @@ version 2.7.0 (??/??/????):
* 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
+ * purple_request_action_with_icon
+ * purple_request_action_varg_with_icon
* media_caps to the PurpleBuddy struct
* buddy-caps-changed blist signal
* ui-caps-changed media manager signal
============================================================
--- libpurple/ft.h 84216e2937f59e43e48fb7ce0af7971168b175ab
+++ libpurple/ft.h 533ba87b5980edefb5b1c2e5ceb1d1da9c0a49d4
@@ -699,6 +699,7 @@ void purple_xfer_prpl_ready(PurpleXfer *
* @param len If not @c NULL, the length of the thumbnail data returned
* will be set in the location pointed to by this.
* @return The thumbnail data, or NULL if there is no thumbnail
+ * @since 2.7.0
*/
gconstpointer purple_xfer_get_thumbnail(const PurpleXfer *xfer, gsize *len);
@@ -707,6 +708,7 @@ gconstpointer purple_xfer_get_thumbnail(
*
* @param xfer The file transfer to get the mimetype for
* @return The mimetype of the thumbnail, or @c NULL if not thumbnail is set
+ * @since 2.7.0
*/
const gchar *purple_xfer_get_thumbnail_mimetype(const PurpleXfer *xfer);
@@ -718,6 +720,7 @@ const gchar *purple_xfer_get_thumbnail_m
* @param thumbnail A pointer to the thumbnail data, this will be copied
* @param size The size in bytes of the passed in thumbnail data
* @param mimetype The mimetype of the generated thumbnail
+ * @since 2.7.0
*/
void purple_xfer_set_thumbnail(PurpleXfer *xfer, gconstpointer thumbnail,
gsize size, const gchar *mimetype);
@@ -729,6 +732,7 @@ void purple_xfer_set_thumbnail(PurpleXfe
* @param xfer The file transfer to create a thumbnail for
* @param formats A comma-separated list of mimetypes for image formats
* the protocols can use for thumbnails.
+ * @since 2.7.0
*/
void purple_xfer_prepare_thumbnail(PurpleXfer *xfer, const gchar *formats);
============================================================
--- libpurple/request.h 5a70e8aa824b2f41dcd7643c54c2cf1c5b1f0bbc
+++ libpurple/request.h e3efe6af24cace0a6ecd9edd945ceed725f49516
@@ -1403,6 +1403,7 @@ void *purple_request_action_varg(void *h
/**
* Version of purple_request_action() supplying an image for the UI to
* optionally display as an icon in the dialog; see its documentation
+ * @since 2.7.0
*/
void *purple_request_action_with_icon(void *handle, const char *title,
const char *primary, const char *secondary, int default_action,
@@ -1413,6 +1414,7 @@ void *purple_request_action_with_icon(vo
/**
* <tt>va_list</tt> version of purple_request_action_with_icon();
* see its documentation.
+ * @since 2.7.0
*/
void *purple_request_action_varg_with_icon(void *handle, const char *title,
const char *primary, const char *secondary, int default_action,
More information about the Commits
mailing list