diff --git a/legacy/eina/ChangeLog b/legacy/eina/ChangeLog index 7c75b01983..468f7d0d47 100644 --- a/legacy/eina/ChangeLog +++ b/legacy/eina/ChangeLog @@ -320,3 +320,7 @@ * Modify eina_prefix to deal with debian's fun new multiarch... if you are a shared library. +2012-08-01 Gustavo Sverzut Barbieri (k-s) + + * added eina_log_console_color_set() for cross platform console + color set. diff --git a/legacy/eina/NEWS b/legacy/eina/NEWS index 43e827b249..4ec046a384 100644 --- a/legacy/eina/NEWS +++ b/legacy/eina/NEWS @@ -17,6 +17,7 @@ Fixes: * Fix issue in the XML parser when a tag was in a comment or a CDATA. * Implement eina_file_map_lines() on Windows. * Handle NULL in all eina_*_free function. + * eina_log_console_color_set() Removal: * configure options: --disable-posix-threads, --disable-win32-threads, diff --git a/legacy/eina/src/include/eina_log.h b/legacy/eina/src/include/eina_log.h index 6a1879492f..ea50c21002 100644 --- a/legacy/eina/src/include/eina_log.h +++ b/legacy/eina/src/include/eina_log.h @@ -900,6 +900,8 @@ EAPI void eina_log_print_cb_file(const Eina_Log_Domain *d, * @note if color is disabled, nothing is done. See * eina_log_color_disable_get() * @note on windows, both @a fp and @a color is converted automatically. + * + * @since 1.7 */ EAPI void eina_log_console_color_set(FILE *fp, const char *color) EINA_ARG_NONNULL(1, 2);