From d58b37539bf0c846816b50e2e43c7995852d0227 Mon Sep 17 00:00:00 2001 From: Gustavo Lima Chaves Date: Thu, 30 Aug 2012 23:19:05 +0000 Subject: [PATCH] [elm] NEWS, Changelog and @since for my residual porting work. SVN revision: 75908 --- legacy/elementary/ChangeLog | 13 +++++++++++++ legacy/elementary/NEWS | 19 ++++++++++++++++++- legacy/elementary/src/lib/elc_ctxpopup.h | 3 ++- .../src/lib/elc_fileselector_entry.h | 3 ++- .../elementary/src/lib/elc_multibuttonentry.h | 3 ++- legacy/elementary/src/lib/elc_popup.h | 2 +- legacy/elementary/src/lib/elm_entry.h | 6 +++--- legacy/elementary/src/lib/elm_panel.h | 2 +- legacy/elementary/src/lib/elm_toolbar.h | 4 ++-- 9 files changed, 44 insertions(+), 11 deletions(-) diff --git a/legacy/elementary/ChangeLog b/legacy/elementary/ChangeLog index a5fd94fd76..d0020df43f 100644 --- a/legacy/elementary/ChangeLog +++ b/legacy/elementary/ChangeLog @@ -409,3 +409,16 @@ 2012-08-30 Carsten Haitzler (The Rasterman) 1.7.0 release + +2012-08-30 Gustavo Lima Chaves (glima) + + Toolbar widget is now a scrollable widget. + Entry widget is now a scrollable layout. + Fileselector entry widget is now an elm layout. + Ctxpopup widget is now an elm layout. + Multibutton entry entry is now an elm layout. + Popup widget is now an elm layout. + Panel widget is now an elm layout. + All internal widget hooks (and related macros) were removed, due + to deprecation. Thus, people using that (unstable) API will have + to adapt themselves. diff --git a/legacy/elementary/NEWS b/legacy/elementary/NEWS index 284646ad9d..efb8d29d2b 100644 --- a/legacy/elementary/NEWS +++ b/legacy/elementary/NEWS @@ -1,4 +1,21 @@ -Elementary 1.7.0 +Changes since Elementary 1.7.0: +------------------------- + +Improvements: + + * Toolbar widget is now a scrollable widget. + * Entry widget is now a scrollable layout. + * Fileselector entry widget is now an elm layout. + * Ctxpopup widget is now an elm layout. + * Multibutton entry entry is now an elm layout. + * Popup widget is now an elm layout. + * Panel widget is now an elm layout. + +Removals: + + * All internal widget hooks (and related macros) were removed, due + to deprecation. Thus, people using that (unstable) API will have + to adapt themselves. Changes since Elementary 1.0.0: ------------------------- diff --git a/legacy/elementary/src/lib/elc_ctxpopup.h b/legacy/elementary/src/lib/elc_ctxpopup.h index 1982053d8a..ce6cc7c595 100644 --- a/legacy/elementary/src/lib/elc_ctxpopup.h +++ b/legacy/elementary/src/lib/elc_ctxpopup.h @@ -19,7 +19,8 @@ * number of items (hence the use of list, not genlist). * * This widget inherits from the @ref Layout one, so that all the - * functions acting on it also work for context popup objects. + * functions acting on it also work for context popup objects + * (@since 1.8). * * This widget emits the following signals, besides the ones sent from * @ref Layout: diff --git a/legacy/elementary/src/lib/elc_fileselector_entry.h b/legacy/elementary/src/lib/elc_fileselector_entry.h index d59b984e1e..7aa39b3199 100644 --- a/legacy/elementary/src/lib/elc_fileselector_entry.h +++ b/legacy/elementary/src/lib/elc_fileselector_entry.h @@ -21,7 +21,8 @@ * a smart event and as the new text on the entry. * * This widget inherits from the @ref Layout one, so that all the - * functions acting on it also work for file selector entry objects. + * functions acting on it also work for file selector entry objects + * (@since 1.8). * * This widget encapsulates operations on its internal file * selector on its own API. There is less control over its file diff --git a/legacy/elementary/src/lib/elc_multibuttonentry.h b/legacy/elementary/src/lib/elc_multibuttonentry.h index f49c91b0a3..219fb9d804 100644 --- a/legacy/elementary/src/lib/elc_multibuttonentry.h +++ b/legacy/elementary/src/lib/elc_multibuttonentry.h @@ -18,7 +18,8 @@ * that can be clicked for further actions. * * This widget inherits from the @ref Layout one, so that all the - * functions acting on it also work for multi-button entry objects. + * functions acting on it also work for multi-button entry objects + * (@since 1.8). * * This widget emits the following signals, besides the ones sent from * @ref Layout: diff --git a/legacy/elementary/src/lib/elc_popup.h b/legacy/elementary/src/lib/elc_popup.h index b6c5531b6c..c0900bc00f 100644 --- a/legacy/elementary/src/lib/elc_popup.h +++ b/legacy/elementary/src/lib/elc_popup.h @@ -64,7 +64,7 @@ * buttons currently set to popup. * * This widget inherits from the @ref Layout one, so that all the - * functions acting on it also work for popup objects. + * functions acting on it also work for popup objects (@since 1.8). * * This widget emits the following signals, besides the ones sent from * @ref Layout: diff --git a/legacy/elementary/src/lib/elm_entry.h b/legacy/elementary/src/lib/elm_entry.h index 7b7b38aa30..dd842290b9 100644 --- a/legacy/elementary/src/lib/elm_entry.h +++ b/legacy/elementary/src/lib/elm_entry.h @@ -28,11 +28,11 @@ * formatted markup text. * * This widget inherits from the @ref Layout one, so that all the - * functions acting on it also work for entry objects. + * functions acting on it also work for entry objects (@since 1.8). * * This widget implements the @b @ref elm-scrollable-interface - * interface, so that all (non-deprecated) functions for the base @ref - * Scroller widget also work for entries. + * interface, so that all (non-deprecated) functions for the base + * @ref Scroller widget also work for entries (@since 1.8). * * Some calls on the entry's API are marked as @b deprecated, as they * just wrap the scrollable widgets counterpart functions. Use the diff --git a/legacy/elementary/src/lib/elm_panel.h b/legacy/elementary/src/lib/elm_panel.h index 3f02312178..eade37e6e9 100644 --- a/legacy/elementary/src/lib/elm_panel.h +++ b/legacy/elementary/src/lib/elm_panel.h @@ -19,7 +19,7 @@ * @li @c ELM_PANEL_ORIENT_BOTTOM * * This widget inherits from the @ref Layout one, so that all the - * functions acting on it also work for panel objects. + * functions acting on it also work for panel objects (@since 1.8). * * Default content parts of the panel widget that you can use are: * @li @c "default" - A content of the panel diff --git a/legacy/elementary/src/lib/elm_toolbar.h b/legacy/elementary/src/lib/elm_toolbar.h index 0b6793ef90..31dc5c036c 100644 --- a/legacy/elementary/src/lib/elm_toolbar.h +++ b/legacy/elementary/src/lib/elm_toolbar.h @@ -20,8 +20,8 @@ * Items can have multiple states, or show menus when selected by the user. * * This widget implements the @b @ref elm-scrollable-interface - * interface, so that all (non-deprecated) functions for the base @ref - * Scroller widget also work for toolbars. + * interface, so that all (non-deprecated) functions for the base + * @ref Scroller widget also work for toolbars (@since 1.8) * * Smart callbacks one can listen to: * - @c "clicked" - when the user clicks on a toolbar item and becomes