# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1392427242 0 # Node ID 7ffa1b256c33bc1dadd85c7cbed3d747bdf7d8e8 # Parent d3d47254967102e8c57a686e35f8125b1f6955d5 Update debian changelog. diff -r d3d472549671 -r 7ffa1b256c33 debian/changelog --- a/debian/changelog Thu Feb 13 05:04:50 2014 +0000 +++ b/debian/changelog Sat Feb 15 01:20:42 2014 +0000 @@ -1,3 +1,33 @@ +dwindows (3.0-1) unstable; urgency=low + + * Added package configuration (pkg-config) support on Unix. + * Changed DW_CLR_DEFAULT behavior to improve consistency. + * Added dw_signal_connect_data() which features a callback on signal disconnection. + * Improvements for building on 64bit Windows with MinGW. + Window styles, HTML and Toolbar widgets are now supported. + * Added dw_shutdown() for use when shutting down Dynamic Windows but not quite ready + to exit immediately. (Functions like dw_exit() without the exit()) + * Separated the container "title" (string) and "data" (pointer) into separate spaces. + The "classic" functions which take (char *) parameters now maintain their + own string memory backing so you no longer need to keep the data available. + * Removed dw_container_set_row_data() and dw_container_change_row_data() macros. + * Added dw_container_set_row_data() and dw_container_change_row_data() functions. + * Removed the "_dw_textcomp" container data flag, dw_container_cursor() and + dw_container_delete_row() which take (char *) now function in text compare mode. + * Added dw_container_cursor_by_data() and dw_container_delete_row_by_data() + functions which do the same things except in pointer comparison mode. + * Added DW_CR_RETDATA flag to dw_container_query_*() functions to return the + data pointer instead of the string pointer, this may change in the future. + * Added exported internal functions _dw_init_thread() and _dw_deinit_thread() + for language bindings to setup/cleanup threads created for DW use. + * Fixed some memory leaks. + * WARNING: Changed how tree and container titles are returned, they are now duplicated + and need to be freed with dw_free(). This affects the following functions: + dw_tree_get_title(), dw_container_query_start() and dw_container_query_next() + You should audit any code using these functions for leaks if using verison 3. + + -- Brian Smith Fri, 14 Feb 2014 08:00:00 +1000 + dwindows (2.5-1) unstable; urgency=low * Added dw_window_set_focus() to focus a widget after the window is shown.