[EGIT] [apps/terminology] master 01/02: termptyesc: just ignore screen mode

2019-05-27 Thread Boris Faure
billiob pushed a commit to branch master.

http://git.enlightenment.org/apps/terminology.git/commit/?id=16db713a44e34f05793206f764c49ccd291dfa09

commit 16db713a44e34f05793206f764c49ccd291dfa09
Author: Boris Faure 
Date:   Mon May 27 19:20:09 2019 +0200

termptyesc: just ignore screen mode
---
 src/bin/termptyesc.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/bin/termptyesc.c b/src/bin/termptyesc.c
index 520cb36..498b8d9 100644
--- a/src/bin/termptyesc.c
+++ b/src/bin/termptyesc.c
@@ -492,7 +492,6 @@ _handle_esc_csi_reset_mode(Termpty *ty, Eina_Unicode cc, 
Eina_Unicode *b,
   See 
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=577012
   */
WRN("Ignored screen mode %i", arg);
-   ty->decoding_error = EINA_TRUE;
break;
 case 1047:
if (!mode && ty->altbuf)

-- 




[EGIT] [apps/terminology] master 02/02: termptyesc: handle some OSC where there's nothing to do

2019-05-27 Thread Boris Faure
billiob pushed a commit to branch master.

http://git.enlightenment.org/apps/terminology.git/commit/?id=417cf716c6875cec5a978f878507538047dcb007

commit 417cf716c6875cec5a978f878507538047dcb007
Author: Boris Faure 
Date:   Mon May 27 19:20:28 2019 +0200

termptyesc: handle some OSC where there's nothing to do
---
 src/bin/termptyesc.c | 30 ++
 1 file changed, 30 insertions(+)

diff --git a/src/bin/termptyesc.c b/src/bin/termptyesc.c
index 498b8d9..b039a7c 100644
--- a/src/bin/termptyesc.c
+++ b/src/bin/termptyesc.c
@@ -3820,6 +3820,36 @@ _handle_esc_osc(Termpty *ty, const Eina_Unicode *c, 
const Eina_Unicode *ce)
  free(s);
   }
 break;
+  case 110:
+DBG("Reset VT100 text foreground color");
+break;
+  case 111:
+DBG("Reset VT100 text background color");
+break;
+  case 112:
+DBG("Reset text cursor color");
+break;
+  case 113:
+DBG("Reset mouse foreground color");
+break;
+  case 114:
+DBG("Reset mouse background color");
+break;
+  case 115:
+DBG("Reset Tektronix foreground color");
+break;
+  case 116:
+DBG("Reset Tektronix background color");
+break;
+  case 117:
+DBG("Reset highlight color");
+break;
+  case 118:
+DBG("Reset Tektronix cursor color");
+break;
+  case 119:
+DBG("Reset highlight foreground color");
+break;
   case 777:
 DBG("xterm notification support");
 s = eina_unicode_unicode_to_utf8(p, );

-- 




Re: [E-devel] Seeking inout for Enlightenment Developer Days 2019

2019-05-27 Thread Jonathan Aquilina
Got it. Thanks Stefan

On 27/05/2019, 12:21, "Stefan Schmidt"  wrote:

Hello Jonathon.

On 27.05.19 12:09, Jonathan Aquilina wrote:
> Hi Stefan,
> 
> Anything I can do to help? Is it possible to do a poll on phab?

Not really, I needed to get some initial dates sorted out.

I created a poll on phab now. This is to gauge interest for the
different dates and locations. If nothing fits please vote the answers I
added for these cases.

If there are other preferred dates or someone else can offer hosting I
am happy to add it. We would need a final vote in the end anyway.

https://phab.enlightenment.org/V44

regards
Stefan Schmidt



___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[EGIT] [core/efl] master 01/01: efl_ui_stack: fix not to keep final state of push/pop animations

2019-05-27 Thread Jaehyun Cho
jaehyun pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=48c53841a43e35b19e3808712f46a1ca89593363

commit 48c53841a43e35b19e3808712f46a1ca89593363
Author: Jaehyun Cho 
Date:   Mon May 27 19:32:01 2019 +0900

efl_ui_stack: fix not to keep final state of push/pop animations

It is just required to show pushed content and hide popped content after
the push/pop animations.
Therefore, it is not required to keep the final state of the push/pop
animations after finishing the push/pop animations.
---
 src/lib/elementary/efl_ui_stack.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/lib/elementary/efl_ui_stack.c 
b/src/lib/elementary/efl_ui_stack.c
index c330fada92..92241acf87 100644
--- a/src/lib/elementary/efl_ui_stack.c
+++ b/src/lib/elementary/efl_ui_stack.c
@@ -675,7 +675,6 @@ _efl_ui_stack_efl_object_constructor(Eo *obj, 
Efl_Ui_Stack_Data *pd EINA_UNUSED)
sh = show_anim = efl_add(EFL_CANVAS_ANIMATION_ALPHA_CLASS, obj);
efl_animation_alpha_set(show_anim, 0.0, 1.0);
efl_animation_duration_set(show_anim, 0.5);
-   efl_animation_final_state_keep_set(show_anim, EINA_TRUE);
 
pd->show = efl_add(EFL_CANVAS_ANIMATION_PLAYER_CLASS, obj);
efl_animation_player_animation_set(pd->show, sh);
@@ -686,7 +685,6 @@ _efl_ui_stack_efl_object_constructor(Eo *obj, 
Efl_Ui_Stack_Data *pd EINA_UNUSED)
hi = hide_anim = efl_add(EFL_CANVAS_ANIMATION_ALPHA_CLASS, obj);
efl_animation_alpha_set(hide_anim, 1.0, 0.0);
efl_animation_duration_set(hide_anim, 0.5);
-   efl_animation_final_state_keep_set(hide_anim, EINA_TRUE);
 
pd->hide = efl_add(EFL_CANVAS_ANIMATION_PLAYER_CLASS, obj);
efl_animation_player_animation_set(pd->hide, hi);

-- 




Re: [E-devel] Seeking inout for Enlightenment Developer Days 2019

2019-05-27 Thread Stefan Schmidt
Hello Jonathon.

On 27.05.19 12:09, Jonathan Aquilina wrote:
> Hi Stefan,
> 
> Anything I can do to help? Is it possible to do a poll on phab?

Not really, I needed to get some initial dates sorted out.

I created a poll on phab now. This is to gauge interest for the
different dates and locations. If nothing fits please vote the answers I
added for these cases.

If there are other preferred dates or someone else can offer hosting I
am happy to add it. We would need a final vote in the end anyway.

https://phab.enlightenment.org/V44

regards
Stefan Schmidt


___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Seeking inout for Enlightenment Developer Days 2019

2019-05-27 Thread Jonathan Aquilina
Hi Stefan,

Anything I can do to help? Is it possible to do a poll on phab?

Regards,
Jonathan

On 27/05/2019, 09:48, "Stefan Schmidt"  wrote:

Hello Jonathon.

On 25.05.19 07:14, Jonathan Aquilina wrote:
> Hi Stefan,
> 
> EDD discussions have seem to have gone silent. Has anything been decided?

As raster wrote, just busy. I will try to come back to it soon.

regards
Stefan Schmidt



___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Seeking inout for Enlightenment Developer Days 2019

2019-05-27 Thread Stefan Schmidt
Hello Jonathon.

On 25.05.19 07:14, Jonathan Aquilina wrote:
> Hi Stefan,
> 
> EDD discussions have seem to have gone silent. Has anything been decided?

As raster wrote, just busy. I will try to come back to it soon.

regards
Stefan Schmidt


___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[EGIT] [core/efl] master 01/01: ecore_evas win32: fix warning reported by clang

2019-05-27 Thread Vincent Torri
hermet pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=7a882ab02ca668c3bfe383173e0b0ff678618062

commit 7a882ab02ca668c3bfe383173e0b0ff678618062
Author: Vincent Torri 
Date:   Mon May 27 15:58:51 2019 +0900

ecore_evas win32: fix warning reported by clang

Test Plan: compilation

Reviewers: zmike, raster, cedric, Hermet

Reviewed By: Hermet

Subscribers: #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D9025
---
 src/modules/ecore_evas/engines/win32/ecore_evas_win32.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/modules/ecore_evas/engines/win32/ecore_evas_win32.c 
b/src/modules/ecore_evas/engines/win32/ecore_evas_win32.c
index 9a5bd15914..39def9d49f 100644
--- a/src/modules/ecore_evas/engines/win32/ecore_evas_win32.c
+++ b/src/modules/ecore_evas/engines/win32/ecore_evas_win32.c
@@ -1013,7 +1013,7 @@ _ecore_evas_win32_alpha_set(Ecore_Evas *ee, int alpha)
 #warning "We need to handle window with alpha channel."
/* Ecore_Evas_Engine_Data_Win32 *wdata = ee->engine.data; */
alpha = !!alpha;
-   if ((ee->alpha == alpha)) return;
+   if (ee->alpha == alpha) return;
 
if (!strcmp(ee->driver, "software_gdi"))
  {

-- 




[EGIT] [core/efl] master 01/01: Evas gesture: do not use abs when dealing with double, use fabs instead

2019-05-27 Thread Vincent Torri
hermet pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=0732606118ed5d740c049b173e60c02c550c34d5

commit 0732606118ed5d740c049b173e60c02c550c34d5
Author: Vincent Torri 
Date:   Mon May 27 15:56:41 2019 +0900

Evas gesture: do not use abs when dealing with double, use fabs instead

Summary: clang reports a warning here. We compare the result of abs 
(casting to an int, returning an int) to a double value. Hence we should use 
fabs instead

Test Plan: compilation

Reviewers: Jaehyun, Hermet

Reviewed By: Hermet

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D9024
---
 src/lib/evas/gesture/efl_canvas_gesture_recognizer_momentum.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lib/evas/gesture/efl_canvas_gesture_recognizer_momentum.c 
b/src/lib/evas/gesture/efl_canvas_gesture_recognizer_momentum.c
index 34c9030ad3..2e007cc0f9 100644
--- a/src/lib/evas/gesture/efl_canvas_gesture_recognizer_momentum.c
+++ b/src/lib/evas/gesture/efl_canvas_gesture_recognizer_momentum.c
@@ -175,8 +175,8 @@ 
_efl_canvas_gesture_recognizer_momentum_efl_canvas_gesture_recognizer_recognize(
   pd->t_end = efl_gesture_touch_cur_timestamp_get(event);
efl_gesture_hotspot_set(gesture, pd->end_line);
 
-   if ((abs(md->momentum.x) > EFL_GESTURE_MINIMUM_MOMENTUM) ||
-   (abs(md->momentum.y) > EFL_GESTURE_MINIMUM_MOMENTUM))
+   if ((fabs(md->momentum.x) > EFL_GESTURE_MINIMUM_MOMENTUM) ||
+   (fabs(md->momentum.y) > EFL_GESTURE_MINIMUM_MOMENTUM))
 result = EFL_GESTURE_FINISH;
else
 result = EFL_GESTURE_CANCEL;

--