platform/upstream/efl.git
11 years agoEo: Added simple benchmark infra (not really testing anything atm).
Tom Hacohen [Sun, 26 Aug 2012 13:18:44 +0000 (13:18 +0000)]
Eo: Added simple benchmark infra (not really testing anything atm).

SVN revision: 75712

11 years agofix jpeg loader to decode JFIF format.
Jiyoun Park [Sun, 26 Aug 2012 11:22:55 +0000 (11:22 +0000)]
fix jpeg loader to decode JFIF format.
before, if the jpeg format is JFIF, we cannot get orientation.
currently jpeg loader get orientation from file

SVN revision: 75707

11 years agoEvas: Revert "Evas: tabs --> spaces"
Tom Hacohen [Sun, 26 Aug 2012 07:04:46 +0000 (07:04 +0000)]
Evas: Revert "Evas: tabs --> spaces"

Lets wait until after the code freeze is over and people apply their
patches, otherwise it'll be hellish.
This reverts commit 75632

SVN revision: 75704

11 years agoeet: correctly initialize dictionary.
Cedric BAIL [Sun, 26 Aug 2012 02:00:48 +0000 (02:00 +0000)]
eet: correctly initialize dictionary.

This should fix windows, we were lucky on Unix where the lock
are expected to be set to zero...

SVN revision: 75703

11 years agoEina: upgrade eina_inarray_setup to eina_inarray_step_set
Leandro Dorileo [Fri, 24 Aug 2012 21:03:07 +0000 (21:03 +0000)]
Eina: upgrade eina_inarray_setup to eina_inarray_step_set

Eina model was forgotten since it's been disabled, there's also a
remaining doc reference to the old eina_inarray_setup() function;

Patch by: Leandro Dorileo <dorileo@profusion.mobi>

SVN revision: 75686

11 years agoeet: add eet_connection_empty.
Cedric BAIL [Fri, 24 Aug 2012 10:30:27 +0000 (10:30 +0000)]
eet: add eet_connection_empty.

This is needed to fix a bug when multiplexing eet_connection with something else.

SVN revision: 75651

11 years agoedje: properly destroy color_class and text_class on an Edje_Object.
Cedric BAIL [Fri, 24 Aug 2012 09:22:21 +0000 (09:22 +0000)]
edje: properly destroy color_class and text_class on an Edje_Object.

SVN revision: 75647

11 years agoEio: fix thread detection
Vincent Torri [Fri, 24 Aug 2012 08:19:41 +0000 (08:19 +0000)]
Eio: fix thread detection

Patch by Maxime Villard and myself

SVN revision: 75644

11 years agoecore/ecore_x - oops. sorry. incorrect parameters.
ChunEon Park [Fri, 24 Aug 2012 00:38:32 +0000 (00:38 +0000)]
ecore/ecore_x - oops. sorry. incorrect parameters.

SVN revision: 75639

11 years agoecore/ecore_x - added missing EAPI
ChunEon Park [Fri, 24 Aug 2012 00:33:56 +0000 (00:33 +0000)]
ecore/ecore_x - added missing EAPI

SVN revision: 75638

11 years agoevas/render: Add a flag for dropping the map cache if needed.
Rafael Antognolli [Thu, 23 Aug 2012 19:58:02 +0000 (19:58 +0000)]
evas/render: Add a flag for dropping the map cache if needed.

The map cache must be dropped if the content of the surface is rendered again.
The example evas-smart-object.c has a valid test case for this bug.

SVN revision: 75636

11 years agoevas/examples: Add map to the smart object example.
Rafael Antognolli [Thu, 23 Aug 2012 19:49:48 +0000 (19:49 +0000)]
evas/examples: Add map to the smart object example.

Rotating the smart object with map, adding a rectangle as child, and then
rotating it again will expose a bug on mapped smart objects: it's mapped
surface will be reused from cache, instead of flagged as dirty and discarded.

SVN revision: 75635

11 years agoupdating portuguese and italian translations
Massimo Maiurana [Thu, 23 Aug 2012 18:08:44 +0000 (18:08 +0000)]
updating portuguese and italian translations

SVN revision: 75634

11 years agoEvas: tabs --> spaces
Vincent Torri [Thu, 23 Aug 2012 15:48:37 +0000 (15:48 +0000)]
Evas: tabs --> spaces

SVN revision: 75632

11 years agoEo: Moved a magic check from an internal function to the external function.
Tom Hacohen [Thu, 23 Aug 2012 15:04:48 +0000 (15:04 +0000)]
Eo: Moved a magic check from an internal function to the external function.

SVN revision: 75626

11 years agoEo: Remove volatile from the GCC issue workaround.
Tom Hacohen [Thu, 23 Aug 2012 14:24:32 +0000 (14:24 +0000)]
Eo: Remove volatile from the GCC issue workaround.

It seems that just setting to a temp var is enough to make GCC not
optimise it out. It seems GCC's problem is with the void cast.
Also, fixed another place that had the same issue.

SVN revision: 75624

11 years agoEo: Fixed issue with eo_add ops.
Tom Hacohen [Thu, 23 Aug 2012 12:14:07 +0000 (12:14 +0000)]
Eo: Fixed issue with eo_add ops.

This "fix" is actually just making sure gcc doesn't optimise things
wrong. If anyone has an idea how to do it better, please let me know.
klass is usually a function and needs to be evaluated before the call to
eo_add_internal.

SVN revision: 75623

11 years agoEvas: Started using EVAS_GENERAL_CFLAGS/LIBS 2 vars to rule them all.
Tom Hacohen [Thu, 23 Aug 2012 11:32:38 +0000 (11:32 +0000)]
Evas: Started using EVAS_GENERAL_CFLAGS/LIBS 2 vars to rule them all.

Instead of going all over the place and adding cflags to many different
Makefiles, now you just need to update these 2 vars.

SVN revision: 75619

11 years agoEcore (Wayland): Work around bug in terminology ;) by making sure that
Christopher Michael [Thu, 23 Aug 2012 11:25:45 +0000 (11:25 +0000)]
Ecore (Wayland): Work around bug in terminology ;) by making sure that
a Tab, when pressed, sends the proper key string.

SVN revision: 75617

11 years agoEo: Added a non-default constructor test.
Tom Hacohen [Thu, 23 Aug 2012 10:47:11 +0000 (10:47 +0000)]
Eo: Added a non-default constructor test.

SVN revision: 75616

11 years agoEo: Added some negative refcount tests (with manual_free).
Tom Hacohen [Thu, 23 Aug 2012 10:37:46 +0000 (10:37 +0000)]
Eo: Added some negative refcount tests (with manual_free).

SVN revision: 75615

11 years agoEo: Added eo_add_custom and support for passing ops to eo_add.
Tom Hacohen [Thu, 23 Aug 2012 10:35:14 +0000 (10:35 +0000)]
Eo: Added eo_add_custom and support for passing ops to eo_add.

We can no do things like eo_add(CLASS, parent, age_set(7), score_set(100)),
or pass different constructors to object creation by using eo_add_custom and
passing the constructor.

SVN revision: 75614

11 years agoeina_file : fix functions to behave with paths containing '/' or '\' on Windows
Vincent Torri [Thu, 23 Aug 2012 08:25:53 +0000 (08:25 +0000)]
eina_file : fix functions to behave with paths containing '/' or '\' on Windows

SVN revision: 75604

11 years agowhitespace--
Vincent Torri [Thu, 23 Aug 2012 07:54:58 +0000 (07:54 +0000)]
whitespace--

SVN revision: 75601

11 years agoEvas textblock: Fixed bug in evas_textblock_cursor_word_start.
Tom Hacohen [Thu, 23 Aug 2012 07:03:18 +0000 (07:03 +0000)]
Evas textblock: Fixed bug in evas_textblock_cursor_word_start.

Fixed bug with 1 char word separators at the start of the
text when going to the start of the word (e.g: =test).

Reported by Thiep Ha. Thanks a lot.

SVN revision: 75595

11 years agoEPhysics: expose bodies center of mass.
Bruno Dilly [Wed, 22 Aug 2012 20:05:35 +0000 (20:05 +0000)]
EPhysics: expose bodies center of mass.

SVN revision: 75574

11 years agoEPhysics: fix tests using vertical impulse
Bruno Dilly [Wed, 22 Aug 2012 20:05:30 +0000 (20:05 +0000)]
EPhysics: fix tests using vertical impulse

SVN revision: 75573

11 years agoEPhysics: improve convex shapes
Bruno Dilly [Wed, 22 Aug 2012 20:05:25 +0000 (20:05 +0000)]
EPhysics: improve convex shapes

Center of these shapes were wrong, now it's much better.
But collision still seems a bit inaccurate.

SVN revision: 75572

11 years agoEPhysics: use vertex reduction utility
Bruno Dilly [Wed, 22 Aug 2012 20:05:19 +0000 (20:05 +0000)]
EPhysics: use vertex reduction utility

Convex meshes often have too many vertices.
This slows down collision detection a lot, and there is no benefit in the
unnecessary details.

SVN revision: 75571

11 years agoEPhysics: update docs regarding soft bodies
Bruno Dilly [Wed, 22 Aug 2012 20:05:14 +0000 (20:05 +0000)]
EPhysics: update docs regarding soft bodies

SVN revision: 75570

11 years agoEPhysics: fix indenting and remove useless lines
Bruno Dilly [Wed, 22 Aug 2012 20:05:07 +0000 (20:05 +0000)]
EPhysics: fix indenting and remove useless lines

No need to set to 0 zeroed memory.

SVN revision: 75569

11 years agoEPhysics: remove a rigid ball and weird amount of mass
Bruno Dilly [Wed, 22 Aug 2012 20:05:02 +0000 (20:05 +0000)]
EPhysics: remove a rigid ball and weird amount of mass

Let's see what was it masking and focus on making it works with
defaults.

SVN revision: 75568

11 years agoEPhysics: don't show input msg if won't handle it
Bruno Dilly [Wed, 22 Aug 2012 20:04:57 +0000 (20:04 +0000)]
EPhysics: don't show input msg if won't handle it

Also, respect 80 col

SVN revision: 75567

11 years agoEPhysics: keep tests in alphabetical order
Bruno Dilly [Wed, 22 Aug 2012 20:04:51 +0000 (20:04 +0000)]
EPhysics: keep tests in alphabetical order

SVN revision: 75566

11 years agoEPhysics: add space between words on msg
Bruno Dilly [Wed, 22 Aug 2012 20:04:45 +0000 (20:04 +0000)]
EPhysics: add space between words on msg

SVN revision: 75565

11 years agoEPhysics: soft body implementation
Leandro Dorileo [Wed, 22 Aug 2012 20:04:39 +0000 (20:04 +0000)]
EPhysics: soft body implementation

Introduces soft body dynamics and calls to create soft circles and boxes.

Patch by: Leandro Dorileo <dorileo@profusion.mobi>

SVN revision: 75564

11 years agoEcore_Wayland: small patch from Alex wu <zhiwen.wu@linux.intel.com> to
Christopher Michael [Wed, 22 Aug 2012 15:53:29 +0000 (15:53 +0000)]
Ecore_Wayland: small patch from Alex wu <zhiwen.wu@linux.intel.com> to
implement touch events in ecore_wayland.

SVN revision: 75556

11 years agocanvas: Fix event framespace adjustment
Eduardo de Barros Lima [Wed, 22 Aug 2012 14:53:45 +0000 (14:53 +0000)]
canvas: Fix event framespace adjustment

Complements fix in r75545

SVN revision: 75555

11 years agoeet eet_data.c: Fixed memory leak spotted by Igor Murzov (GArik_) <e-mail@date.by>
Daniel Juyung Seo [Wed, 22 Aug 2012 14:07:04 +0000 (14:07 +0000)]
eet eet_data.c: Fixed memory leak spotted by Igor Murzov (GArik_) <e-mail@date.by>

SVN revision: 75552

11 years agoEo: Use our own magic check macro instead of Eina's
Tom Hacohen [Wed, 22 Aug 2012 13:10:08 +0000 (13:10 +0000)]
Eo: Use our own magic check macro instead of Eina's

SVN revision: 75549

11 years agoEvas: Integrate patch from Robert Bradford which makes the framespace
Christopher Michael [Wed, 22 Aug 2012 12:41:44 +0000 (12:41 +0000)]
Evas: Integrate patch from Robert Bradford which makes the framespace
adding and subtracting consistent. Fixes ticket #1295.

SVN revision: 75545

11 years agofix segv with extn ee list gettign null extn2's :)
Carsten Haitzler [Wed, 22 Aug 2012 10:14:08 +0000 (10:14 +0000)]
fix segv with extn ee list gettign null extn2's :)

SVN revision: 75536

11 years agofix crashing in ecore_evas when x/y/w/h is not passed to screen_geometry_get
Mike Blumenkrantz [Wed, 22 Aug 2012 08:27:06 +0000 (08:27 +0000)]
fix crashing in ecore_evas when x/y/w/h is not passed to screen_geometry_get

SVN revision: 75522

11 years agoeina: don't rely on the order of the declaration of the variables
Vincent Torri [Wed, 22 Aug 2012 06:57:55 +0000 (06:57 +0000)]
eina: don't rely on the order of the declaration of the variables

SVN revision: 75517

11 years agoEPhysics: fix bug when changing head of worlds list
Bruno Dilly [Tue, 21 Aug 2012 17:47:29 +0000 (17:47 +0000)]
EPhysics: fix bug when changing head of worlds list

Animator callback was working with a not updated list pointer.

SVN revision: 75510

11 years agoEPhysics: improve bodies group description documentation
Bruno Dilly [Tue, 21 Aug 2012 17:47:24 +0000 (17:47 +0000)]
EPhysics: improve bodies group description documentation

SVN revision: 75509

11 years agoEPhysics: don't activate body if not going to apply
Bruno Dilly [Tue, 21 Aug 2012 17:47:18 +0000 (17:47 +0000)]
EPhysics: don't activate body if not going to apply
 forces

Otherwise it won't stop, sleeping thresholds won't work...

SVN revision: 75508

11 years agolink to ecore-input and include. sorry. oops. :)
Carsten Haitzler [Tue, 21 Aug 2012 15:04:36 +0000 (15:04 +0000)]
link to ecore-input and include. sorry. oops. :)

SVN revision: 75507

11 years agoEo: Add an error if we get to a negative refcount.
Tom Hacohen [Tue, 21 Aug 2012 12:15:54 +0000 (12:15 +0000)]
Eo: Add an error if we get to a negative refcount.

SVN revision: 75505

11 years agoEo: WRN -> ERR. We do (in EFL) logging wrong.
Tom Hacohen [Tue, 21 Aug 2012 12:08:48 +0000 (12:08 +0000)]
Eo: WRN -> ERR. We do (in EFL) logging wrong.

Warnings should be on by default and not abused.
Now I had to change the WRN -> ERR because JackDanielZ is a crybaby,
and the issue described above.

SVN revision: 75504

11 years agoevas/gl_x11 - one is enough
ChunEon Park [Tue, 21 Aug 2012 11:57:48 +0000 (11:57 +0000)]
evas/gl_x11 - one is enough

SVN revision: 75503

11 years agoevas/gl_x11 - more simple code
ChunEon Park [Tue, 21 Aug 2012 11:37:02 +0000 (11:37 +0000)]
evas/gl_x11 - more simple code

SVN revision: 75502

11 years agoevas/gl_x11 - trivial changes
ChunEon Park [Tue, 21 Aug 2012 11:32:18 +0000 (11:32 +0000)]
evas/gl_x11 - trivial changes

fix indent, remove white spaces

SVN revision: 75501

11 years agoEdje (player): We already create the ecore_evas at the desired size so
Christopher Michael [Tue, 21 Aug 2012 10:34:01 +0000 (10:34 +0000)]
Edje (player): We already create the ecore_evas at the desired size so
there is no point in calling a resize again.

SVN revision: 75499

11 years agoEcore_Evas: Default the wayland engines to actually draw the "simple"
Christopher Michael [Tue, 21 Aug 2012 10:33:15 +0000 (10:33 +0000)]
Ecore_Evas: Default the wayland engines to actually draw the "simple"
frame if the option has not been specified. This means that if we want
a more complex frame (think elm windows), then we need to set this
flag to 0.

SVN revision: 75498

11 years agoemotion: oops, this files should never have gotten in.
Cedric BAIL [Tue, 21 Aug 2012 09:20:08 +0000 (09:20 +0000)]
emotion: oops, this files should never have gotten in.

SVN revision: 75496

11 years agoemotion: fix priority_set/get
Cedric BAIL [Tue, 21 Aug 2012 09:17:38 +0000 (09:17 +0000)]
emotion: fix priority_set/get

Patch by Sohyun Kim <anna1014.kim@samsung.com>

SVN revision: 75495

11 years agoevas: put back the test on dead object in the right way.
Cedric BAIL [Tue, 21 Aug 2012 08:41:02 +0000 (08:41 +0000)]
evas: put back the test on dead object in the right way.

SVN revision: 75492

11 years agouse e17 zone property first before using randr to find screen - more
Carsten Haitzler [Tue, 21 Aug 2012 08:06:53 +0000 (08:06 +0000)]
use e17 zone property first before using randr to find screen - more
correct.

SVN revision: 75491

11 years agoFix evas_gl current_context update issue when evas_gl context is deleted.
Sung Park [Tue, 21 Aug 2012 07:42:08 +0000 (07:42 +0000)]
Fix evas_gl current_context update issue when evas_gl context is deleted.

SVN revision: 75490

11 years agoFixed compiler warning messages in gl_x11 evas_engine for evas_gl.
Sung Park [Tue, 21 Aug 2012 07:28:39 +0000 (07:28 +0000)]
Fixed compiler warning messages in gl_x11 evas_engine for evas_gl.

SVN revision: 75488

11 years agoedje: add Guilherme Silveira to AUTHORS and ChangeLog.
Cedric BAIL [Tue, 21 Aug 2012 03:11:33 +0000 (03:11 +0000)]
edje: add Guilherme Silveira to AUTHORS and ChangeLog.

SVN revision: 75485

11 years agoedje: fix fixed point issue.
Cedric BAIL [Tue, 21 Aug 2012 03:06:44 +0000 (03:06 +0000)]
edje: fix fixed point issue.

SVN revision: 75484

11 years agoeio: revert r75445 and add a comment to prevent it to happen again.
Cedric BAIL [Tue, 21 Aug 2012 02:22:20 +0000 (02:22 +0000)]
eio: revert r75445 and add a comment to prevent it to happen again.

Yes, it's the second time someone "fix" that and get reverted. Actually
looking at svn log would have shown the issue as it was just the previous
commit.

SVN revision: 75482

11 years agoEPhysics: fix y component convertion on forces and
Bruno Dilly [Mon, 20 Aug 2012 22:18:14 +0000 (22:18 +0000)]
EPhysics: fix y component convertion on forces and
 impulses

SVN revision: 75480

11 years agoEPhysics: consider gravity on forces getter
Bruno Dilly [Mon, 20 Aug 2012 22:17:34 +0000 (22:17 +0000)]
EPhysics: consider gravity on forces getter

SVN revision: 75479

11 years agoEPhysics: add test for forces API
Bruno Dilly [Mon, 20 Aug 2012 22:17:11 +0000 (22:17 +0000)]
EPhysics: add test for forces API

SVN revision: 75478

11 years agoEPhysics: test torque forces
Bruno Dilly [Mon, 20 Aug 2012 22:16:02 +0000 (22:16 +0000)]
EPhysics: test torque forces

SVN revision: 75477

11 years agoEPhysics: add forces API
Bruno Dilly [Mon, 20 Aug 2012 22:15:52 +0000 (22:15 +0000)]
EPhysics: add forces API

Implement functions to make it possible to control forces acting
over a body.

SVN revision: 75476

11 years agoEPhysics: rotation set implemented
Bruno Dilly [Mon, 20 Aug 2012 22:14:43 +0000 (22:14 +0000)]
EPhysics: rotation set implemented

SVN revision: 75475

11 years agoEPhysics: implement generic apply impulse for bodies
Bruno Dilly [Mon, 20 Aug 2012 22:14:25 +0000 (22:14 +0000)]
EPhysics: implement generic apply impulse for bodies

It results in central and torque impulses.

SVN revision: 75474

11 years agoEPhysics: fix torque impulse
Bruno Dilly [Mon, 20 Aug 2012 22:13:38 +0000 (22:13 +0000)]
EPhysics: fix torque impulse

SVN revision: 75473

11 years agoEPhysics: fix ephysics central impulse unit and
Bruno Dilly [Mon, 20 Aug 2012 22:12:14 +0000 (22:12 +0000)]
EPhysics: fix ephysics central impulse unit and
 improve docs

It should use a unit based on pixels, not meters.
This way is more compatible with the rest of API and easier
to see the result.

SVN revision: 75472

11 years agoEPhysics: implement body move(), resize()
Bruno Dilly [Mon, 20 Aug 2012 22:10:52 +0000 (22:10 +0000)]
EPhysics: implement body move(), resize()

It was already possible to move and resize using geometry get / set,
but if just one of the actions is wanted, this new API is easier for the user
and save a few operations.

SVN revision: 75471

11 years agoEvil: quoting + fix distcheck rule
Vincent Torri [Mon, 20 Aug 2012 15:46:37 +0000 (15:46 +0000)]
Evil: quoting + fix distcheck rule

SVN revision: 75468

11 years agoevas/gl - removed unnecessary lines which causes the resource leak and corruption
ChunEon Park [Mon, 20 Aug 2012 12:37:22 +0000 (12:37 +0000)]
evas/gl - removed unnecessary lines which causes the resource leak and corruption

SVN revision: 75463

11 years agoEvas textblock: Reverted my last commit and added WooHyun's instead.
Tom Hacohen [Mon, 20 Aug 2012 11:05:48 +0000 (11:05 +0000)]
Evas textblock: Reverted my last commit and added WooHyun's instead.

They were pretty similar, but I think WooHyun's was better.
Thanks to WooHyun for the patch.

SVN revision: 75461

11 years agoEvas textblock: Fixed range geometry with 1 format at the eol.
Tom Hacohen [Mon, 20 Aug 2012 11:00:16 +0000 (11:00 +0000)]
Evas textblock: Fixed range geometry with 1 format at the eol.

Fixed an issue with range geometry when we are getting the geometry of only
the last format of a line.

SVN revision: 75460

11 years agoEo: Removed static class support.
Tom Hacohen [Mon, 20 Aug 2012 07:56:17 +0000 (07:56 +0000)]
Eo: Removed static class support.

SVN revision: 75452

11 years agofix possible use of uninit buffer in edje_cc error output.
Carsten Haitzler [Mon, 20 Aug 2012 07:46:51 +0000 (07:46 +0000)]
fix possible use of uninit buffer in edje_cc error output.

SVN revision: 75449

11 years agoEio: fix possible mem leak
Vincent Torri [Mon, 20 Aug 2012 06:36:55 +0000 (06:36 +0000)]
Eio: fix possible mem leak

SVN revision: 75445

11 years agoEmbryo: be sure that the string buffer is always NULL terminated
Vincent Torri [Mon, 20 Aug 2012 06:26:46 +0000 (06:26 +0000)]
Embryo: be sure that the string buffer is always NULL terminated

SVN revision: 75443

11 years agoEina: fix possible mem leak
Vincent Torri [Mon, 20 Aug 2012 06:18:21 +0000 (06:18 +0000)]
Eina: fix possible mem leak

SVN revision: 75441

11 years agoEina: formatting
Vincent Torri [Mon, 20 Aug 2012 06:16:22 +0000 (06:16 +0000)]
Eina: formatting

SVN revision: 75440

11 years agoEcore_X: Add missing cast for XkbMapNotifyEvent (removes compiler
Christopher Michael [Sun, 19 Aug 2012 10:50:54 +0000 (10:50 +0000)]
Ecore_X: Add missing cast for XkbMapNotifyEvent (removes compiler
warning).

SVN revision: 75427

11 years agoEvil: delete useless directory
Vincent Torri [Sun, 19 Aug 2012 09:01:52 +0000 (09:01 +0000)]
Evil: delete useless directory

SVN revision: 75426

11 years agoEvil: less automake stuff, and remove warnings.
Vincent Torri [Sun, 19 Aug 2012 08:59:51 +0000 (08:59 +0000)]
Evil: less automake stuff, and remove warnings.

currently, distcheck fails because I remove the .la files when installing (so
actually, it's uninstall which fails). I'll fix that later.

SVN revision: 75425

11 years agowhen falling back to passthru with xim imf module... just use the
Carsten Haitzler [Sun, 19 Aug 2012 03:31:53 +0000 (03:31 +0000)]
when falling back to passthru with xim imf module... just use the
compose string provided! :)

SVN revision: 75423

11 years agoalso tell xkb to refresh mappings. :)
Carsten Haitzler [Sun, 19 Aug 2012 03:06:46 +0000 (03:06 +0000)]
also tell xkb to refresh mappings. :)

SVN revision: 75422

11 years agoecore_x: Fix typo
Sebastian Dransfeld [Sat, 18 Aug 2012 19:18:53 +0000 (19:18 +0000)]
ecore_x: Fix typo

SVN revision: 75421

11 years agochglog++
Carsten Haitzler [Sat, 18 Aug 2012 12:48:16 +0000 (12:48 +0000)]
chglog++

SVN revision: 75414

11 years agodont skip objects mark with elete_me flags. inf loop.
Carsten Haitzler [Sat, 18 Aug 2012 12:44:01 +0000 (12:44 +0000)]
dont skip objects mark with elete_me flags. inf loop.

SVN revision: 75413

11 years agoI know this is a new feature. i know i know. doing this because
Carsten Haitzler [Sat, 18 Aug 2012 11:29:47 +0000 (11:29 +0000)]
I know this is a new feature. i know i know. doing this because
otherwise we weill need another efl release for e17 to get out.

modified patch from:
http://trac.enlightenment.org/e/ticket/1306

SVN revision: 75409

11 years agoUpdate rpm specs
Rui Seabra [Sat, 18 Aug 2012 08:22:34 +0000 (08:22 +0000)]
Update rpm specs

SVN revision: 75404

11 years agoimgs src set as null is ok - unset proxy.
Carsten Haitzler [Sat, 18 Aug 2012 07:28:26 +0000 (07:28 +0000)]
imgs src set as null is ok - unset proxy.

SVN revision: 75403

11 years agolong standing patch/bug for \r systems text conversion to markup.
Carsten Haitzler [Sat, 18 Aug 2012 07:02:16 +0000 (07:02 +0000)]
long standing patch/bug for \r systems text conversion to markup.

http://trac.enlightenment.org/e/ticket/293

SVN revision: 75402

11 years agoaddress http://trac.enlightenment.org/e/ticket/1263 at least where
Carsten Haitzler [Sat, 18 Aug 2012 01:31:49 +0000 (01:31 +0000)]
address trac.enlightenment.org/e/ticket/1263 at least where
deadkeys and composition are involved. i don't know if they are or are
not. anything else is an issue outside of efl i believe. (eg keymap)

SVN revision: 75398

11 years agoactually imho these 2 are warning ones only.
Carsten Haitzler [Sat, 18 Aug 2012 00:37:54 +0000 (00:37 +0000)]
actually imho these 2 are warning ones only.

SVN revision: 75395

11 years agoevas - updated changelog
ChunEon Park [Fri, 17 Aug 2012 11:30:20 +0000 (11:30 +0000)]
evas - updated changelog

SVN revision: 75383

11 years agoevas/image - I removed them to prevent going along with release.
ChunEon Park [Fri, 17 Aug 2012 11:06:23 +0000 (11:06 +0000)]
evas/image - I removed them to prevent  going along with release.

please add them locally.

SVN revision: 75382