Mike McCormack [Sun, 2 Dec 2012 20:33:55 +0000 (20:33 +0000)]
efl: Fix warning
lib/evas/cache/evas_cache_image.c:573:4: warning: missing braces around initializer [-Wmissing-braces]
Signed-off-by: Mike McCormack <mikem@atratus.org>
SVN revision: 79987
Massimo Maiurana [Sun, 2 Dec 2012 18:09:32 +0000 (18:09 +0000)]
updating greek translations
SVN revision: 79985
Daniel Juyung Seo [Sun, 2 Dec 2012 15:04:37 +0000 (15:04 +0000)]
edje edc.vim: Added SPACER to contant.
SVN revision: 79984
Vincent Torri [Sun, 2 Dec 2012 08:15:06 +0000 (08:15 +0000)]
Eet: update lz4 code. Fix especially compilation bug on OpenBSD
see lz4 homepage for a full description of the fixes
SVN revision: 79975
Mike McCormack [Sat, 1 Dec 2012 01:12:35 +0000 (01:12 +0000)]
efl: Remove unused variables
Signed-off-by: Mike McCormack <mikem@atratus.org>
SVN revision: 79957
Gustavo Sverzut Barbieri [Fri, 30 Nov 2012 20:59:30 +0000 (20:59 +0000)]
bugfix: evas_object_box should reset size_hint_min to zero when no child exists.
there are some early-return code that were leaving the size_hint as it
was before, then if you removed every child it should go to 0x0 but
couldn't.
PLEASE BACKPORT THIS TO 1.7 BRANCH FOR ME :-(
SVN revision: 79948
Bruno Dilly [Fri, 30 Nov 2012 17:16:35 +0000 (17:16 +0000)]
edje: update gitignore
SVN revision: 79918
Jonas M. Gastal [Fri, 30 Nov 2012 13:49:00 +0000 (13:49 +0000)]
Edje: Organize sub-blocks order on EPC ref doc
Author: Ricardo de Almeida Gonzaga <ricardo@profusion.mobi>
SVN revision: 79907
Jonas M. Gastal [Fri, 30 Nov 2012 13:48:56 +0000 (13:48 +0000)]
Edje: Improve EDC reference doc index
Author: Ricardo de Almeida Gonzaga <ricardo@profusion.mobi>
SVN revision: 79906
Stefan Schmidt [Fri, 30 Nov 2012 11:51:11 +0000 (11:51 +0000)]
efl: Next fix for eet test suite. This time buildir != srcdir.
This fixes the cert dir detection for normal as well as buildbot builds
for me.
SVN revision: 79885
Cedric BAIL [Fri, 30 Nov 2012 07:58:31 +0000 (07:58 +0000)]
evas: revert patch from Zbigniew Kosinski due to Tom's good argument.
SVN revision: 79872
Paulo Alcantara [Thu, 29 Nov 2012 20:55:16 +0000 (20:55 +0000)]
evas/map: Refactor common code for map drawing
This patch refactors common code for map draws - so that it can be used
by other engines and *threaded* X11.
Signed-off-by: Paulo Alcantara <pcacjr@profusion.mobi>
Patch by: Paulo Alcantara <pcacjr@profusion.mobi>
SVN revision: 79855
Paulo Alcantara [Thu, 29 Nov 2012 20:48:24 +0000 (20:48 +0000)]
evas/line: Refactor common code for line drawing
This patch refactors common code for line draws - so that it can be used
by other engines and *threaded* X11.
Signed-off-by: Paulo Alcantara <pcacjr@profusion.mobi>
Patch by: Paulo Alcantara <pcacjr@profusion.mobi>
SVN revision: 79854
Paulo Alcantara [Thu, 29 Nov 2012 20:47:12 +0000 (20:47 +0000)]
evas/font: Refactor common code for font drawing
This patch refactors common code for font draws - so that it can be used
by other engines and *threaded* X11.
Signed-off-by: Paulo Alcantara <pcacjr@profusion.mobi>
Patch by: Paulo Alcantara <pcacjr@profusion.mobi>
SVN revision: 79853
Leandro Dorileo [Thu, 29 Nov 2012 18:55:10 +0000 (18:55 +0000)]
EPhysics: density field in material struct, int -> double
--This line, and those below, will be ignored--
SVN revision: 79851
Leandro Dorileo [Thu, 29 Nov 2012 18:54:36 +0000 (18:54 +0000)]
EPhysics: constraint removal
Delete the constraints a body belongs to on body removal and avoid
bullet to segfault.
--This line, and those below, will be ignored--
SVN revision: 79850
Leandro Dorileo [Thu, 29 Nov 2012 18:53:56 +0000 (18:53 +0000)]
EPhysics: add hinge test
Add a test to simulate a hinge constraint using the generic constraint
API's.
--This line, and those below, will be ignored--
SVN revision: 79849
Leandro Dorileo [Thu, 29 Nov 2012 18:51:51 +0000 (18:51 +0000)]
EPhysics: generic constraint
This patch changes how constraints are created and configured, now we
use a bullet generic implementation which let us operate on the 6
degrees of freedom(linear and angular ones).
We have used 6dof for slider constraint but now we assume 2 types of
constraints, single body - simply ephysics_constraint_add(body) - and a linked
one - ephysics_constraint_linked_add(body1, body2) used to constrain 2 bodies
linked together.
Having said that we introduce the following changes:
+ migrate p2p constraint to 6Dof
We want to have a constraint api generic enouth to allow many different
constraint behaviour, 6Dof was picked to do that, so p2p needs a migration.
+ move ephysics_constraint_slider_* functions
Since the whole constraint infra-sctructure is being migrated to 6Dof the
linear and angular limit functions - previously used only by slider constraint -
now looks more generic enough to be used by constraint in general.
+ add constraint anchor API
Instead of telling the anchoring positioning in the constraint creating we have
set it's default value to the the middle os the body and if the user wants to change
it call ephysics_constraint_anchor_set and reset it.
The ephysics_constraint_anchor_set() considers the canvas coordinate instead of using
the body orientation. So now one can tell a constraints anchor is set to 100, 10, 0
in the canvas coordinate system and not (body_center.x - 20, body_center.y - 5, body_center.z - 1).
+ constraint migrate the bt_constraint
Since we're working only with 6Dof constraints it is reasonable to change the constraints
bt_constraint field to btGeneric6DofConstraint.
+ add 3 axes to constraints
Now constraints API knows about x, y and z axes - linear and angular limiting, anchor
setting and the constraint creation functions are fully supported.
+ constraint calls are renamed
The constraint calls were renamed so ephysics_constraint_p2p_add() now is known as
ephysics_constraint_linked_add() and ephysics_constraint_slider_add() became
ephysics_constraint_add() where the first one is meant for constrain 2 bodies and
the second one for single body constraints.
--This line, and those below, will be ignored--
SVN revision: 79848
Flavio Vinicius Alvares Ceolin [Thu, 29 Nov 2012 15:52:50 +0000 (15:52 +0000)]
examples:codegen: Removing the usage of externals
Avoiding a circular dependency edje -> elementary -> edje.
It was breaking the build system when option --enable-build-examples was given.
SVN revision: 79839
Stefan Schmidt [Thu, 29 Nov 2012 15:30:11 +0000 (15:30 +0000)]
efl: Fix eet test suite.
Cedric suggested that we migth not be able to open the cert files. And he
was right. The CERT_DIR define checked for an absolute path in TESTS_SRC_DIR
but that get set to .. in Makefile_Eet.am as it sits in src/. Now the define
evaluated to src/tests/eet/.. where no cert files could be found.
I could not see a good reason for the suffix here so I just removed it.
Vincent, if there was a reason I was not able to see please fix it in a
different way. It was the least invasisve fix I could see.
SVN revision: 79838
Alex Wu [Thu, 29 Nov 2012 07:46:14 +0000 (07:46 +0000)]
From: Alex Wu <zhiwen.wu@linux.intel.com>
Every touch down event should be converted into mouse in +
mouse button. So we should let every mouse in event go in the
_ecore_evas_wl_common_cb_mouse_in(), instead of preventing it by
"if (!ee->in)". Besides that, the coordinates carried by mouse in
event should be set to Evas_Public_Data::pointer by calling
_ecore_evas_mouse_move_process().
Signed-off-by: Christopher Michael <cp.michael@samsung.com>
SVN revision: 79818
Vincent Torri [Thu, 29 Nov 2012 06:43:44 +0000 (06:43 +0000)]
Ecore: more __UNUSED__ fixes
SVN revision: 79812
Vincent Torri [Thu, 29 Nov 2012 06:34:36 +0000 (06:34 +0000)]
Ecore_SDL: make it compile on Windows
SVN revision: 79810
Cedric BAIL [Thu, 29 Nov 2012 05:39:35 +0000 (05:39 +0000)]
efl: cleanup changelog.
SVN revision: 79807
Cedric BAIL [Thu, 29 Nov 2012 05:36:56 +0000 (05:36 +0000)]
evas: only destroy font instance when we don't reference font anymore.
SVN revision: 79806
Cedric BAIL [Thu, 29 Nov 2012 05:35:53 +0000 (05:35 +0000)]
efl: silent warning in evas_pipe.
SVN revision: 79805
Jihoon Kim [Thu, 29 Nov 2012 02:28:08 +0000 (02:28 +0000)]
ibusimmodule: fix coding style
SVN revision: 79797
Paulo Alcantara [Wed, 28 Nov 2012 22:49:19 +0000 (22:49 +0000)]
evas/image: Refactor common code for image drawing
This patch refactors common code for image draws - so that it can be used
by other engines and *threaded* X11.
Signed-off-by: Paulo Alcantara <pcacjr@profusion.mobi>
Patch by: Paulo Alcantara <pcacjr@profusion.mobi>
SVN revision: 79795
Bruno Dilly [Wed, 28 Nov 2012 22:39:00 +0000 (22:39 +0000)]
edje: add very basic physics example
Just two bodies falling (a circle and a box) and colliding
to the floor.
bug: when edje is resized objects will be moved back to original
position.
SVN revision: 79794
Bruno Dilly [Wed, 28 Nov 2012 22:38:47 +0000 (22:38 +0000)]
edje: support adding physics worlds and bodies
Just an initial support, it's not possible to configure worlds
or bodies. Just adding it. Only possible customization is the
type of body.
It defines what's the collision shape and type (rigid / soft).
It can't be changed over time, so it's not on part's description.
It's expected that many cases won't be covered yet.
If you have ephysics installed and don't want it, just use
--disable-ephysics. It shouldn't affect anything for cases
where ephysics is not installed.
SVN revision: 79793
Bruno Dilly [Wed, 28 Nov 2012 21:47:58 +0000 (21:47 +0000)]
ephysics: don't try to set bad body geometry when adding
boundaries
If render geometry is not set yet, it will try to set a bad geometry
for the boundary boxes.
In this case, let these bodies with default size and only resize them
when render geometry is set.
SVN revision: 79791
Bruno Dilly [Wed, 28 Nov 2012 21:47:47 +0000 (21:47 +0000)]
ephysics: add improve dbg msgs
To help me debuging it while I'm working on Edje.
SVN revision: 79790
Bruno Dilly [Wed, 28 Nov 2012 21:47:30 +0000 (21:47 +0000)]
ephysics: don't allow a body to be scaled to 0 in any
axis
In this case it will be considered inactive and things
won't work as expected.
SVN revision: 79789
Vincent Torri [Wed, 28 Nov 2012 19:30:46 +0000 (19:30 +0000)]
Ecore: fix some variable names
SVN revision: 79787
Vincent Torri [Wed, 28 Nov 2012 19:24:07 +0000 (19:24 +0000)]
Ecore_SDL : remove shadow var
SVN revision: 79786
Paulo Alcantara [Wed, 28 Nov 2012 19:17:00 +0000 (19:17 +0000)]
evas/rectangle: Refactor common code for rectangle drawing
This patch refactors common code for rectangle draws - so that it can be
used by other engines and *threaded* X11.
Signed-off-by: Paulo Alcantara <pcacjr@profusion.mobi>
Patch by: Paulo Alcantara <pcacjr@profusion.mobi>
SVN revision: 79785
Bruno Dilly [Wed, 28 Nov 2012 12:55:53 +0000 (12:55 +0000)]
ephysics: random doc fixes
SVN revision: 79781
Bruno Dilly [Wed, 28 Nov 2012 12:54:23 +0000 (12:54 +0000)]
ephysics: TODO - add "auto" mode of slicing clothes suggested by Raster
SVN revision: 79780
Cedric BAIL [Wed, 28 Nov 2012 10:12:23 +0000 (10:12 +0000)]
evas: improve documentation.
Patch by Zbigniew Kosinski <z.kosinski@samsung.com>
SVN revision: 79774
Daniel Juyung Seo [Wed, 28 Nov 2012 08:04:44 +0000 (08:04 +0000)]
edje edc.vim: Added PASSWORD to edc.vim syntax file.
SVN revision: 79771
Cedric BAIL [Wed, 28 Nov 2012 08:01:19 +0000 (08:01 +0000)]
ecore: typo.
SVN revision: 79769
Vincent Torri [Wed, 28 Nov 2012 07:38:09 +0000 (07:38 +0000)]
Ecore_DirectFB: warning--
SVN revision: 79768
Vincent Torri [Wed, 28 Nov 2012 07:30:30 +0000 (07:30 +0000)]
Ecore_Ipc: remove useless includes
SVN revision: 79767
Cedric BAIL [Wed, 28 Nov 2012 07:27:45 +0000 (07:27 +0000)]
ecore: fix bugs reported and identified by Aharone and Daniel.
SVN revision: 79766
Massimo Maiurana [Tue, 27 Nov 2012 22:20:03 +0000 (22:20 +0000)]
updating esperanto translations
SVN revision: 79760
Rafael Antognolli [Tue, 27 Nov 2012 20:53:33 +0000 (20:53 +0000)]
ethumb: Fix license on ethumbd.c too.
It was intended to be LGPL-2.1 too. Bad copy & paste :-(
SVN revision: 79756
Paulo Alcantara [Tue, 27 Nov 2012 18:23:25 +0000 (18:23 +0000)]
evas/cserve2: Add scalecache support
Signed-off-by: Paulo Alcantara <pcacjr@profusion.mobi>
Patch by: Paulo Alcantara <pcacjr@profusion.mobi>
SVN revision: 79754
Rafael Antognolli [Tue, 27 Nov 2012 15:37:56 +0000 (15:37 +0000)]
Ethumb: Fix license reporting on executables's --version output.
SVN revision: 79748
Daniel Zaoui [Tue, 27 Nov 2012 14:36:12 +0000 (14:36 +0000)]
Increased MAX_MSG_SIZE for support of Clouseau - needed for next
Clouseau commit (screenshots)
Signed-off-by: Daniel Zaoui <daniel.zaoui@samsung.com>
SVN revision: 79744
Cedric BAIL [Tue, 27 Nov 2012 06:39:46 +0000 (06:39 +0000)]
ecore: fix ecore_evas_sdl window size.
Patch by Alexey Yakovenko <wakeroid@gmail.com> fixing ticket #1790.
SVN revision: 79734
Rafael Antognolli [Mon, 26 Nov 2012 21:44:34 +0000 (21:44 +0000)]
Ecore_Evas: Initialize event structs before sending them.
Event structs used for IPC must be correctly initialized, since they are
not aligned. This fixes some warnings reported by valgrind.
SVN revision: 79726
Sebastian Dransfeld [Mon, 26 Nov 2012 16:07:55 +0000 (16:07 +0000)]
efreet: update language for daemon
SVN revision: 79721
Daniel Juyung Seo [Sun, 25 Nov 2012 17:04:15 +0000 (17:04 +0000)]
ecore Ecore_Evas.h: Removed non-existing APIs' descriptions.
SVN revision: 79656
Carsten Haitzler [Sun, 25 Nov 2012 10:38:12 +0000 (10:38 +0000)]
one mroe eo_data_Get protection.
SVN revision: 79650
Vincent Torri [Sun, 25 Nov 2012 09:55:32 +0000 (09:55 +0000)]
Ecore: __UNUSED__ --> EINA_UNUSED
SVN revision: 79649
Vincent Torri [Sun, 25 Nov 2012 09:50:53 +0000 (09:50 +0000)]
ecore: remove useless variables
SVN revision: 79648
Daniel Zaoui [Sun, 25 Nov 2012 09:00:21 +0000 (09:00 +0000)]
Added missing descriptions for Eo defines whose functions hadn't
descriptions at all. Needed in language bindings.
Signed-off-by: Daniel Zaoui <daniel.zaoui@samsung.com>
SVN revision: 79646
ChunEon Park [Sat, 24 Nov 2012 17:25:43 +0000 (17:25 +0000)]
evas/gl - don't need to keep the texture altas height for the framebuffer.
they won't be utilized anything by atlas.
Cause of this, It wasted unnecessary texture memory. :(
SVN revision: 79637
Carsten Haitzler [Sat, 24 Nov 2012 16:08:45 +0000 (16:08 +0000)]
eobj changes - protect against null eo data gets.
SVN revision: 79635
ChunEon Park [Sat, 24 Nov 2012 14:54:31 +0000 (14:54 +0000)]
evas/gl - return quickly as possible.
SVN revision: 79634
Sebastian Dransfeld [Sat, 24 Nov 2012 10:55:45 +0000 (10:55 +0000)]
efreet: add missing file
SVN revision: 79632
Sebastian Dransfeld [Sat, 24 Nov 2012 06:43:00 +0000 (06:43 +0000)]
efreet: fix alloca
SVN revision: 79629
Youness Alaoui [Fri, 23 Nov 2012 23:15:48 +0000 (23:15 +0000)]
edje: Fix segfault when deleted part stays in the hash table
SVN revision: 79616
Vincent Torri [Fri, 23 Nov 2012 22:44:43 +0000 (22:44 +0000)]
Ecore: fix Solaris build
SVN revision: 79614
Vincent Torri [Fri, 23 Nov 2012 22:38:23 +0000 (22:38 +0000)]
Ecore: fix alloca declaration
SVN revision: 79613
Vincent Torri [Fri, 23 Nov 2012 22:09:43 +0000 (22:09 +0000)]
Eio: Fix alloca declaration and remove useless autotools Windows stuff
SVN revision: 79612
Vincent Torri [Fri, 23 Nov 2012 21:55:46 +0000 (21:55 +0000)]
ecore, eio : revert alloca commits (and other solaris math commits, i know)
SVN revision: 79610
Leandro Dorileo [Fri, 23 Nov 2012 21:52:25 +0000 (21:52 +0000)]
EPhysics: add a soft ellipsoid test
A test to rotate a soft ellipsoid to demonstrate the multi face implementation.
Patch by: Leandro Dorileo <dorileo@profusion.mobi>
SVN revision: 79609
Leandro Dorileo [Fri, 23 Nov 2012 21:52:18 +0000 (21:52 +0000)]
EPhysics: soft button test
A new test with a soft button deforming while clicking on it.
Patch by: Leandro Dorileo <dorileo@profusion.mobi>
SVN revision: 79608
Leandro Dorileo [Fri, 23 Nov 2012 21:52:08 +0000 (21:52 +0000)]
EPhysics: soft body operations on triangles list
This patch introduces API to get a list of triangles inside an
area and another to apply impulse - also - in a list of triangles.
Patch by: Leandro Dorileo <dorileo@profusion.mobi>
SVN revision: 79607
Leandro Dorileo [Fri, 23 Nov 2012 21:52:02 +0000 (21:52 +0000)]
EPhysics: fix soft body resize
When resizing a soft body move the anchored rigid body to the
center of it.
Patch by: Leandro Dorileo <dorileo@profusion.mobi>
SVN revision: 79606
Leandro Dorileo [Fri, 23 Nov 2012 21:51:53 +0000 (21:51 +0000)]
EPhysics: avoid slices double deletion
This patch avoids slices double deletion case ecore evas deletes the
slices evas objects before ephysics has actually shutdown and/or simulation
thread hasn't been canceled.
Patch by: Leandro Dorileo <dorileo@profusion.mobi>
SVN revision: 79605
Leandro Dorileo [Fri, 23 Nov 2012 21:51:44 +0000 (21:51 +0000)]
EPhysics: add api to get the slice index based on its
evas object
Patch by: Leandro Dorileo <dorileo@profusion.mobi>
SVN revision: 79604
Leandro Dorileo [Fri, 23 Nov 2012 21:51:38 +0000 (21:51 +0000)]
EPhysics: add soft ellipsoid and multi face
implementation
This patch introduces the ellipsoid soft body and its multi face
implementation.
Patch by: Leandro Dorileo <dorileo@profusion.mobi>
SVN revision: 79603
Leandro Dorileo [Fri, 23 Nov 2012 21:51:32 +0000 (21:51 +0000)]
EPhysics: change double named group
Changed the double named group in list.edc to alias and fix the
abortion issue on tests.
Patch by: Leandro Dorileo <dorileo@profusion.mobi>
SVN revision: 79602
Leandro Dorileo [Fri, 23 Nov 2012 21:51:24 +0000 (21:51 +0000)]
EPhysics: flag test fixes
Add one more bending constraint and sets gravity to ephysics default
value.
Patch by: Leandro Dorileo <dorileo@profusion.mobi>
SVN revision: 79601
Leandro Dorileo [Fri, 23 Nov 2012 21:51:18 +0000 (21:51 +0000)]
EPhysics: test flag fix Evas_Mouse_Event_* usage
Now using the proper event attributes.
Patch by: Leandro Dorileo <dorileo@profusion.mobi>
SVN revision: 79600
Leandro Dorileo [Fri, 23 Nov 2012 21:51:03 +0000 (21:51 +0000)]
EPhysics: fix random memory leaks
Patch by: Leandro Dorileo <dorileo@profusion.mobi>
SVN revision: 79599
Leandro Dorileo [Fri, 23 Nov 2012 21:50:02 +0000 (21:50 +0000)]
EPhysics: slice_init doesn't know about
body->evas_object anymore
So we can use the same functions to initialize the slices in case of
face slicing.
Patch by: Leandro Dorileo <dorileo@profusion.mobi>
SVN revision: 79598
Leandro Dorileo [Fri, 23 Nov 2012 21:49:57 +0000 (21:49 +0000)]
EPhysics: soft body slice per face
This changes how initial points of deformations are mapped, now we
must support multiple faces so different points of deformation for
each.
Patch by: Leandro Dorileo <dorileo@profusion.mobi>
SVN revision: 79597
Leandro Dorileo [Fri, 23 Nov 2012 21:49:51 +0000 (21:49 +0000)]
EPhysics: soft body slicing refactory
Prepare to use the same infra structure of slicing for soft body multi-face
deformation implementation.
Patch by: Leandro Dorileo <dorileo@profusion.mobi>
SVN revision: 79596
Leandro Dorileo [Fri, 23 Nov 2012 21:49:44 +0000 (21:49 +0000)]
EPhysics: reset soft body's slices layer
If a evas object has its layer reset so we must apply the change its
slices evas objects.
Patch by: Leandro Dorileo <dorileo@profusion.mobi>
SVN revision: 79595
Leandro Dorileo [Fri, 23 Nov 2012 21:43:49 +0000 (21:43 +0000)]
EPhysics: add soft body triangle impulse API
Patch by: Leandro Dorileo <dorileo@profusion.mobi>
SVN revision: 79594
Leandro Dorileo [Fri, 23 Nov 2012 21:43:44 +0000 (21:43 +0000)]
EPhysics: flip page test
This patch adds a test to simulate page flipping.
Patch by: Leandro Dorileo <dorileo@profusion.mobi>
SVN revision: 79593
Leandro Dorileo [Fri, 23 Nov 2012 21:43:32 +0000 (21:43 +0000)]
EPhysics: add soft body bending constraints API
This patch introduces the API ephysics_body_soft_body_bending_constraints_add
used define how deformeable a soft body is supposed to be.
Patch by: Leandro Dorileo <dorileo@profusion.mobi>
SVN revision: 79592
Leandro Dorileo [Fri, 23 Nov 2012 21:43:25 +0000 (21:43 +0000)]
EPhysics: generate bending constraints just once
Unlikely the cluster generate bullet will not rebuild the bending
constraints every call, so we must prevent creating duplicated
constraints.
Patch by: Leandro Dorileo <dorileo@profusion.mobi>
SVN revision: 79591
Leandro Dorileo [Fri, 23 Nov 2012 21:43:19 +0000 (21:43 +0000)]
EPhysics: move just a single node of a triangle
Patch by: Leandro Dorileo <dorileo@profusion.mobi>
SVN revision: 79590
Bruno Dilly [Fri, 23 Nov 2012 21:28:02 +0000 (21:28 +0000)]
edje: add example of messages handling (receiving /
sending)
All types!
SVN revision: 79589
Bruno Dilly [Fri, 23 Nov 2012 21:27:38 +0000 (21:27 +0000)]
edje examples: update edc examples list on makefile
It was outdated.
SVN revision: 79588
Bruno Dilly [Fri, 23 Nov 2012 21:27:28 +0000 (21:27 +0000)]
edje player: support message sending
SVN revision: 79587
Bruno Dilly [Fri, 23 Nov 2012 21:27:17 +0000 (21:27 +0000)]
edje player: fix typos / break big line of output
SVN revision: 79586
Sebastian Dransfeld [Fri, 23 Nov 2012 20:39:13 +0000 (20:39 +0000)]
ChangeLog
SVN revision: 79585
Sebastian Dransfeld [Fri, 23 Nov 2012 20:35:45 +0000 (20:35 +0000)]
ecore: also use for solaris
SVN revision: 79582
Sebastian Dransfeld [Fri, 23 Nov 2012 20:31:51 +0000 (20:31 +0000)]
ecore: ieeefp on solaris
SVN revision: 79579
Sebastian Dransfeld [Fri, 23 Nov 2012 20:25:52 +0000 (20:25 +0000)]
ecore: alloca
SVN revision: 79577
Sebastian Dransfeld [Fri, 23 Nov 2012 20:11:15 +0000 (20:11 +0000)]
eio: correctly define alloca
SVN revision: 79576
Sebastian Dransfeld [Fri, 23 Nov 2012 19:30:00 +0000 (19:30 +0000)]
efreet: ChangeLog
SVN revision: 79573
Eduardo de Barros Lima [Fri, 23 Nov 2012 18:44:00 +0000 (18:44 +0000)]
Ecore_Wayland: Fix leak of struct wl_registry
SVN revision: 79569
ChunEon Park [Fri, 23 Nov 2012 15:30:38 +0000 (15:30 +0000)]
evas - Re: [E-devel] [PATCH] [EVAS] evas_object_key_grab add check for same modifiers
Hi all,
I had prepare some fix for evas_object_key_grab function.
In my opinion when given modifiers are equal it should return FALSE.
Please verify attached file.
Regards,
Patrick
Signed-Off-By: Patryk Kaczmarek<patryk.k@samsung.com>
SVN revision: 79563
Sebastian Dransfeld [Thu, 22 Nov 2012 22:18:34 +0000 (22:18 +0000)]
efreet: elements aren't always double quoted
SVN revision: 79550