[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, &len);

-- 




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