Re: [E-devel] E SVN: cedric trunk/efl/src/lib/eet

2013-01-02 Thread Chidambar 'ilLogict' Zinnoury
Dans son message intitulé « E SVN: cedric trunk/efl/src/lib/eet » du Tue, 1 Jan 2013 22:21:44 -0800, Enlightenment SVN no-re...@enlightenment.org nous a donné l'occasion de lire : Log: efl: fix potential segv. Author: cedric Date: 2013-01-01 22:21:43 -0800 (Tue, 01 Jan

Re: [E-devel] [PATCH] eina-1.7: allow running the testsuite independantly of coverage support

2013-01-02 Thread Albin Tonnerre
On Sat, Dec 29, 2012 at 2:49 PM, Albin Tonnerre albin.tonne...@gmail.com wrote: It used to be possible to run the testsuite whether coverage was enabled or not; this is very useful for eg. distros who want to automatically run the testsuite without having to compile with coverage support.

Re: [E-devel] [PATCH] eina-1.7: allow running the testsuite independantly of coverage support

2013-01-02 Thread The Rasterman
On Wed, 2 Jan 2013 09:38:04 +0100 Albin Tonnerre albin.tonne...@gmail.com said: On Sat, Dec 29, 2012 at 2:49 PM, Albin Tonnerre albin.tonne...@gmail.com wrote: It used to be possible to run the testsuite whether coverage was enabled or not; this is very useful for eg. distros who want to

Re: [E-devel] [PATCH] [Elementary] Patch to fix elementary list with separator

2013-01-02 Thread Daniel Juyung Seo
Dear Thiep, thanks a lot for your bug fix. There was an explicit bug on elm list separator. And I have some comments. 1. elementary-1.7 Please support the same patches to elementary-1.7. 2. it-deleted checks it-deleted checks in elm_list.c:600 is not needed. It was already checked. 3.

Re: [E-devel] [PATCH] [Elementary] Patch to fix elementary list with separator

2013-01-02 Thread Daniel Juyung Seo
Oops Thiep, sorry I didn't review test_list.c So here are more comments. 1. api_data api_data *api = calloc(1, sizeof(api_data));$ api_data is not used in test_list_separator() so remove it and related codes. 2. test_list_separator(xxx) indentation Indentations for test_list_separator(xxx) are

Re: [E-devel] eve and enjoy segfaulting in dbus

2013-01-02 Thread Martin Jansa
On Fri, Dec 28, 2012 at 10:20:55AM -0200, Gustavo Sverzut Barbieri wrote: Could you send valgrind logs as well? Here you go, sorry for delay: SHR root@qemux86-64 ~ $ valgrind enjoy ==9139== Memcheck, a memory error detector ==9139== Copyright (C) 2002-2011, and GNU GPL'd, by Julian Seward et

Re: [E-devel] [PATCH] [Elementary] Patch to fix elementary list with separator

2013-01-02 Thread thiep ha
Dear Daniel, Thank you very much for your valuable reviewing. Here are my opinion: 1. elementary-1.7 Please support the same patches to elementary-1.7. I will do that. 2. it-deleted checks it-deleted checks in elm_list.c:600 is not needed. It was already checked. You are right. 3.

Re: [E-devel] eve and enjoy segfaulting in dbus

2013-01-02 Thread Lucas De Marchi
On Wed, Jan 2, 2013 at 8:53 AM, Martin Jansa martin.ja...@gmail.com wrote: On Fri, Dec 28, 2012 at 10:20:55AM -0200, Gustavo Sverzut Barbieri wrote: Could you send valgrind logs as well? Here you go, sorry for delay: SHR root@qemux86-64 ~ $ valgrind enjoy ==9139== Memcheck, a memory error

Re: [E-devel] eve and enjoy segfaulting in dbus

2013-01-02 Thread Martin Jansa
On Wed, Jan 2, 2013 at 12:02 PM, Lucas De Marchi lucas.demar...@profusion.mobi wrote: This was a problem introduced in the merge of edbus into efl single tree. You say you are using efl stable, so you should not have this. I'm using stable efl and e17 from latest release tarballs (including

Re: [E-devel] E SVN: discomfitor trunk/terminology/src/bin

2013-01-02 Thread ChunEon Park
Foo HAHA! -Regards, Hermet- -Original Message- From: Michael Blumenkrantzlt;michael.blumenkra...@gmail.comgt; To: Enlightenment developer listlt;enlightenment-devel@lists.sourceforge.netgt;; Cc: lt;enlightenment-...@lists.sourceforge.netgt;;

[E-devel] Warning: Incoming new Stable release 1.7.5

2013-01-02 Thread Luis Felipe Strano Moraes
Guys, just a warning, get your patches in because tomorrow we're going to be spinning a new stable release of the EFL. PLEASE take the time to do some testing of the stable branches and see if everything is OK. Best regards, Luis Felipe -- Luís Felipe Strano Moraes http://www.strano.org

Re: [E-devel] E SVN: raster IN trunk/efl: . src/modules/evas/engines/software_x11

2013-01-02 Thread Christopher Michael
Hmmm, I think you're Fix needs a fix there mate ;) Xlib: - lbytes = ((w + 63) / 64) * 4; + lbytes = ((w + 63) / 64) * 8; Xcb: - lbytes = (((w + 63) / 64) * 4); + else + lbytes = (((w + 63) / 64) * 4); * 8 vs * 4 ?? ;) If I had commit access right now, I would just

[E-devel] [Patch] Fix _item_text_set_hook to set part text correctly

2013-01-02 Thread 조재현
Dear all, Hello. This is Jaehyun Cho. The current version of _item_text_set_hook sends the part signal name to edje_object_part_text_set. (elementary/src/lib/elc_naviframe.c) To resolve this issue, I sent different arguments to edje_object_part_text_set for each case. Please review this patch.

Re: [E-devel] E SVN: seoz trunk/devs/seoz

2013-01-02 Thread Michael Blumenkrantz
On Wed, 2 Jan 2013 10:07:26 -0800 Enlightenment SVN no-re...@enlightenment.org wrote: Log: devs/seoz build.sh: fixed a typo in the build script. Author: seoz Date: 2013-01-02 10:07:25 -0800 (Wed, 02 Jan 2013) New Revision: 82002 Trac:

Re: [E-devel] [Patch] Fix _item_text_set_hook to set part text correctly

2013-01-02 Thread Daniel Juyung Seo
Dear Jaehyun Cho, thanks for the patch. Your patch looks good and it fixes a bug but I have two comments. 1. the first snprintf is not needed snprintf(buf, sizeof(buf), elm.text.title); edje_object_part_text_set(VIEW(it), buf, label); - edje_object_part_text_set(VIEW(it), elm.text.title, label);

Re: [E-devel] E SVN: seoz trunk/devs/seoz

2013-01-02 Thread Daniel Juyung Seo
hahaha you found that E! Daniel Juyung Seo (SeoZ) On Thu, Jan 3, 2013 at 3:10 AM, Michael Blumenkrantz michael.blumenkra...@gmail.com wrote: On Wed, 2 Jan 2013 10:07:26 -0800 Enlightenment SVN no-re...@enlightenment.org wrote: Log: devs/seoz build.sh: fixed a typo in the build script.

[E-devel] [Patch][Elementary] Fix elm_prefs_data_get() documentation.

2013-01-02 Thread Murilo Belluzzo
Dear all, Just fixing the return type documentation of elm_prefs_data_get() (copypaste failure) and the @see in elm_prefs_data_set() (pointing to itself). Cheers, Murilo Belluzzo. elm_prefs_docs_fix.diff Description: Binary data

Re: [E-devel] E SVN: seoz trunk/devs/seoz

2013-01-02 Thread Igor Murzov
What about this: -Last-Translator: Daniel Juyung Seo seojuyu...@gmail.com\n +Last-Translator: Daniel Juyung Seo seojuyu...@gmali.com\n ? On Thu, 3 Jan 2013 03:29:59 +0900 Daniel Juyung Seo seojuyu...@gmail.com wrote: hahaha you found that E! Daniel Juyung Seo (SeoZ) On Thu, Jan 3, 2013

[E-devel] fix efl debug profile compilation

2013-01-02 Thread Jérémy Zurcher
small patch attached regards Jérémy diff --git a/efl/src/modules/eina/mp/chained_pool/eina_chained_mempool.c b/efl/src/modules/eina/mp/chained_pool/eina_chained_mempool.c index a9be284..be44c2a 100644 --- a/efl/src/modules/eina/mp/chained_pool/eina_chained_mempool.c +++

Re: [E-devel] eio eio_eet_flush - eio_eet_sync

2013-01-02 Thread Jérémy Zurcher
1.7.5 is coming, what about this private thread !? regards Jérémy -- Master Java SE, Java EE, Eclipse, Spring, Hibernate, JavaScript, jQuery and much more. Keep your Java skills current with LearnJavaNow - 200+ hours of

Re: [E-devel] eio eio_eet_flush - eio_eet_sync

2013-01-02 Thread Michael Blumenkrantz
On Wed, 2 Jan 2013 21:01:06 +0100 Jérémy Zurcher jer...@asynk.ch wrote: 1.7.5 is coming, what about this private thread !? regards Jérémy I think for now the decision was to keep both symbols and blame cedric --

[E-devel] edje typedefs to ease reading and parsing

2013-01-02 Thread Jérémy Zurcher
just to ease ffi-efl maintenance ... patched attached regards Jérémy diff --git a/edje/src/lib/Edje.h b/edje/src/lib/Edje.h index 4d51404..036c0f7 100644 --- a/edje/src/lib/Edje.h +++ b/edje/src/lib/Edje.h @@ -6112,6 +6112,10 @@ EAPI Eina_Booledje_object_part_drag_page

Re: [E-devel] edje typedefs to ease reading and parsing

2013-01-02 Thread Michael Blumenkrantz
On Wed, 2 Jan 2013 21:51:35 +0100 Jérémy Zurcher jer...@asynk.ch wrote: just to ease ffi-efl maintenance ... patched attached regards Jérémy imo instead of the second two typedefs we can just use Ecore_Cb since it's the same and already exists...

Re: [E-devel] Warning: Incoming new Stable release 1.7.5

2013-01-02 Thread Simon
On 01/03/2013 01:22 AM, enlightenment-devel-requ...@lists.sourceforge.net wrote: Guys, just a warning, get your patches in because tomorrow we're going to be spinning a new stable release of the EFL. PLEASE take the time to do some testing of the stable branches and see if everything is OK.

Re: [E-devel] E SVN: mike_m trunk/efl/src/lib/ecore_con

2013-01-02 Thread Eduardo Lima (Etrunko)
On Wed, Jan 2, 2013 at 6:36 PM, Enlightenment SVN no-re...@enlightenment.org wrote: Log: efl: Fix shadow warnings Signed-off-by: Mike McCormack mi...@atratus.org Author: mike_m Date: 2013-01-02 12:36:40 -0800 (Wed, 02 Jan 2013) New Revision: 82013 Trac:

Re: [E-devel] E SVN: mike_m trunk/efl/src/lib/ecore_con

2013-01-02 Thread Michael Blumenkrantz
On Wed, 2 Jan 2013 19:05:54 -0200 Eduardo Lima (Etrunko) ebl...@gmail.com wrote: On Wed, Jan 2, 2013 at 6:36 PM, Enlightenment SVN no-re...@enlightenment.org wrote: Log: efl: Fix shadow warnings Signed-off-by: Mike McCormack mi...@atratus.org Author: mike_m Date:

Re: [E-devel] Warning: Incoming new Stable release 1.7.5

2013-01-02 Thread Jérémy Zurcher
I have an ugly one that I havn't yet found the time to look at, long cat output triggers it: On Thursday 03 January 2013 07:35, Simon wrote : On 01/03/2013 01:22 AM, enlightenment-devel-requ...@lists.sourceforge.net wrote: Guys, just a warning, get your patches in because tomorrow

Re: [E-devel] E SVN: dorileo trunk/emotion

2013-01-02 Thread Leandro Dorileo
Huuum... it seems I've missed something here, the stable tree is been maintained on branch/emotion-1.7. There'are entries for 1.7.2, 1.7.3 and the current is 1.7.4, but no tags were created for the 1.7.2 and 1.7.3. On Wed, Jan 02, 2013 at 01:03:23PM -0800, Enlightenment SVN wrote: Log:

Re: [E-devel] Warning: Incoming new Stable release 1.7.5

2013-01-02 Thread Jérémy Zurcher
#0 0x7fffeac78cd0 in evas_software_xlib_x_write_mask_line (buf=buf@entry= 0x7457b0, xob=0x181f610, src=0x7fffe3db0360, w=369, y=y@entry=85) at modules/evas/engines/software_x11/evas_xlib_buffer.c:40 #1 0x7fffeac77be4 in evas_software_xlib_outbuf_push_updated_region (buf=

Re: [E-devel] Warning: Incoming new Stable release 1.7.5

2013-01-02 Thread thomasg
On Wed, Jan 2, 2013 at 10:28 PM, Jérémy Zurcher jer...@asynk.ch wrote: #0 0x7fffeac78cd0 in evas_software_xlib_x_write_mask_line (buf=buf@entry= 0x7457b0, xob=0x181f610, src=0x7fffe3db0360, w=369, y=y@entry=85) at modules/evas/engines/software_x11/evas_xlib_buffer.c:40 #1

Re: [E-devel] Warning: Incoming new Stable release 1.7.5

2013-01-02 Thread Ulisses Furquim
Hi Jérémy, On Wed, Jan 2, 2013 at 7:28 PM, Jérémy Zurcher jer...@asynk.ch wrote: #0 0x7fffeac78cd0 in evas_software_xlib_x_write_mask_line (buf=buf@entry= 0x7457b0, xob=0x181f610, src=0x7fffe3db0360, w=369, y=y@entry=85) at modules/evas/engines/software_x11/evas_xlib_buffer.c:40

[E-devel] e-0.17.0 segfault in e_border with efl-1.7.4

2013-01-02 Thread Thomas Sachau
I have some more or less randomly happening segfaults of e (0.17.0 release) with efl libs (1.7.4 release), when a HUD shows over a window. It seems to happen more often, when the window itself gets moved, sample screenshot (HUD = the black boxes overlaying the window):

Re: [E-devel] e-0.17.0 segfault in e_border with efl-1.7.4

2013-01-02 Thread The Rasterman
On Wed, 02 Jan 2013 23:07:01 +0100 Thomas Sachau to...@gentoo.org said: I have some more or less randomly happening segfaults of e (0.17.0 release) with efl libs (1.7.4 release), when a HUD shows over a window. It seems to happen more often, when the window itself gets moved, sample

Re: [E-devel] eio eio_eet_flush - eio_eet_sync

2013-01-02 Thread The Rasterman
On Wed, 2 Jan 2013 21:01:06 +0100 Jérémy Zurcher jer...@asynk.ch said: 1.7.5 is coming, what about this private thread !? like 80+ emails this has a tick next to it in my mailbox... :) -- - Codito, ergo sum - I code, therefore I am -- The Rasterman (Carsten Haitzler)

Re: [E-devel] Warning: Incoming new Stable release 1.7.5

2013-01-02 Thread The Rasterman
On Wed, 2 Jan 2013 22:52:38 +0100 thomasg tho...@gstaedtner.net said: On Wed, Jan 2, 2013 at 10:28 PM, Jérémy Zurcher jer...@asynk.ch wrote: #0 0x7fffeac78cd0 in evas_software_xlib_x_write_mask_line (buf=buf@entry= 0x7457b0, xob=0x181f610, src=0x7fffe3db0360, w=369,

Re: [E-devel] E SVN: raster IN trunk/efl: . src/modules/evas/engines/software_x11

2013-01-02 Thread The Rasterman
On Wed, 02 Jan 2013 15:05:06 + Christopher Michael cp.mich...@samsung.com said: Hmmm, I think you're Fix needs a fix there mate ;) Xlib: - lbytes = ((w + 63) / 64) * 4; + lbytes = ((w + 63) / 64) * 8; Xcb: - lbytes = (((w + 63) / 64) * 4); + else +

Re: [E-devel] eio eio_eet_flush - eio_eet_sync

2013-01-02 Thread Cedric BAIL
On Thu, Jan 3, 2013 at 5:03 AM, Michael Blumenkrantz michael.blumenkra...@gmail.com wrote: On Wed, 2 Jan 2013 21:01:06 +0100 Jérémy Zurcher jer...@asynk.ch wrote: 1.7.5 is coming, what about this private thread !? regards Jérémy I think for now the decision was to keep both symbols and

Re: [E-devel] eio eio_eet_flush - eio_eet_sync

2013-01-02 Thread Cedric BAIL
On Thu, Jan 3, 2013 at 8:57 AM, Carsten Haitzler ras...@rasterman.com wrote: On Wed, 2 Jan 2013 21:01:06 +0100 Jérémy Zurcher jer...@asynk.ch said: 1.7.5 is coming, what about this private thread !? like 80+ emails this has a tick next to it in my mailbox... :) You can remove that tick :-)

Re: [E-devel] E SVN: dorileo IN trunk/emotion: . src/examples src/generic_players/vlc src/lib src/modules/generic src/modules/gstreamer

2013-01-02 Thread Cedric BAIL
On Thu, Jan 3, 2013 at 6:03 AM, Enlightenment SVN no-re...@enlightenment.org wrote: Log: Emotion: introce emotion_object_video_subtitle_file_set() call For setting an arbitrary subtitle file, this patch introduces the emotion_object_video_subtitle_file_set() and its counterpart

Re: [E-devel] E SVN: dorileo trunk/emotion

2013-01-02 Thread Cedric BAIL
On Thu, Jan 3, 2013 at 6:23 AM, Leandro Dorileo dori...@profusion.mobi wrote: Huuum... it seems I've missed something here, the stable tree is been maintained on branch/emotion-1.7. There'are entries for 1.7.2, 1.7.3 and the current is 1.7.4, but no tags were created for the 1.7.2 and 1.7.3.

Re: [E-devel] E SVN: dorileo IN trunk/emotion: . src/examples src/generic_players/vlc src/lib src/modules/generic src/modules/gstreamer

2013-01-02 Thread Leandro Dorileo
Hi Cedric, On Thu, Jan 03, 2013 at 09:46:56AM +0900, Cedric BAIL wrote: On Thu, Jan 3, 2013 at 6:03 AM, Enlightenment SVN no-re...@enlightenment.org wrote: Log: Emotion: introce emotion_object_video_subtitle_file_set() call For setting an arbitrary subtitle file, this patch introduces

Re: [E-devel] eio eio_eet_flush - eio_eet_sync

2013-01-02 Thread The Rasterman
On Thu, 3 Jan 2013 09:44:45 +0900 Cedric BAIL cedric.b...@free.fr said: On Thu, Jan 3, 2013 at 8:57 AM, Carsten Haitzler ras...@rasterman.com wrote: On Wed, 2 Jan 2013 21:01:06 +0100 Jérémy Zurcher jer...@asynk.ch said: 1.7.5 is coming, what about this private thread !? like 80+ emails

Re: [E-devel] E SVN: dorileo IN trunk/emotion: . src/examples src/generic_players/vlc src/lib src/modules/generic src/modules/gstreamer

2013-01-02 Thread Ulisses Furquim
Hi, On Thu, Jan 3, 2013 at 12:10 AM, Leandro Dorileo dori...@profusion.mobi wrote: Hi Cedric, On Thu, Jan 03, 2013 at 09:46:56AM +0900, Cedric BAIL wrote: On Thu, Jan 3, 2013 at 6:03 AM, Enlightenment SVN no-re...@enlightenment.org wrote: Log: Emotion: introce

Re: [E-devel] E SVN: dorileo IN trunk/emotion: . src/examples src/generic_players/vlc src/lib src/modules/generic src/modules/gstreamer

2013-01-02 Thread The Rasterman
On Thu, 3 Jan 2013 00:57:34 -0200 Ulisses Furquim ulis...@profusion.mobi said: Hi, On Thu, Jan 3, 2013 at 12:10 AM, Leandro Dorileo dori...@profusion.mobi wrote: Hi Cedric, On Thu, Jan 03, 2013 at 09:46:56AM +0900, Cedric BAIL wrote: On Thu, Jan 3, 2013 at 6:03 AM, Enlightenment SVN

Re: [E-devel] E SVN: dorileo IN trunk/emotion: . src/examples src/generic_players/vlc src/lib src/modules/generic src/modules/gstreamer

2013-01-02 Thread Leandro Dorileo
Hi, On Thu, Jan 03, 2013 at 12:09:58PM +0900, Carsten Haitzler wrote: On Thu, 3 Jan 2013 00:57:34 -0200 Ulisses Furquim ulis...@profusion.mobi said: Hi, On Thu, Jan 3, 2013 at 12:10 AM, Leandro Dorileo dori...@profusion.mobi wrote: Hi Cedric, On Thu, Jan 03, 2013 at

Re: [E-devel] E SVN: dorileo IN trunk/emotion: . src/examples src/generic_players/vlc src/lib src/modules/generic src/modules/gstreamer

2013-01-02 Thread Leandro Dorileo
Hi, On Thu, Jan 03, 2013 at 01:16:25AM -0200, Leandro Dorileo wrote: Hi, On Thu, Jan 03, 2013 at 12:09:58PM +0900, Carsten Haitzler wrote: On Thu, 3 Jan 2013 00:57:34 -0200 Ulisses Furquim ulis...@profusion.mobi said: Hi, On Thu, Jan 3, 2013 at 12:10 AM, Leandro Dorileo

Re: [E-devel] [PATCH] [Elementary] Patch to fix elementary list with separator

2013-01-02 Thread thiep ha
Dear Daniel, I would like to send the modified source code. Please review it. P/S: Sorry for a little late, my laptop was broken last night. Thanks Regards, Thiep --- Original Message --- Sender : Daniel Juyung Seoseojuyu...@gmail.com Date : Jan 02, 2013 19:13 (GMT+09:00) Title :

Re: [E-devel] [Patch] Fix _item_text_set_hook to set part text correctly

2013-01-02 Thread ChunEon Park
good catch! thx. -Regards, Hermet- -Original Message- From: 조재현lt;jae_hyun_...@naver.comgt; To: lt;enlightenment-devel@lists.sourceforge.netgt;; Cc: Sent: 2013-01-03 (목) 01:23:11 Subject: [E-devel][Patch] Fix _item_text_set_hook to set part text

Re: [E-devel] [Patch] Fix _item_text_set_hook to set part text correctly

2013-01-02 Thread Daniel Juyung Seo
:( On Thu, Jan 3, 2013 at 1:10 PM, ChunEon Park her...@naver.com wrote: good catch! thx. -Regards, Hermet- -Original Message- From: 조재현lt;jae_hyun_...@naver.comgt; To: lt;enlightenment-devel@lists.sourceforge.netgt;; Cc: Sent: 2013-01-03

Re: [E-devel] [Patch] Fix _item_text_set_hook to set part text correctly

2013-01-02 Thread ChunEon Park
Sorry, i missed your review. But i fixed it instead. thank you. -Regards, Hermet- -Original Message- From: Daniel Juyung Seolt;seojuyu...@gmail.comgt; To: Enlightenment developer listlt;enlightenment-devel@lists.sourceforge.netgt;; Cc: Sent:

Re: [E-devel] E SVN: dorileo IN trunk/emotion: . src/examples src/generic_players/vlc src/lib src/modules/generic src/modules/gstreamer

2013-01-02 Thread The Rasterman
On Thu, 3 Jan 2013 01:45:22 -0200 Leandro Dorileo dori...@profusion.mobi said: Hi, On Thu, Jan 03, 2013 at 01:16:25AM -0200, Leandro Dorileo wrote: Hi, On Thu, Jan 03, 2013 at 12:09:58PM +0900, Carsten Haitzler wrote: On Thu, 3 Jan 2013 00:57:34 -0200 Ulisses Furquim

[E-devel] [PATCH] Add omit feature to elm_index

2013-01-02 Thread 최자은
Hi all This patch adds some functions to elm_index for supporting omit feature. When elm_index has too many items, some items are cut out of the frame. This can be resolved by omitting some items in the middle so the whole index can be seen from the top to the bottom. The related source code

Re: [E-devel] FOSDEM 2012 Cross-Desktop Dev Room

2013-01-02 Thread The Rasterman
On Mon, 12 Nov 2012 11:39:38 +0100 Philippe Caseiro caseiro.phili...@gmail.com said: it seems that me and cedric will be sharing a slot about e17 ... and e18... so for anyone wanting to come to fosdem for some fun... we'll probably be there. Hello Following the call Crossdesktop Devroom

Re: [E-devel] GL backend - EGL

2013-01-02 Thread The Rasterman
On Tue, 13 Nov 2012 15:45:58 -0200 Rafael Antognolli antogno...@gmail.com said: On Mon, Oct 29, 2012 at 9:38 AM, Rafael Antognolli antogno...@gmail.com wrote: Exactly. So, right now we have either OpenGL, or OpenGL-ES with EGL, right? As you said, what I want to add is a new combination of

Re: [E-devel] [Patch] Add external engine support for elm map

2013-01-02 Thread The Rasterman
On Wed, 14 Nov 2012 17:54:33 +0900 Bluezery ohpo...@gmail.com said: this patch is hard to read as it changes so much and mixes up changes due to the way diff is working. i've taken a read of it and i see what you are doing roughly - the general direction is ok. i'd say that that the patch needs

Re: [E-devel] [Patch][Elementary]Genlist: Fix anchor item to prevent scroller movement

2013-01-02 Thread The Rasterman
On Thu, 15 Nov 2012 22:58:28 +0900 Bluezery ohpo...@gmail.com said: 2012/11/15 Carsten Haitzler ras...@rasterman.com: On Wed, 17 Oct 2012 22:08:52 +0900 Bluezery ohpo...@gmail.com said: Dear all, When you prepend or insert_before items into genlist, scroller is moved. This bugs was

Re: [E-devel] E SVN: acidx IN trunk/efl/src: lib/ecore_evas modules/ecore_evas/engines/x

2013-01-02 Thread Cedric BAIL
Hello, On Tue, Jan 1, 2013 at 1:00 AM, Ulisses Furquim ulis...@profusion.mobi wrote: On Sun, Dec 30, 2012 at 9:50 PM, Cedric BAIL cedric.b...@free.fr wrote: I am disappointed by your answer. Terminology now use 4 times more CPU and your answer is just live with it ! You didn't even look at it.

Re: [E-devel] E SVN: mej trunk/eeze

2013-01-02 Thread Michael Jennings
On Wednesday, 26 December 2012, at 18:47:25 (+0100), Bertrand Jacquin wrote: libmount doesn't exist, so let's not depend on it, shall we? but it does... I can confirm that it come from util-linux : http://git.kernel.org/?p=utils/util-linux/util-linux.git;a=tree;f=libmount/src It

Re: [E-devel] E SVN: mej trunk/efl/spec

2013-01-02 Thread Michael Jennings
On Thursday, 27 December 2012, at 08:34:19 (+1030), Simon wrote: Sleep_Walker has been working on his own version that is listed below [1], we already maintain and actively test spec files for release [2] and development [3] on OBS. Maybe you can get some more hints from there. Those are

Re: [E-devel] [PATCH] [Elementary] Patch to fix elementary list with separator

2013-01-02 Thread Daniel Juyung Seo
Thanks in SVN! Please modify ChangeLog and NEWS files when you fix a bug which was included in the released version. I did it for you this time. http://trac.enlightenment.org/e/changeset/82040 http://trac.enlightenment.org/e/changeset/82041 Thanks. Daniel Juyung Seo (Seoz) On Thu, Jan 3, 2013

Re: [E-devel] [PATCH] [Elementary] Patch to fix elementary list with separator

2013-01-02 Thread thiep ha
Thank you for your help. I will do that from next time. Best Regards, Thiep --- Original Message --- Sender : Daniel Juyung Seoseojuyu...@gmail.com Date : Jan 03, 2013 15:54 (GMT+09:00) Title : Re: [E-devel] [PATCH] [Elementary] Patch to fix elementary list with separator

[E-devel] Korean E dinner

2013-01-02 Thread Cedric BAIL
Hey boys, Who is in for a dinner on saturday 5th in Seoul ? Any preferred place ? See you, -- Cedric BAIL -- Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, MVC, Windows 8 Apps, JavaScript and much

Re: [E-devel] [e-users] Korean E dinner

2013-01-02 Thread Daniel Juyung Seo
Oh.. this week? I should wear E SPANK t-shirts. But I not sure if I can join this time... Daniel Juyung Seo (SeoZ) On Thu, Jan 3, 2013 at 4:06 PM, Cedric BAIL cedric.b...@free.fr wrote: Hey boys, Who is in for a dinner on saturday 5th in Seoul ? Any preferred place ? See you, -- Cedric

Re: [E-devel] E SVN: mike_m trunk/efl/src/lib/ecore_con

2013-01-02 Thread Mike McCormack
On 01/03/2013 08:09 AM, Michael Blumenkrantz wrote: On Wed, 2 Jan 2013 19:05:54 -0200 Eduardo Lima (Etrunko) ebl...@gmail.com wrote: - dns_header(P)-arcount = htons(ntohs(dns_header(P)-arcount) + 1); + count = ntohs(dns_header(P)-arcount) + 1; +

Re: [E-devel] E SVN: raster IN trunk/efl: . src/modules/evas/engines/software_x11

2013-01-02 Thread Christopher Michael
On 03/01/13 00:01, Carsten Haitzler (The Rasterman) wrote: On Wed, 02 Jan 2013 15:05:06 + Christopher Michael cp.mich...@samsung.com said: Hmmm, I think you're Fix needs a fix there mate ;) snip * 8 vs * 4 ?? ;) If I had commit access right now, I would just fix it. oops. having to