summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* update according to Eolian syntax changesdevs/q66/eolian_syntaxDaniel Kolesa2014-08-2188-475/+475
|
* NEWS: keep the convention with other lines.Daniel Juyung Seo2014-08-211-1/+1
|
* notify: changed internal formatting for readability.Daniel Juyung Seo2014-08-211-5/+8
|
* elm_notify: fixing style applyingAndrii Kroitor2014-08-211-9/+26
| | | | | | | | | | | | | | Summary: added support of bottom_left, bottom_right, top_left, top_right styles of notify that are present in default theme @fix Reviewers: cedric, seoz, Hermet Subscribers: reutskiy.v.v Differential Revision: https://phab.enlightenment.org/D1329
* configure: Switch to dev mode again and set version to .99Stefan Schmidt2014-08-201-1/+1
| | | | Merge window for 1.12 is open.
* release: Update NEWS and bump version for 1.11.0 releasev1.11.0Stefan Schmidt2014-08-202-1/+2
|
* NEWS: cleaned up new file for the 1.11 release.Daniel Juyung Seo2014-08-211-36/+34
|
* map: added missing since tag for a new api.Daniel Juyung Seo2014-08-211-0/+2
|
* README: fix typo.ChunEon Park2014-08-201-1/+1
|
* e theme - screen suspend/locl/resume etc, make black rect on noeffectCarsten Haitzler (Rasterman)2014-08-181-21/+5
| | | | | | this makes the black rect etc. appear instantly even if no effects are selected for comp - this should cover up lockscreen and other stuff on suspend/shutdown/resume etc. like fading does. this should fix T1498
* my 1.11 NEWS updatesMike Blumenkrantz2014-08-151-2/+1
|
* tests: Ship elm_test_helper.h in dist tarballStefan Schmidt2014-08-151-1/+3
| | | | This is a first step to run elm make check during distcheck.
* slider: update documentation on elm_slider_step_set/get (since 1.8)Boris Faure2014-08-151-0/+2
|
* entry: fix clearing selection region problem while it's already selected.ChunEon Park2014-08-151-0/+5
| | | | | | | | | | if entry has selection, it would be cleared if selection region set is requested again. because entry cancel the selection area after it reset the selection area. unfortunately, the selection area is new selection so selection area is gone. this patch prevent clearing selection and keep the new selection. @fix
* README: Cosmetic change to align underline with two digit version numberStefan Schmidt2014-08-141-1/+1
|
* po/ko: updated Korean translation.Daniel Juyung Seo2014-08-141-5/+5
|
* po: update po due to string changes.Daniel Juyung Seo2014-08-1426-1306/+1308
|
* doc: removed @ from @since if it needs to be inlined the documentation.Daniel Juyung Seo2014-08-148-15/+12
|
* panel: changed wrong term - drawer - in panel.Daniel Juyung Seo2014-08-141-2/+2
| | | | drawer is not an official terminology in panel.
* radio: added quotes for smart callback name in the documentation.Daniel Juyung Seo2014-08-141-1/+1
|
* autotools: Renamed --disable-c++11 to --disable-cxx-bindings.Savio Sena2014-08-131-2/+2
| | | | The name was misleading.
* elm++: Update C++ examples to use the new API.Savio Sena2014-08-131-13/+13
|
* Updating italian translationmaxerba2014-08-131-55/+55
|
* doc: added @c for eina bool in the documentation.Daniel Juyung Seo2014-08-1317-77/+81
|
* button: fix hoversel and button fixed: 1 1 warning in the same way.Daniel Juyung Seo2014-08-131-0/+10
| | | | | | | | | | Now both hoversel and button are usable. This is easiest way to fix the bug. But why it didn't work well even hoversel inherit button default style? Revert "button: revert this patch because this patch just broke hoversel." This reverts commit 3238c8787511aaf69b755760b24f1aa518477d75.
* button: revert this patch because this patch just broke hoversel.Daniel Juyung Seo2014-08-131-5/+0
| | | | | | | | | hoversel is now usable. let's fix the button warning message with more considerations. Revert "button: add fixed 1 1 in case that text is not used." This reverts commit efd33ddb5ba51dccaee2734e8a7add18801d9285.
* force desklock theme min sizing on textMike Blumenkrantz2014-08-111-1/+2
| | | | fix T1468
* button: add fixed 1 1 in case that text is not used.ChunEon Park2014-08-111-0/+5
| | | | | | If only icon is used in a button, it prints error message regarding fixed 1 1; This resolved the problem.
* panes: add fixed error message.ChunEon Park2014-08-111-0/+4
| | | | | | | | | Draggable area could be zero size if user set the panes content size with elm_panes_xxx_size_set(). In this case, it prints fixed messages. now, it's gone and i tested with various cases for any side effects.
* release: Update NEWS and bump version for 1.11.0-beta2 releasev1.11.0-beta2Stefan Schmidt2014-08-112-1/+6
|
* elm - do not do x11 main/config stuff without DISPLAY setCarsten Haitzler (Rasterman)2014-08-112-42/+45
| | | | | | | | the engine checks are also broken - but that's a much bigger change, so this fixes elm config and main code to not do their x11 work if no DISPLAY env var is set. this is right for a wayland world where you don't want DISPLAY but WAYLAND_DISPLAY set and used. this fixes several ERRs that should never have hapapned in this setup.
* elm win - fix invalid use of elm engine config per windowCarsten Haitzler (Rasterman)2014-08-111-32/+28
| | | | | | | | lots of code unsing ENGINE_COMPARE where it should get the engine from the ecore_evas directly - it happened to work as we happened to have apps that have windows only for x11, or wayland etc, but not both in an app. this was wrong, so remove the engine compare macro and do it properly. no laziness.
* gengrid once again selects items using keyboard when no item was previously ↵zmike2014-08-101-7/+7
| | | | | | | | selected this was yet another thing broken by the mostly-unreviewed and untested widget item focus feature. it's still not completely fixed, since the reorder modes are broken, but at least it works for the general case again @fix
* Genlist: do not segv if the user clear the list on item double-clickdavemds2014-08-092-16/+39
| | | | | | | | | @fix moved the user callbacks call at the end of the function, so the user is able to modify the list without making the code below the call to fail miserably. Also improved the Genlist Del test to also include this case.
* blank line --davemds2014-08-091-1/+0
| | | | Remove an unwanted blank line from my previous commit
* Gengrid: fix position calculationdavemds2014-08-091-4/+3
| | | | | | | @fix To calc the position in a table you need to make the modulo of the col/row size, not the modulo on the x/y value This unbreak the elm_gengrid_item_pos_get() function that was reporting wrong values
* doc: sync changes made in efldavemds2014-08-083-4/+38
| | | | | | | * show footer with usefull info * nested lists are more compact * avoid packed effect on bullet lists * @since colored and on a single line
* configure: Use the same default CFLAGS/LDFLAGS as we do for EFLStefan Schmidt2014-08-081-0/+4
| | | | | | | | | | Especially the -fvisibility=hidden would be needed here for our EAPI handling. I never realised we miss this here but Lukasz Stanislawski pointed me to it when we wondered why it linked ofr him with missing EAPI but not for me. I'v compiling and releasing elm like this for a long time now so I don't expect any trouble but if something strange comes up we can still revert it before 1.11 final.
* atspi: remove EAPI from elm_atspi_text_text_attribute_freeLukasz Stanislawski2014-08-082-32/+1
| | | | | | Issue reported by Stefan Schmidt. Above atspi function had EAPI attribute defined in implementation file, however this symbol should not be public in elementary 1.11.
* elm cnp - remove usless check/code according to CID 1193248Carsten Haitzler (Rasterman)2014-08-081-15/+7
|
* elm gengrid - fix CID 1222464Carsten Haitzler (Rasterman)2014-08-081-1/+2
| | | | | it's possible to have a NULL item in this code - also missing a valid return at the end (though code path never gets there).
* elm entry - fix CID 1194480 in coverityCarsten Haitzler (Rasterman)2014-08-081-0/+5
| | | | | if sd->append_text_left was still set, free it - in case it was and idler was not set.
* autotools: install .pc files to the correct directory on FreeBSDq662014-08-072-0/+12
|
* widget: added warnings to internal headers.Daniel Juyung Seo2014-08-0863-0/+378
| | | | | | | | | | | These headers are installed in the system but not officially supported as they are considered as internal headers. The reason why they still need to be installed is that - they were exposed even in the previous releases. - they are needed for widget customization (unofficially) - or it will break ewe. Special thanks to Stefan for the reporting.
* gengrid: Fix since version for new elm_gengrid_reorder_type_set()Stefan Schmidt2014-08-071-1/+1
| | | | | Looks like it was developed in the 1.10 timeframe but only made it into the repo after the 1.10 release. Will be part of 1.11 so adjust it.
* photocam should reset its preload when a new file is loadedzmike2014-08-071-0/+1
| | | | | | this prevents infinite busy animations @fix
* win: Don't call ecore_x_screensaver APIs if elm win doesn't have X11 windowGwanglim Lee2014-08-071-1/+6
| | | | | | | | | | | | | | | | | Summary: Elementary application crashes on startup when it is running with wayland engine. This crash problem happens while ecore_x_screensaver API is being called from _win_noblank_eval funcion. Thus we should not call ecore_x_screensaver APIs if elm win doesn't have X11 window. Test Plan: 1. build efl and elementary to support x11 and also wayland 1. run weston without xwayland 2. run elementary_test on the weston Reviewers: raster, seoz, stefan_schmidt, devilhorns Differential Revision: https://phab.enlightenment.org/D1293
* elementary: Handle case where ELM_ENGINE environment variable isChris Michael2014-08-071-2/+4
| | | | | | | | | | | | | misspelled. In case someone exports the ELM_ENGINE to be wayland-shm or wayland-egl, let's handle That case also. Typically it is set to wayland_shm or wayland_egl but since we check variants of spelling for other engines also, then let's check it for the wayland engines too. @fix Signed-off-by: Chris Michael <cp.michael@samsung.com>
* shot.sh: Set ELM_DISPLAY to bring the elm shot engine back to lifeStefan Schmidt2014-08-071-0/+1
| | | | | | | | | | | As a small fallout from e7dbe063c9c044f072bacafd31ab872f6210788b we now need to set ELM_DISPLAY with our system has something like $DISPLAY or $WAYLAND_DISPLAY set. Elm uses that now to find out which window system to use. In the case of daing make doc we want it forced to shot even if we run under X. With ELM_DISPLAY we do that. Thanks goes to raster for the explanantion and git bisect for pinning it down.
* elm win - only auto choose x11/wl based on envvar if ELM_ENGINE unsetCarsten Haitzler (Rasterman)2014-08-071-2/+2
|