From 806fad39cb88fc9ee484b5099a75eae4a3c84053 Mon Sep 17 00:00:00 2001 From: Dave Andreoli Date: Tue, 3 Feb 2015 20:51:35 +0100 Subject: [PATCH] Prepare a first 1.13.0 pre-release --- ChangeLog | 56 +++++++++++++++++++++++++++++++++-- doc/emotion/class-emotion.rst | 2 +- efl/__init__.py | 4 +-- efl/elementary/transit.pyx | 2 +- efl/evas/efl.evas.pyx | 12 ++++++++ 5 files changed, 69 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index d3e9a33..fbe9cde 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,51 @@ +=================== +2015-02-03 v1.13.0 +=================== + +Improvements: + + * better docs for everything + * some new elm examples/tests + * new efl.utils.setup helper module to simplify user setup.py + * new uninstall setup.py command + + +Changes: + + * raised cython requirements to 0.21 + * ecore.x module renamed to ecore_x + * removed evas.SmartObject class, it was broken + + +Additions: + + * efl.utils.setup module + * elm.Configuration.slider_indicator_visible_mode + * elm.Gengrid.callback_clicked_right_add + * elm.Genlist.callback_clicked_right_add + * elm.List.callback_clicked_right_add + * elm.Scrollable.step_size + * elm.Table.align + * elm.Theme.group_base_list_get + * elm.Transit.tween_mode_factor_n + * elm.ELM_TRANSIT_TWEEN_MODE_DIVISOR_INTERP + * elm.ELM_TRANSIT_TWEEN_MODE_BOUNCE + * elm.ELM_TRANSIT_TWEEN_MODE_SPRING + * elm.ELM_TRANSIT_TWEEN_MODE_BEZIER_CURVE + * elm.DialogWindow + * elm.Window.callback_theme_changed_add + * evas.Map.util_object_move_sync + * evas.Object.size_hint_expand + * evas.Object.size_hint_fill + * evas.EXPAND_BOTH + * evas.EXPAND_HORIZ + * evas.EXPAND_VERT + * evas.FILL_BOTH + * evas.FILL_HORIZ + * evas.FILL_VERT + + =================== 2014-11-23 v1.12.0 =================== @@ -151,7 +198,8 @@ Additions: * elm.Toolbar.callback_item_unfocused_add -Deprecation: +Deprecations: + * elm.Datetime.callback_languge_changed_add: Use callback_language_changed_add instead. @@ -202,7 +250,8 @@ Additions: * elm.Window.wm_rotation_supported -Deprecation: +Deprecations: + * elm.FileselectorButton.expandable: Combine with Fileselector class instead * elm.FileselectorButton.folder_only: Combine with Fileselector class instead * elm.FileselectorButton.is_save: Combine with Fileselector class instead @@ -269,7 +318,7 @@ Changes: * elm.MenuItem.subitems: Calling del on this property clears the subitems -Deprecation: +Deprecations: * elm.Diskselector.bounce: You should combine with Scrollable class instead * elm.Diskselector.scroller_policy: You should combine with Scrollable class instead @@ -312,6 +361,7 @@ Deprecation: Additions: + * efl container package * Loggers * Using keyword arguments to set properties diff --git a/doc/emotion/class-emotion.rst b/doc/emotion/class-emotion.rst index 23c28bd..485fb96 100644 --- a/doc/emotion/class-emotion.rst +++ b/doc/emotion/class-emotion.rst @@ -1,6 +1,6 @@ .. currentmodule:: efl.emotion :class:`efl.emotion.Emotion` Class -============================ +================================== .. autoclass:: efl.emotion.Emotion diff --git a/efl/__init__.py b/efl/__init__.py index 34548df..8a57d15 100644 --- a/efl/__init__.py +++ b/efl/__init__.py @@ -1,3 +1,3 @@ -__version__ = "1.12.99" -__version_info__ = ( 1, 12, 99 ) +__version__ = "1.13.0" +__version_info__ = ( 1, 13, 0 ) diff --git a/efl/elementary/transit.pyx b/efl/elementary/transit.pyx index afe4a2b..d71be84 100644 --- a/efl/elementary/transit.pyx +++ b/efl/elementary/transit.pyx @@ -579,7 +579,7 @@ cdef class Transit(object): This is the same as :py:attr:`tween_mode_factor`, but lets you specify more than 2 values. Actually only need for the - :ref:`ELM_TRANSIT_TWEEN_MODE_BEZIER_CURVE` mode. + ELM_TRANSIT_TWEEN_MODE_BEZIER_CURVE mode. ELM_TRANSIT_TWEEN_MODE_BEZIER_CURVE Use an interpolated cubic-bezier curve ajusted with 4 parameters: diff --git a/efl/evas/efl.evas.pyx b/efl/evas/efl.evas.pyx index 1446657..103db64 100644 --- a/efl/evas/efl.evas.pyx +++ b/efl/evas/efl.evas.pyx @@ -62,25 +62,37 @@ Helper values to be used as :ref:`evas-size-hints` for objects. Expand in both direction + .. versionadded:: 1.13 + .. data:: EXPAND_HORIZ = EVAS_HINT_EXPAND, 0.0 Expand horizontally + + .. versionadded:: 1.13 .. data:: EXPAND_VERT = 0.0, EVAS_HINT_EXPAND Expand vertically + + .. versionadded:: 1.13 .. data:: FILL_BOTH = EVAS_HINT_FILL, EVAS_HINT_FILL Fill both direction + + .. versionadded:: 1.13 .. data:: FILL_HORIZ = EVAS_HINT_FILL, 0.5 Fill horizontally + + .. versionadded:: 1.13 .. data:: FILL_VERT = 0.5, EVAS_HINT_FILL Fill vertically + + .. versionadded:: 1.13 .. _Evas_Button_Flags: