diff options
author | Dave Andreoli <dave@gurumeditation.it> | 2016-02-06 14:59:44 +0100 |
---|---|---|
committer | Dave Andreoli <dave@gurumeditation.it> | 2016-02-06 14:59:44 +0100 |
commit | 666817672096502a197bae021617348fde501b14 (patch) | |
tree | 0e3f1750b4367c83f31cc763632a31ac074f322e | |
parent | 9a3d441f1c5a7bdf13d95af53062991bc8a0e009 (diff) |
Prepare the 1.17 releasev1.17.0
-rw-r--r-- | ChangeLog | 61 | ||||
-rw-r--r-- | efl/__init__.py | 4 |
2 files changed, 63 insertions, 2 deletions
@@ -1,4 +1,65 @@ | |||
1 | 1 | ||
2 | ================== | ||
3 | 2016-01-7 v1.17.0 | ||
4 | ================== | ||
5 | |||
6 | Fixes: | ||
7 | * Fixed compatibility with python 3.5 (utils.deprecated was broken) | ||
8 | * Various ref leaks fixed in elementary | ||
9 | * Multibuttonentry filter callback | ||
10 | |||
11 | Additions: | ||
12 | * ecore_input Module | ||
13 | * ecore_con Module | ||
14 | * ecore_con.Url Class | ||
15 | * ecore_con.Lookup Class | ||
16 | * evas.Object.paragraph_direction | ||
17 | * evas.EVAS_BIDI_DIRECTION_INHERIT | ||
18 | * edje.Edje.color_class_clear | ||
19 | * edje.Edje.size_class_del | ||
20 | * edje.Edje.size_class_get | ||
21 | * edje.Edje.size_class_set | ||
22 | * edje.Edje.text_class_del | ||
23 | * edje.size_class_del | ||
24 | * edje.size_class_get | ||
25 | * edje.size_class_list | ||
26 | * edje.size_class_set | ||
27 | * ethumb Module | ||
28 | * ethumb.Ethumb Class | ||
29 | * ethumb_client Module | ||
30 | * ethumb_client.EthumbClient Class | ||
31 | * elm.Combobox Class | ||
32 | * elm.Configuration.context_menu_disabled | ||
33 | * elm.Configuration.profile_derived_add | ||
34 | * elm.Configuration.profile_derived_del | ||
35 | * elm.Configuration.profile_exists | ||
36 | * elm.Configuration.profile_list_full | ||
37 | * elm.Configuration.profile_save | ||
38 | * elm.Ctxpopup.callback_geometry_update_add | ||
39 | * elm.ELM_GENGRID_ITEM_SCROLLTO_BOTTOM | ||
40 | * elm.Gengrid.drag_item_container_add | ||
41 | * elm.Gengrid.drag_item_container_del | ||
42 | * elm.Gengrid.drop_item_container_add | ||
43 | * elm.Gengrid.drop_item_container_del | ||
44 | * elm.ELM_GENLIST_ITEM_SCROLLTO_BOTTTOM | ||
45 | * elm.Genlist.callback_filter_done_add | ||
46 | * elm.Genlist.drag_item_container_add | ||
47 | * elm.Genlist.drag_item_container_del | ||
48 | * elm.Genlist.drop_item_container_add | ||
49 | * elm.Genlist.drop_item_container_del | ||
50 | * elm.Genlist.filter | ||
51 | * elm.MultiButtonEntry.filter_remove | ||
52 | * elm.Notify.callback_dismissed_add | ||
53 | * elm.Notify.dismiss | ||
54 | * elm.Object.callback_moved_add | ||
55 | * elm.Object.drag_action_set | ||
56 | * elm.Object.drag_start | ||
57 | * elm.Object.drop_target_add | ||
58 | * elm.Object.drop_target_del | ||
59 | * elm.Popup.callback_dismissed_add | ||
60 | * elm.Popup.dismiss | ||
61 | |||
62 | |||
2 | =================== | 63 | =================== |
3 | 2015-11-14 v1.16.0 | 64 | 2015-11-14 v1.16.0 |
4 | =================== | 65 | =================== |
diff --git a/efl/__init__.py b/efl/__init__.py index 137df12..32fd3b9 100644 --- a/efl/__init__.py +++ b/efl/__init__.py | |||
@@ -20,5 +20,5 @@ | |||
20 | # pre-release: "1.13.0-beta1" ( 1, 13, 0 ) | 20 | # pre-release: "1.13.0-beta1" ( 1, 13, 0 ) |
21 | # release: "1.13.0" ( 1, 13, 0 ) | 21 | # release: "1.13.0" ( 1, 13, 0 ) |
22 | 22 | ||
23 | __version__ = "1.16.99" | 23 | __version__ = "1.17.0" |
24 | __version_info__ = ( 1, 16, 99 ) | 24 | __version_info__ = ( 1, 17, 0 ) |