-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathChangeLog
963 lines (843 loc) · 31.2 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
===================
2023-10-08 v1.26.1
===================
Maintenance release:
* rebuilt using Cython 0.29.34 to fix install on python 3.11
===================
2022-02-27 v1.26.0
===================
Changes:
* Switched to setuptools for the build system (can now install from pip again)
* Dropped py2.6 support, minimum is now 2.7
* Deprecated python2 support, with a big-fat-slow warning
* Improved documentation
Fixes:
* Fixed a memory allocation error in EvasSmart
===================
2020-09-24 v1.25.0
===================
Changes:
* Switched to Cython 0.29.21 for the tarball generation
===================
2020-04-30 v1.24.0
===================
Changes:
* Switched to Cython 0.29.16 for the tarball generation
* No more pypi packages uploaded, you must install from tarball
===================
2019-10-06 v1.23.0
===================
Changes:
* Switched to Cython 0.29.13 for the tarball generation
===================
2019-04-23 v1.22.0
===================
Changes:
* Switched to Cython 0.29.7 for the tarball generation
===================
2018-08-24 v1.21.0
===================
BREAKS:
* systray.pxi do not work anymore as the widget has been removed from efl.
The widget has been completly removed and the function elm_need_systray
now always return False that means systray is not available.
Apologies for the inconvenient.
Changes:
* Switched to Cython 0.28.4 for the tarball generation, should fix build
issues with python3.7
Additions:
* ecore.ECORE_EXE_ISOLATE_IO
* edje.part_text_prediction_hint_hash_del
* edje.part_text_prediction_hint_hash_set
* elm.Entry.prediction_hint_hash_del
* elm.Entry.prediction_hint_hash_set
* elm.Ctxpopup.item_insert_after
* elm.Ctxpopup.item_insert_before
===================
2017-05-06 v1.20.0
===================
Fixes:
* ecore.input and ecore.x can now coexsist
Changes:
* ecore.Poller is no more an Eo object in C (nothing should be changed in py)
* removed edje.Object custom __repr__ implementation
* Use Cython 23.5 to generate the C source in dist tarball (see T5589)
Additions:
* elm.Entry.prediction_hint
* elm.Genlist.multi_select_mode
* elm.Menu.open()
* elm.Spinner.callback_max_reached_add()
* elm.Spinner.callback_max_reached_del()
* edje.part_text_prediction_hint_set()
* evas.Map.coords_get()
===================
2017-04-18 v1.19.0
===================
Fixes:
* Fixes for cython 0.25 compatibility
* elm.font_properties_get
* elm.Gengrid.item_insert_after now work as expected
Changes:
* Removed ecore warning about subprocess incompatibility, with test to prove it
* Emotion: changed default module_name to "gstreamer1"
* elm.font_properties_free: Changed to no-op as we now do the free
automatically when there are no more references to the FontProperties object
* elm.Panel.scrollable_content_size is now also readable
* EcoreConUrl is no more an Eo object in C
Additions:
* evas.Image.load_head_skip
* elm.ELM_INPUT_PANEL_LAYOUT_VOICE
* elm.ELM_CALENDAR_REVERSE_DAILY
* elm.Calendar.date_max
* elm.Calendar.date_min
* elm.GengridItem.custom_size
* elm.Image.async_open
* elm.Image.callback_load_cancel_add
* elm.Image.callback_load_error_add
* elm.Image.callback_load_open_add
* elm.Image.callback_load_ready_add
* elm.Naviframe.callback_item_activated_add
* elm.Panel.callback_toggled_add
* elm.Progressbar.is_pulsing
* elm.Spinner.callback_drag_start_add
* elm.Spinner.callback_drag_stop_add
===================
2016-08-22 v1.18.0
===================
Fixes:
* Fixed (workaround) dbus crash on python >= 3.5
* Fixed Logger module to not fail on unicode error messages
Changes:
* Changed enums implementation to gain compatibility with Cython > 0.22
* Docs: Allow to skip last_updated and sphinx_version
* elm.Combobox: The combobox widget has been deprecated.
* elm.Photo.editable property is now also readable
* elm.Photo.fill_inside property is now also readable
* elm.Photo.size property is now also readable
Additions:
* ecore.Exe.is_deleted
* ecore.FdHandler.is_deleted
* edje.Edje.part_box_insert_after
* elm.Configuration.accel_preference_override
* elm.Configuration.first_item_focus_on_first_focusin
* elm.Configuration.font_hint_type
* elm.Configuration.icon_theme
* elm.Configuration.popup_scrollable
* elm.Configuration.scroll_accel_factor
* elm.Configuration.scroll_animation_disabled
* elm.Configuration.vsync
* elm.Configuration.web_backend
* elm.Entry.file_text_format
* elm.Entry.select_allow
* elm.Entry.select_region
* elm.GengridItem.all_contents_unset
* elm.Genlist.filtered_items_count
* elm.GenlistItem.all_contents_unset
* elm.List.multi_select_mode (and the Elm_Object_Multi_Select_Mode enum)
* elm.Object.focus_move_policy_automatic
* elm.Popup.align
* elm.Popup.scrollable
* elm.Slider.range
* elm.Slider.range_enabled
* elm.Slider.indicator_show_on_focus
* elm.Transit.revert
* elm.Window.noblank
==================
2016-01-7 v1.17.0
==================
Fixes:
* Fixed compatibility with python 3.5 (utils.deprecated was broken)
* Various ref leaks fixed in elementary
* Multibuttonentry filter callback
Additions:
* ecore_input Module
* ecore_con Module
* ecore_con.Url Class
* ecore_con.Lookup Class
* evas.Object.paragraph_direction
* evas.EVAS_BIDI_DIRECTION_INHERIT
* edje.Edje.color_class_clear
* edje.Edje.size_class_del
* edje.Edje.size_class_get
* edje.Edje.size_class_set
* edje.Edje.text_class_del
* edje.size_class_del
* edje.size_class_get
* edje.size_class_list
* edje.size_class_set
* ethumb Module
* ethumb.Ethumb Class
* ethumb_client Module
* ethumb_client.EthumbClient Class
* elm.Combobox Class
* elm.Configuration.context_menu_disabled
* elm.Configuration.profile_derived_add
* elm.Configuration.profile_derived_del
* elm.Configuration.profile_exists
* elm.Configuration.profile_list_full
* elm.Configuration.profile_save
* elm.Ctxpopup.callback_geometry_update_add
* elm.ELM_GENGRID_ITEM_SCROLLTO_BOTTOM
* elm.Gengrid.drag_item_container_add
* elm.Gengrid.drag_item_container_del
* elm.Gengrid.drop_item_container_add
* elm.Gengrid.drop_item_container_del
* elm.ELM_GENLIST_ITEM_SCROLLTO_BOTTTOM
* elm.Genlist.callback_filter_done_add
* elm.Genlist.drag_item_container_add
* elm.Genlist.drag_item_container_del
* elm.Genlist.drop_item_container_add
* elm.Genlist.drop_item_container_del
* elm.Genlist.filter
* elm.MultiButtonEntry.filter_remove
* elm.Notify.callback_dismissed_add
* elm.Notify.dismiss
* elm.Object.callback_moved_add
* elm.Object.drag_action_set
* elm.Object.drag_start
* elm.Object.drop_target_add
* elm.Object.drop_target_del
* elm.Popup.callback_dismissed_add
* elm.Popup.dismiss
===================
2015-11-14 v1.16.0
===================
Additions:
* elm.Configuration.scroll_thumbscroll_smooth_amount
* elm.Configuration.scroll_thumbscroll_smooth_start
* elm.Configuration.scroll_thumbscroll_smooth_time_window
* elm.Genlist.callback_changed_add
* elm.GenlistItem.data is now also writable
* elm.Object.focus_next_item_get
* elm.Object.focus_next_item_set
* elm.Object.focus_region_show_mode
* elm.Object.tooltip_orient
* elm.ObjectItem.focus_next_item_get
* elm.ObjectItem.focus_next_item_set
* elm.ObjectItem.focus_next_object_get
* elm.ObjectItem.focus_next_object_set
===================
2015-08-05 v1.15.0
===================
Fixes:
* elm.Entry: Fixed name of the callback_rejected_del function
* Fixed build on OSX
* Fixed build when ecore-x is not available
* Fixed module init from embedded interpreter
Changes:
* Elm: Unify modules into a monolithic module
Additions:
* elm.Configuration.transition_duration_factor
* elm.Window.autohide
* elm.ELM_POLICY_QUIT_LAST_WINDOW_HIDDEN
* elm.Entry.callback_context_open_add/del
* elm.ELM_FOCUS_MOVE_POLICY_KEY_ONLY
* elm.Object.focus_move_policy
* elm.Scrollable.wheel_disabled
* evas.Textblock.obstacle_add
* evas.Textblock.obstacle_del
* evas.Textblock.obstacles_update
* evas.EVAS_CALLBACK_CANVAS_VIEWPORT_RESIZE
===================
2015-05-07 v1.14.0
===================
Fixes:
* Fixed evas.Textgrid to not leak on cellrow_set()
Improvements:
* Re-added evas.SmartObject (with incompatible API compared to the earlier
incarnation) and made elm.Object inherit from it.
* Better init/shutdown management in all modules, no more need to
manually call those functions (no harm in doing it though).
Changes:
* elm.List.callback_highlighted_add: Added item param to func
* elm.List.callback_unhighlighted_add: Added item param to func
* elm.Toolbar.callback_clicked_add: Added item param to func
* elm.Toolbar.callback_longpressed_add: Added item param to func
* elm.Slideshow: item_data are now a single value, instead of args/kargs,
like is implemented in Gengrid/Genlist
Additions:
* evas.Smart
* evas.Image.orient
* edje.Edje.text_class_get
* edje.text_class_get
* elm.systray
* elm.Configuration.window_auto_focus_animate
* elm.Configuration.window_auto_focus_enable
* elm.Image.memfile_set
* elm.MultiButtonEntry.callback_item_longpressed_add
* elm.MultiButtonEntry.callback_item_longpressed_del
* elm.NaviframeItem.pop_cb_set
* elm.Photocam.image_orient
* elm.Scrollable.loop
* elm.Slider.indicator_visible_mode
* elm.Transit.go_in
* elm.on_config_all_changed
* elm.on_ethumb_connect
* elm.on_policy_changed
* elm.on_process_background
* elm.LayoutClass.file is now also readable
* elm.Video.file is now also readable
Deprecation:
* evas.Rect.intercepts: Use intersects() instead
===================
2015-02-09 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
* fixed elm.Entry.cursor_content_get() to not crash when called
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
Deprecation:
* elm.Configuration.engine
* elm.Configuration.preferred_engine
===================
2014-11-23 v1.12.0
===================
Additions:
* Edje.base_scale
* Edje.part_text_input_hint_get
* Edje.part_text_input_hint_set
* elm.ELM_PROCESS_STATE_FOREGROUND
* elm.ELM_PROCESS_STATE_BACKGROUND
* elm.process_state_get
* elm.ELM_INPUT_HINT_NONE
* elm.ELM_INPUT_HINT_AUTO_COMPLETE
* elm.ELM_INPUT_HINT_SENSITIVE_DATA
* elm.ELM_INPUT_PANEL_LAYOUT_NORMAL_VARIATION_NORMAL
* elm.ELM_INPUT_PANEL_LAYOUT_NORMAL_VARIATION_FILENAME
* elm.ELM_INPUT_PANEL_LAYOUT_NORMAL_VARIATION_PERSON_NAME
* elm.ELM_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_NORMAL
* elm.ELM_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_SIGNED
* elm.ELM_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_DECIMAL
* elm.ELM_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_SIGNED_AND_DECIMAL
* elm.ELM_INPUT_PANEL_LAYOUT_PASSWORD_VARIATION_NORMAL
* elm.ELM_INPUT_PANEL_LAYOUT_PASSWORD_VARIATION_NUMBERONLY
* elm.Entry.input_hint
* elm.Fileselector.current_name
* elm.Panel.scrollable
* elm.Panel.scrollable_content_size
===================
2014-09-14 v1.11.0
===================
Additions:
* ecore.x.screensaver_blank_get
* ecore.x.screensaver_blank_set
* ecore.x.screensaver_custom_blanking_disable
* ecore.x.screensaver_custom_blanking_enable
* ecore.x.screensaver_event_available_get
* ecore.x.screensaver_event_listen_set
* ecore.x.screensaver_expose_get
* ecore.x.screensaver_expose_set
* ecore.x.screensaver_idle_time_get
* ecore.x.screensaver_interval_get
* ecore.x.screensaver_interval_set
* ecore.x.screensaver_resume
* ecore.x.screensaver_set
* ecore.x.screensaver_supend
* ecore.x.screensaver_timeout_get
* ecore.x.screensaver_timeout_set
* ELM_GLOB_MATCH_NO_ESCAPE
* ELM_GLOB_MATCH_PATH
* ELM_GLOB_MATCH_PERIOD
* ELM_GLOB_MATCH_NOCASE
* ELM_GENGRID_REORDER_TYPE_NORMAL
* ELM_GENGRID_REORDER_TYPE_SWAP
* elm.Gengrid.reorder_type
* elm.Gengrid.search_by_text_item_get
* elm.Genlist.search_by_text_item_get
* elm.Map.region_zoom_bring_in
* elm.Panes.content_left_min_relative_size
* elm.Panes.content_left_min_size
* elm.Panes.content_right_min_relative_size
* elm.Panes.content_right_min_size
* elm.Toolbar.callback_selected_add
* elm.Toolbar.callback_unselected_add
* Emotion.on_open_done_add
* Emotion.on_open_done_del
* Emotion.on_playback_started_add
* Emotion.on_playback_started_del
* Emotion.on_position_load_failed_add
* Emotion.on_position_load_failed_del
* Emotion.on_position_load_succeed_add
* Emotion.on_position_load_succeed_del
* Emotion.on_position_save_failed_add
* Emotion.on_position_save_failed_del
* Emotion.on_position_save_succeed_add
* Emotion.on_position_save_succeed_del
* Emotion.on_position_update_add
* Emotion.on_position_update_del
===================
2014-05-31 v1.10.0
===================
Additions:
* elm.Configuration.accel_preference
* elm.Configuration.atspi_mode
* elm.Configuration.audio_mute_get
* elm.Configuration.audio_mute_set
* elm.Configuration.color_classes_list
* elm.Configuration.color_overlay_apply
* elm.Configuration.color_overlay_list
* elm.Configuration.color_overlay_set
* elm.Configuration.color_overlay_unset
* elm.Configuration.focus_autoscroll_mode
* elm.Configuration.focus_highlight_clip_disabled
* elm.Configuration.focus_move_policy
* elm.Configuration.item_select_on_focus_disabled
* elm.Configuration.magnifier_enabled
* elm.Configuration.magnifier_scale
* elm.ELM_INPUT_PANEL_LAYOUT_DATETIME
* elm.ELM_INPUT_PANEL_LAYOUT_EMOTICON
* elm.ELM_INPUT_PANEL_RETURN_KEY_TYPE_SIGNIN
* elm.ELM_SYS_NOTIFY_CLOSED_EXPIRED
* elm.ELM_SYS_NOTIFY_CLOSED_DISMISSED
* elm.ELM_SYS_NOTIFY_CLOSED_REQUESTED
* elm.ELM_SYS_NOTIFY_CLOSED_UNDEFINED
* elm.ELM_SYS_NOTIFY_URGENCY_LOW
* elm.ELM_SYS_NOTIFY_URGENCY_NORMAL
* elm.ELM_SYS_NOTIFY_URGENCY_CRITICAL
* elm.sys_notify_close
* elm.sys_notify_send
* elm.ELM_OBJECT_MULTI_SELECT_MODE_DEFAULT
* elm.ELM_OBJECT_MULTI_SELECT_MODE_WITH_CONTROL
* elm.ELM_OBJECT_MULTI_SELECT_MODE_MAX
* elm.Gengrid.callback_item_focused_add
* elm.Gengrid.callback_item_reorder_anim_start_add
* elm.Gengrid.callback_item_reorder_anim_stop_add
* elm.Gengrid.callback_item_unfocused_add
* elm.Gengrid.multi_select_mode
* elm.Gengrid.page_relative
* elm.Gengrid.page_size
* elm.Gengrid.reorder_mode_start
* elm.Gengrid.reorder_mode_stop
* elm.Gengrid.wheel_disabled
* elm.Genlist.callback_item_focused_add
* elm.Genlist.callback_item_unfocused_add
* elm.Hoversel.callback_item_focused_add
* elm.Hoversel.callback_item_unfocused_add
* elm.List.callback_item_focused_add
* elm.List.callback_item_unfocused_add
* elm.ELM_FOCUS_MOVE_POLICY_CLICK
* elm.ELM_FOCUS_MOVE_POLICY_IN
* elm.ELM_FOCUS_AUTOSCROLL_MODE_SHOW
* elm.ELM_FOCUS_AUTOSCROLL_MODE_NONE
* elm.ELM_FOCUS_AUTOSCROLL_MODE_BRING_IN
* elm.Object.focused_item
* elm.Object.scroll_item_loop_enabled
* elm.ObjectItem.focus
* elm.ObjectItem.style
* elm.ObjectItem.track_count
* elm.ObjectItem.track_object
* elm.Popup.callback_item_focused_add
* elm.Popup.callback_item_unfocused_add
* elm.Toolbar.callback_item_focused_add
* elm.Toolbar.callback_item_unfocused_add
Deprecations:
* elm.Datetime.callback_languge_changed_add:
Use callback_language_changed_add instead.
==================
2014-03-05 v1.9.0
==================
Additions:
* elm.Clock.pause
* elm.Colorselector.palette_items_get
* elm.Colorselector.palette_selected_item_get
* elm.ColorselectorPaletteItem.selected
* elm.Ctxpopup.auto_hide_disabled
* elm.Entry.callback_rejected_add
* elm.Entry.input_panel_show_on_demand
* elm.ELM_FILESELECTOR_SORT_BY_FILENAME_ASC
* elm.ELM_FILESELECTOR_SORT_BY_FILENAME_DESC
* elm.ELM_FILESELECTOR_SORT_BY_TYPE_ASC
* elm.ELM_FILESELECTOR_SORT_BY_TYPE_DESC
* elm.ELM_FILESELECTOR_SORT_BY_SIZE_ASC
* elm.ELM_FILESELECTOR_SORT_BY_SIZE_DESC
* elm.ELM_FILESELECTOR_SORT_BY_MODIFIED_ASC
* elm.ELM_FILESELECTOR_SORT_BY_MODIFIED_DESC
* elm.Fileselector.custom_filter_append
* elm.Fileselector.sort_method
* elm.Fileselector.thumbnail_size
* elm.GenlistItem.subitems_count
* elm.GenlistItem.subitems_get
* elm.Hoversel.callback_expanded_add
* elm.Label.slide_speed
* elm.LayoutClass.content_swallow_list_get
* elm.Mapbuf.point_color_get
* elm.Mapbuf.point_color_set
* elm.MultiButtonEntry.format_function_set
* elm.NaviframeItem.title_enabled
* elm.NaviframeItem.title_enabled_get
* elm.NaviframeItem.title_enabled_set
* elm.Object.focus_highlight_style
* elm.Object.tooltip_move_freeze_get
* elm.Object.tooltip_move_freeze_pop
* elm.Object.tooltip_move_freeze_push
* elm.Window.wm_rotation_available_rotations
* elm.Window.wm_rotation_manual_done
* elm.Window.wm_rotation_manual_rotation_done
* elm.Window.wm_rotation_preferred_rotation
* elm.Window.wm_rotation_supported
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
* elm.FileselectorButton.path: Combine with Fileselector class instead
* elm.FileselectorEntry.callback_activated_add: Combine with Fileselector class instead
* elm.FileselectorEntry.expandable: Combine with Fileselector class instead
* elm.FileselectorEntry.folder_only: Combine with Fileselector class instead
* elm.FileselectorEntry.is_save: Combine with Fileselector class instead
* elm.FileselectorEntry.path: Combine with Fileselector class instead
* elm.FileselectorEntry.selected: Combine with Fileselector class instead
* elm.NaviframeItem.title_visible: Use title_enabled instead.
==================
2014-12-08 v1.8.0
==================
Changes:
* ecore.file.Download => efl.ecore.FileDownload
* edje.edit.EdjeEdit => efl.edje_edit.EdjeEdit
* Emotion: Keyword argument module_filename was renamed to module_name
* elm.Calendar.selected_time: Returns None when the selected date cannot be fetched
* elm.Ctxpopup: Now inherits from LayoutClass
* elm.Datetime.value:
Returns None when the value cannot be fetched
raise RuntimeError when setting the value failed
* elm.Datetime.value_max:
Returns None when the max value cannot be fetched
raise RuntimeError when setting the max value failed
* elm.Datetime.value_min:
Returns None when the min value cannot be fetched
raise RuntimeError when setting the min value failed
* elm.Entry: Now inherits from LayoutClass
* elm.Entry.cursor_geometry_get: Returns None when the cursor geometry cannot be fetched.
* elm.Entry.file: Raise RuntimeError when setting the file fails, instead of returning a bool.
* elm.FileselectorEntry: Inherits from LayoutClass.
* elm.GestureLayer.attach: Raise RuntimeError on failure, instead of returning a bool
* elm.Icon.standard: Raises RuntimeWarning when setting the standard name fails, instead of returning a bool.
* elm.Image.file: Raises RuntimeError when setting the file fails, instead of returning a bool.
* elm.LayoutClass.box_append: Raises RuntimeError if adding the child fails
* elm.LayoutClass.box_insert_at: Raises RuntimeError if adding the child fails
* elm.LayoutClass.box_insert_before: Raises RuntimeError if adding the child fails
* elm.LayoutClass.box_prepend: Raises RuntimeError if adding the child fails
* elm.LayoutClass.box_remove_all: Raises RuntimeError if removing the children fails
* elm.LayoutClass.content_set: Raises RuntimeError if setting the content fails.
* elm.LayoutClass.file: Raises RuntimeError if setting the file fails
* elm.LayoutClass.part_cursor_engine_only_set: Raises RuntimeError if setting the value fails
* elm.LayoutClass.part_cursor_set: Raises RuntimeError if setting the cursor fails
* elm.LayoutClass.part_cursor_style_set: Raises RuntimeError if setting the cursor style fails
* elm.LayoutClass.part_cursor_unset: Raises RuntimeError if unsetting the cursor fails
* elm.LayoutClass.table_clear: Raises RuntimeError if clearing the table fails
* elm.LayoutClass.table_pack: Raises RuntimeError if adding the child fails
* elm.LayoutClass.text_set: Raises RuntimeError if setting the text fails
* elm.LayoutClass.theme: Raises RuntimeError if setting the theme fails
* elm.Panel: Inherits from LayoutClass.
* elm.Photo.file: Raises RuntimeError if setting the file fails
* elm.Plug.connect: Raises RuntimeError if adding the child fails
* elm.Popup: Inherits from LayoutClass.
* elm.Thumb.editable: Raises RuntimeError if cannot be set as editable
* elm.Toolbar: Inherits from LayoutClass.
* elm.Video.file: Raises RuntimeError if setting the file/uri fails
* elm.Window.socket_listen: Raises RuntimeError if creating a socket fails
* elm.MenuItem.subitems: Calling del on this property clears the subitems
Deprecations:
* elm.Diskselector.bounce: You should combine with Scrollable class instead
* elm.Diskselector.scroller_policy: You should combine with Scrollable class instead
* elm.Entry.bounce: You should combine with Scrollable class instead
* elm.Entry.markup_to_utf8: Use the module level markup_to_utf8() method instead
* elm.Entry.scrollbar_policy: You should combine with Scrollable class instead
* elm.Entry.utf8_to_markup: Use the module level utf8_to_markup() method instead
* elm.Entry_markup_to_utf8: Use markup_to_utf8() instead
* elm.Entry_utf8_to_markup: Use utf8_to_markup() instead
* elm.Gengrid.bounce: You should combine with Scrollable class instead
* elm.Gengrid.scroller_policy: You should combine with Scrollable class instead
* elm.GengridItem.item_tooltip_unset: Use tooltip_unset() instea
* elm.Genlist.bounce: You should combine with Scrollable class instead
* elm.Genlist.scroller_policy: You should combine with Scrollable class instead
* elm.Index.item_find: Broken, don't use
* elm.Label.slide: Use slide_mode instead
* elm.Label.slide_get: Use slide_mode instead
* elm.Label.slide_set: Use slide_mode instead
* elm.List.bounce: You should combine with Scrollable class instead
* elm.List.scroller_policy: You should combine with Scrollable class instead
* elm.Map.bounce: You should combine with Scrollable class instead
* elm.Map.scroller_policy: You should combine with Scrollable class instead
* elm.NaviframeItem.item_pop_to: Use pop_to() instead
* elm.NaviframeItem.item_promote: Use promote() instead
* elm.need_e_dbus: Use need_eldbus() for eldbus (v2) support. Old API is deprecated
* elm.Notify.orient_get: Use align instead
* elm.Notify.orient_set: Use align instead
* elm.Object.domain_translatable_text_part_set: Use domain_translatable_part_text_set() instead
* elm.Object.translatable_text_part_get: Use translatable_part_text_get() instead
* elm.Object.widget_check: Use type(obj) instead
* elm.ObjectItem.data_get: Use the data attribute (dict) instead
* elm.ObjectItem.data_set: Use the data attribute (dict) instead
* elm.Photocam.bounce: You should combine with Scrollable class instead
* elm.Photocam.scroller_policy: You should combine with Scrollable class instead
* elm.Radio.value_pointer_set: Don't use this, only works in C
* elm.Scrollable.custom_widget_base_theme_set: Use theme instead
* elm.Toolbar.bounce: You should combine with Scrollable class instead
* elm.Toolbar.scroller_policy: You should combine with Scrollable class instead
* elm.Web.uri: Use property "url" instead
Additions:
* efl container package
* Loggers
* Using keyword arguments to set properties
* ecore.FileDownload
* ecore.FileMonitor
* ecore.Poller
* ecore.Timer.delay
* ecore.Timer.pending
* ecore.Timer.reset
* Edje.mirrored
* Edje.preload
* Edje.scale
* Edje.size_min_restricted_calc
* Edje.update_hints
* evas.Image.source_events
* evas.Image.source_visible
* evas.Textgrid
* evas.TextgridCell
* Emotion.bg_color
* Emotion.border
* Emotion.image_get
* Emotion.keep_aspect
* Emotion.last_position_load
* Emotion.last_position_save
* Emotion.play_speed
* Emotion.priority
* Emotion.suspend
* Emotion.video_subtitle_file
* elm.Popup.callback_language_changed_add
* elm.Bubble.callback_focused_add
* elm.Bubble.callback_unfocused_add
* elm.Button.callback_focused_add
* elm.Button.callback_unfocused_add
* elm.Calendar.callback_focused_add
* elm.Calendar.callback_unfocused_add
* elm.Calendar.displayed_time
* elm.Calendar.selectable
* elm.Check.callback_focused_add
* elm.Check.callback_unfocused_add
* elm.Clock.callback_focused_add
* elm.Clock.callback_unfocused_add
* elm.Colorselector.callback_focused_add
* elm.Colorselector.callback_unfocused_add
* elm.Configuration.clouseau_enabled
* elm.Configuration.glayer_double_tap_timeout
* elm.Configuration.glayer_long_tap_start_timeout
* elm.Configuration.indicator_service_get
* elm.Configuration.scroll_thumbscroll_acceleration_threshold
* elm.Configuration.scroll_thumbscroll_acceleration_time_limit
* elm.Configuration.scroll_thumbscroll_acceleration_weight
* elm.Configuration.scroll_thumbscroll_border_friction
* elm.Configuration.scroll_thumbscroll_flick_distance_tolerance
* elm.Configuration.scroll_thumbscroll_hold_threshold
* elm.Configuration.scroll_thumbscroll_min_friction
* elm.Configuration.selection_unfocused_clear
* elm.Configuration.softcursor_mode
* elm.Conformant.callback_clipboard_state_off_add
* elm.Conformant.callback_clipboard_state_on_add
* elm.Conformant.callback_virtualkeypad_state_off_add
* elm.Conformant.callback_virtualkeypad_state_on_add
* elm.Ctxpopup.callback_focused_add
* elm.Ctxpopup.callback_unfocused_add
* elm.Datetime.callback_focused_add
* elm.Datetime.callback_unfocused_add
* elm.Dayselector.weekdays_names
* elm.Diskselector.callback_focused_add
* elm.Diskselector.callback_unfocused_add
* elm.Entry.autocapital_type
* elm.Entry.context_menu_item_add
* elm.Entry.end_visible
* elm.Entry.input_panel_layout_variation
* elm.Entry.markup_filter_append
* elm.Entry.markup_filter_prepend
* elm.Entry.markup_filter_remove
* elm.Entry.text_style_user_peek
* elm.Entry.text_style_user_pop
* elm.Entry.text_style_user_push
* elm.EntryContextMenuItem
* elm.EntryContextMenuItem.icon
* elm.EntryContextMenuItem.label
* elm.Fileselector.filters_clear
* elm.Fileselector.hidden_visible
* elm.Fileselector.mime_types_filter_append
* elm.Fileselector.multi_select
* elm.Fileselector.selected_paths
* elm.Flip.flip_go_to
* elm.FlipSelector.callback_focused_add
* elm.FlipSelector.callback_unfocused_add
* elm.cache_all_flush
* elm.font_fontconfig_name_get
* elm.font_properties_free
* elm.font_properties_get
* elm.object_tree_dot_dump
* elm.object_tree_dump
* elm.Gengrid.at_xy_item_get
* elm.Gengrid.callback_focused_add
* elm.Gengrid.callback_unfocused_add
* elm.Gengrid.nth_item_get
* elm.GengridItem.append_to
* elm.GengridItem.insert_after
* elm.GengridItem.insert_before
* elm.GengridItem.prepend_to
* elm.GengridItem.sorted_insert
* elm.GengridItemClass.free
* elm.GengridItemClass.ref
* elm.GengridItemClass.unref
* elm.Genlist.callback_focused_add
* elm.Genlist.callback_unfocused_add
* elm.Genlist.focus_on_selection
* elm.Genlist.nth_item_get
* elm.GenlistItemClass.free
* elm.GenlistItemClass.ref
* elm.GenlistItemClass.unref
* elm.GestureLayer.continues_enable
* elm.GestureLayer.double_tap_timeout
* elm.GestureLayer.flick_time_limit_ms
* elm.GestureLayer.line_angular_tolerance
* elm.GestureLayer.line_distance_tolerance
* elm.GestureLayer.line_min_length
* elm.GestureLayer.long_tap_start_timeout
* elm.GestureLayer.rotate_angular_tolerance
* elm.GestureLayer.tap_finger_size
* elm.GestureLayer.zoom_distance_tolerance
* elm.GestureLayer.zoom_finger_factor
* elm.GestureLayer.zoom_wheel_factor
* elm.Hover.callback_focused_add
* elm.Hover.callback_unfocused_add
* elm.ImageErrorInfo
* elm.ImageProgressInfo
* elm.Index.callback_focused_add
* elm.Index.callback_unfocused_add
* elm.Index.delay_change_time
* elm.Index.omit_enabled
* elm.Label.slide_go
* elm.Label.slide_mode
* elm.LayoutClass.edje_object_can_access
* elm.LayoutClass.freeze
* elm.LayoutClass.thaw
* elm.List.at_xy_item_get
* elm.List.callback_focused_add
* elm.List.callback_unfocused_add
* elm.List.focus_on_selection
* elm.Map.callback_focused_add
* elm.Map.callback_unfocused_add
* elm.Mapbuf.auto
* elm.Menu.callback_dismissed_add
* elm.MultiButtonEntry.editable
* elm.Naviframe.callback_focused_add
* elm.Naviframe.callback_unfocused_add
* elm.need_eldbus
* elm.need_elocation
* elm.need_sys_notify
* elm.need_systray
* elm.ELM_NOTIFY_ALIGN_FILL
* elm.Notify.align
* elm.Object.domain_part_text_translatable_set
* elm.Object.domain_translatable_part_text_set
* elm.Object.focus_next_object_get
* elm.Object.focus_next_object_set
* elm.Object.focused_object
* elm.Object.orientation_mode_disabled
* elm.Object.scroll_freeze
* elm.Object.scroll_hold
* elm.Object.translatable_part_text_get
* elm.SelectionData.action
* elm.ObjectItem.domain_part_text_translatable_set
* elm.ObjectItem.domain_translatable_part_text_set
* elm.ObjectItem.translatable_part_text_get
* elm.Panel.callback_focused_add
* elm.Panel.callback_unfocused_add
* elm.Photocam.callback_focused_add
* elm.Photocam.callback_unfocused_add
* elm.PhotocamErrorInfo
* elm.PhotocamProgressInfo
* elm.Popup.callback_focused_add
* elm.Popup.callback_unfocused_add
* elm.Progressbar.callback_focused_add
* elm.Progressbar.callback_unfocused_add
* elm.Progressbar.part_value_get
* elm.Progressbar.part_value_set
* elm.Radio.callback_focused_add
* elm.Radio.callback_unfocused_add
* elm.Scrollable.callback_focused_add
* elm.Scrollable.callback_unfocused_add
* elm.Scrollable.movement_block
* elm.Scrollable.page_scroll_limit
* elm.Scrollable.page_size Getter for this property
* elm.Scrollable.page_snap
* elm.Scrollable.single_direction
* elm.Slider.callback_focused_add
* elm.Slider.callback_unfocused_add
* elm.Slider.step
* elm.Slideshow.callback_focused_add
* elm.Slideshow.callback_unfocused_add
* elm.Spinner.callback_focused_add
* elm.Spinner.callback_unfocused_add
* elm.Spinner.special_value_del
* elm.Spinner.special_value_get
* elm.Table.child_get
* elm.Thumb.aspect
* elm.Thumb.compress
* elm.Thumb.crop_align
* elm.Thumb.fdo_size
* elm.Thumb.format
* elm.Thumb.orientation
* elm.Thumb.quality
* elm.Thumb.size
* elm.Toolbar.callback_focused_add
* elm.Toolbar.callback_unfocused_add
* elm.Toolbar.reorder_mode
* elm.Toolbar.transverse_expanded
* elm.ToolbarItem.bring_in
* elm.ToolbarItem.show
* elm.Transit.smooth
* elm.Transit.tween_mode_factor
* elm.Player.callback_focused_add
* elm.Player.callback_unfocused_add
* elm.Video.callback_focused_add
* elm.Video.callback_unfocused_add
* elm.Web.callback_focused_add
* elm.Web.callback_unfocused_add
* elm.Web.url
* elm.Window.available_profiles
* elm.Window.callback_focused_add
* elm.Window.callback_unfocused_add
* elm.Window.floating_mode
* elm.Window.focus_highlight_animate
* elm.Window.main_menu
* elm.Window.norender
* elm.Window.norender_pop
* elm.Window.norender_push
* elm.Window.profile
* elm.Window.render
* elm.Window.screen_dpi