Prepare a first 1.13.0 pre-release

This commit is contained in:
Davide Andreoli 2015-02-03 20:51:35 +01:00
parent 7eb3217a69
commit 806fad39cb
5 changed files with 69 additions and 7 deletions

View File

@ -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

View File

@ -1,6 +1,6 @@
.. currentmodule:: efl.emotion
:class:`efl.emotion.Emotion` Class
============================
==================================
.. autoclass:: efl.emotion.Emotion

View File

@ -1,3 +1,3 @@
__version__ = "1.12.99"
__version_info__ = ( 1, 12, 99 )
__version__ = "1.13.0"
__version_info__ = ( 1, 13, 0 )

View File

@ -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:

View File

@ -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: