Re: [E-devel] Testing a fedora repo for efl packages at http://packages.enlightenment.org/fedora/

2012-09-13 Thread Daniel McLellan
it is ok, I will just wait (I am one of those package managers)

thanks!
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: seoz trunk/BINDINGS/python/python-elementary

2012-09-13 Thread Davide Andreoli
whops, sorry, my fault :(
thanks for the fast fix

2012/9/13 Enlightenment SVN no-re...@enlightenment.org

 Log:
 python-elementary Makefile.am: Fixed build error.

 Author:   seoz
 Date: 2012-09-12 23:24:39 -0700 (Wed, 12 Sep 2012)
 New Revision: 76576
 Trac: http://trac.enlightenment.org/e/changeset/76576

 Modified:
   trunk/BINDINGS/python/python-elementary/Makefile.am

 Modified: trunk/BINDINGS/python/python-elementary/Makefile.am
 ===
 --- trunk/BINDINGS/python/python-elementary/Makefile.am 2012-09-13
 06:15:11 UTC (rev 76575)
 +++ trunk/BINDINGS/python/python-elementary/Makefile.am 2012-09-13
 06:24:39 UTC (rev 76576)
 @@ -90,7 +90,7 @@
 tests/test.py \
 tests/test.edj \
 tests/cursors.edj \
 -   tests/external.edj \
 +   tests/test_external.edj \
 tests/test_3d.py \
 tests/test_actionslider.py \
 tests/test_bg.py \



 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 enlightenment-svn mailing list
 enlightenment-...@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-svn

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Elc_Naviframe: Animation optimization patch

2012-09-13 Thread SHILPA ONKAR SINGH

Hi All,

Please find attached patch for naviframe animation optimization.
This patch makes sure animation happens smoothly even if content is heavy.
i.e, this patch makes sure animation is deferred so that it is visible(showing 
full transition time)
even if content takes more time in creation.

Change description:
Naviframe Animation optimization for smoother animation.

Signed-off by: Shilpa Singh

Thanks  Regards
Shilpa Singh

elc_naviframe.diff
Description: Binary data
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] [Patch] [Elementary] Support for circular effect in elm_diskselector, in case scroller's bounce effect is disabled.

2012-09-13 Thread PRINCE KUMAR DUBEY
Hi,

Can someone please review the attached patch created by Sumanth.

[Issue Details] :
elm_diskselector_round_enable_set() API is not working, if elm_scroller's 
bounce effect is disabled.

[Root cause] :
For diskselector circular effect, the boundary checking is done based on 
scroller's geometry.
If bouncing effect is disabled in elm_scroller, its geometry can lie between 0 
on left and CHILD_SIZE on right but it can never go beyond that point.
Unless the scroller's geometry goes beyond its child (here, elm_box) size, 
diskselector cann't trigger the circular effect.

[Change Description] :
For diskselector items circular effect, the boundary checking is performed at 
the left/right edges of its child, elm_box.
Once the scroller reaches to the left/right edge of box or goes beyond that 
point, circular effect will be triggered.

[Signed-Off-By] Sumanth Krishna (sumant...@samsung.com)

Thank You.
Regards,
Prince

elm_diskselector.diff
Description: Binary data
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Elc_Naviframe: Animation optimization patch

2012-09-13 Thread The Rasterman
On Thu, 13 Sep 2012 10:21:45 + (GMT) SHILPA ONKAR SINGH
shilpa.si...@samsung.com said:

dark helmet... errr hermet i mean... were you not working on something like
this? i know you asked me about it... and showed me some stuff...?

 
 Hi All,
 
 Please find attached patch for naviframe animation optimization.
 This patch makes sure animation happens smoothly even if content is heavy.
 i.e, this patch makes sure animation is deferred so that it is visible
 (showing full transition time) even if content takes more time in creation.
 
 Change description:
 Naviframe Animation optimization for smoother animation.
 
 Signed-off by: Shilpa Singh
 
 Thanks  Regards
 Shilpa Singh

-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [Patch] [Elementary] Support for circular effect in elm_diskselector, in case scroller's bounce effect is disabled.

2012-09-13 Thread The Rasterman
On Thu, 13 Sep 2012 10:23:40 + (GMT) PRINCE KUMAR DUBEY
prince.du...@samsung.com said:

thanks! yes - this fixes it. tbh i'm not happy with diskselector in general,
but that's another topic. in svn this goes! :) thanks! (also backported)

 Hi,
 
 Can someone please review the attached patch created by Sumanth.
 
 [Issue Details] :
 elm_diskselector_round_enable_set() API is not working, if elm_scroller's
 bounce effect is disabled.
 
 [Root cause] :
 For diskselector circular effect, the boundary checking is done based on
 scroller's geometry. If bouncing effect is disabled in elm_scroller, its
 geometry can lie between 0 on left and CHILD_SIZE on right but it can never
 go beyond that point. Unless the scroller's geometry goes beyond its child
 (here, elm_box) size, diskselector cann't trigger the circular effect.
 
 [Change Description] :
 For diskselector items circular effect, the boundary checking is performed at
 the left/right edges of its child, elm_box. Once the scroller reaches to the
 left/right edge of box or goes beyond that point, circular effect will be
 triggered.
 
 [Signed-Off-By] Sumanth Krishna (sumant...@samsung.com)
 
 Thank You.
 Regards,
 Prince

-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Escape From Booty Bay

2012-09-13 Thread Leandro Pereira
On 09/12/2012 09:51 PM, ChunEon Park wrote:
 Funny!!
 Who designed UX of this game? :)


You can easily tell by the vibrant colors that it was Antognolli. Just 
kidding -- Marina Proni, our designer, designed it. :)


Leandro


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] [announcement] elemines 0.1

2012-09-13 Thread Jérôme Pinot
Hi,

I'm pleased to announce the first release of elemines, a small
minesweeper clone that uses the EFL. You will need the EFL 1.7.0.

Project page: http://elemines.sourceforge.net/ 
Direct download:
http://sourceforge.net/projects/elemines/files/0.1/elemines-0.1.tar.bz2/download
 
Comments can go on my blog: http://ngc891.blogdns.net/?p=210 

Have fun!

-- 
Jérôme Pinot
http://ngc891.blogdns.net/


signature.asc
Description: Digital signature
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [announcement] elemines 0.1

2012-09-13 Thread Jeff Hoogland
Awesome! The more EFL apps we have the better.

On Thu, Sep 13, 2012 at 8:37 AM, Jérôme Pinot ngc...@gmail.com wrote:

 Hi,

 I'm pleased to announce the first release of elemines, a small
 minesweeper clone that uses the EFL. You will need the EFL 1.7.0.

 Project page: http://elemines.sourceforge.net/
 Direct download:

 http://sourceforge.net/projects/elemines/files/0.1/elemines-0.1.tar.bz2/download
 Comments can go on my blog: http://ngc891.blogdns.net/?p=210

 Have fun!

 --
 Jérôme Pinot
 http://ngc891.blogdns.net/


 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel




-- 
~Jeff Hoogland http://jeffhoogland.com/
Thoughts on Technology http://jeffhoogland.blogspot.com/, Tech Blog
Bodhi Linux http://bodhilinux.com/, Enlightenment for your Desktop
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [announcement] elemines 0.1

2012-09-13 Thread Tom Hacohen
Haha, very cool! We'll finally be able to make a desktop environment 
soon, and not just a WM, as we finally have apps. Though tbh, most of 
our apps are games,  I wonder what this says on our work ethics... :)

--
Tom.

On 13/09/12 16:37, Jérôme Pinot wrote:
 Hi,

 I'm pleased to announce the first release of elemines, a small
 minesweeper clone that uses the EFL. You will need the EFL 1.7.0.

 Project page: http://elemines.sourceforge.net/
 Direct download:
 http://sourceforge.net/projects/elemines/files/0.1/elemines-0.1.tar.bz2/download
 Comments can go on my blog: http://ngc891.blogdns.net/?p=210

 Have fun!



 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/



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




--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [announcement] elemines 0.1

2012-09-13 Thread Bruno Dilly
Just played here!
Very nice  =D

On Thu, Sep 13, 2012 at 10:45 AM, Tom Hacohen tom.haco...@samsung.com wrote:
 Haha, very cool! We'll finally be able to make a desktop environment
 soon, and not just a WM, as we finally have apps. Though tbh, most of
 our apps are games,  I wonder what this says on our work ethics... :)

 --
 Tom.

 On 13/09/12 16:37, Jérôme Pinot wrote:
 Hi,

 I'm pleased to announce the first release of elemines, a small
 minesweeper clone that uses the EFL. You will need the EFL 1.7.0.

 Project page: http://elemines.sourceforge.net/
 Direct download:
 http://sourceforge.net/projects/elemines/files/0.1/elemines-0.1.tar.bz2/download
 Comments can go on my blog: http://ngc891.blogdns.net/?p=210

 Have fun!



 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/



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




 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel



-- 
Bruno Dilly
Senior Developer
ProFUSION embedded systems
http://profusion.mobi

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [announcement] elemines 0.1

2012-09-13 Thread Vincent Torri
On Thu, Sep 13, 2012 at 3:45 PM, Tom Hacohen tom.haco...@samsung.com wrote:
 Haha, very cool! We'll finally be able to make a desktop environment
 soon, and not just a WM, as we finally have apps. Though tbh, most of
 our apps are games,  I wonder what this says on our work ethics... :)

Help me with eyesight, then, and you'll have another app :)

Vincent

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [announcement] elemines 0.1

2012-09-13 Thread P Purkayastha
On 09/14/2012 12:06 AM, Vincent Torri wrote:
 On Thu, Sep 13, 2012 at 3:45 PM, Tom Hacohentom.haco...@samsung.com  wrote:
 Haha, very cool! We'll finally be able to make a desktop environment
 soon, and not just a WM, as we finally have apps. Though tbh, most of
 our apps are games,  I wonder what this says on our work ethics... :)

 Help me with eyesight, then, and you'll have another app :)

++

a smoother okular clone. yummy!


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [announcement] elemines 0.1

2012-09-13 Thread Steven Le Roux
really nice ! beautiful and stable for a 0.1 :)

now you could  add some social ranking stuff ;) (or a simple tweet my
time to elemine all those bombs ! ) It could provide a little bit of
advertisement for elemines and EFL)

On Thu, Sep 13, 2012 at 6:17 PM, P Purkayastha ppu...@gmail.com wrote:
 On 09/14/2012 12:06 AM, Vincent Torri wrote:
 On Thu, Sep 13, 2012 at 3:45 PM, Tom Hacohentom.haco...@samsung.com  wrote:
 Haha, very cool! We'll finally be able to make a desktop environment
 soon, and not just a WM, as we finally have apps. Though tbh, most of
 our apps are games,  I wonder what this says on our work ethics... :)

 Help me with eyesight, then, and you'll have another app :)

 ++

 a smoother okular clone. yummy!


 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel



-- 
Steven Le Roux
Jabber-ID : ste...@jabber.fr
0x39494CCB ste...@le-roux.info
2FF7 226B 552E 4709 03F0  6281 72D7 A010 3949 4CCB

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [e-users] [announcement] elemines 0.1

2012-09-13 Thread Daniel Juyung Seo
Hehe awesome
Can you also support touch screen? I'd like to run elemines on the phone :)

Daniel Juyung Seo (SeoZ)

On Fri, Sep 14, 2012 at 1:36 AM, Steven Le Roux ste...@le-roux.info wrote:
 really nice ! beautiful and stable for a 0.1 :)

 now you could  add some social ranking stuff ;) (or a simple tweet my
 time to elemine all those bombs ! ) It could provide a little bit of
 advertisement for elemines and EFL)

 On Thu, Sep 13, 2012 at 6:17 PM, P Purkayastha ppu...@gmail.com wrote:
 On 09/14/2012 12:06 AM, Vincent Torri wrote:
 On Thu, Sep 13, 2012 at 3:45 PM, Tom Hacohentom.haco...@samsung.com  
 wrote:
 Haha, very cool! We'll finally be able to make a desktop environment
 soon, and not just a WM, as we finally have apps. Though tbh, most of
 our apps are games,  I wonder what this says on our work ethics... :)

 Help me with eyesight, then, and you'll have another app :)

 ++

 a smoother okular clone. yummy!


 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel



 --
 Steven Le Roux
 Jabber-ID : ste...@jabber.fr
 0x39494CCB ste...@le-roux.info
 2FF7 226B 552E 4709 03F0  6281 72D7 A010 3949 4CCB

 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 enlightenment-users mailing list
 enlightenment-us...@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-users

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Docs page

2012-09-13 Thread Bruno Dilly
Hi guys,

page http://www.enlightenment.org/p.php?p=docsl=en shows broken links on
Application Documentation section.

Imo this section could be removed.

Also, do you agree to place EPhysics on EFL Documentation ?
If nobody opposes could anybody does this for me ?

EPhysics docs are in good shape. Examples section requires more love
but we'll be working on that this week.

Regards,

-- 
Bruno Dilly
Senior Developer
ProFUSION embedded systems
http://profusion.mobi

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: raster IN trunk/elementary: . src/lib

2012-09-13 Thread Daniel Juyung Seo
It looks like the author is Sumanth as Prince mentioned in his email.

Daniel Juyung Seo (SeoZ)
On Sep 13, 2012 8:55 PM, Enlightenment SVN no-re...@enlightenment.org
wrote:

 Log:
 From: PRINCE KUMAR DUBEY prince.du...@samsung.com
   Subject: [E-devel] [Patch] [Elementary] Support for circular effect in
   elm_diskselector, in case scroller's bounce effect is disabled.

   Can someone please review the attached patch created by Sumanth.

   [Issue Details] :
   elm_diskselector_round_enable_set() API is not working, if
   elm_scroller's bounce effect is disabled.

   [Root cause] :
   For diskselector circular effect, the boundary checking is done based
   on scroller's geometry.
   If bouncing effect is disabled in elm_scroller, its geometry can lie
   between 0 on left and CHILD_SIZE on right but it can never go beyond
   that point.
   Unless the scroller's geometry goes beyond its child (here, elm_box)
   size, diskselector cann't trigger the circular effect.

   [Change Description] :
   For diskselector items circular effect, the boundary checking is
   performed at the left/right edges of its child, elm_box.
   Once the scroller reaches to the left/right edge of box or goes beyond
   that point, circular effect will be triggered.



 Author:   raster
 Date: 2012-09-13 04:55:24 -0700 (Thu, 13 Sep 2012)
 New Revision: 76606
 Trac: http://trac.enlightenment.org/e/changeset/76606

 Modified:
   trunk/elementary/ChangeLog trunk/elementary/NEWS
 trunk/elementary/src/lib/elm_diskselector.c
 trunk/elementary/src/lib/elm_widget_diskselector.h

 Modified: trunk/elementary/ChangeLog
 ===
 --- trunk/elementary/ChangeLog  2012-09-13 11:28:27 UTC (rev 76605)
 +++ trunk/elementary/ChangeLog  2012-09-13 11:55:24 UTC (rev 76606)
 @@ -481,3 +481,7 @@
  2012-09-12  Davide Andreoli (davemds)

 * Add external property play length to Video widget, read-only.
 +
 +2012-09-13  Prince Kumar Dubey
 +
 +   * Fix diskselector when bounce off and round enabled.

 Modified: trunk/elementary/NEWS
 ===
 --- trunk/elementary/NEWS   2012-09-13 11:28:27 UTC (rev 76605)
 +++ trunk/elementary/NEWS   2012-09-13 11:55:24 UTC (rev 76606)
 @@ -23,7 +23,8 @@
 * Now elm_datetime_field_limit_set() can set year limits wihtout
 problems.
 * Fix re-order animation when it doesn't end correctly.
 * Fix popup to apply the same style to the notify sub-widget.
 -   * Fix Ctxpopup direction if -1 priority used
 +   * Fix Ctxpopup direction if unknown priority used.
 +   * Fix diskselector when bounce off and round enabled.

  Removals:


 Modified: trunk/elementary/src/lib/elm_diskselector.c
 ===
 --- trunk/elementary/src/lib/elm_diskselector.c 2012-09-13 11:28:27 UTC
 (rev 76605)
 +++ trunk/elementary/src/lib/elm_diskselector.c 2012-09-13 11:55:24 UTC
 (rev 76606)
 @@ -848,7 +848,9 @@
  _scroll_cb(Evas_Object *obj,
 void *data __UNUSED__)
  {
 -   Evas_Coord x, y, w, h, bw;
 +   Evas_Coord x, y, w, h, bw, x_boundary;
 +   unsigned int adjust_pixels;
 +   Eina_Bool h_bounce;

 ELM_DISKSELECTOR_DATA_GET(obj, sd);

 @@ -858,15 +860,41 @@
 if (sd-round)
   {
  evas_object_geometry_get(sd-main_box, NULL, NULL, bw, NULL);
 -if (x  ((w / sd-display_item_num) * (sd-item_count
 -   + (sd-display_item_num %
 2
 -  sd-s_iface-content_region_show
 -(obj, x - ((w / sd-display_item_num) * sd-item_count),
 -y, w, h);
 -else if (x  0)
 -  sd-s_iface-content_region_show
 -(obj, x + ((w / sd-display_item_num) * sd-item_count),
 -y, w, h);
 +x_boundary = bw - w;
 +
 +if (x = x_boundary)
 +  {
 +  if (sd-left_boundary_reached) return;
 +
 +  sd-right_boundary_reached = EINA_TRUE;
 +  sd-s_iface-bounce_allow_get(obj, h_bounce, NULL);
 +  /* If scroller's bounce effect is disabled, add 1 pixel
 +   *  to provide circular effect */
 +  adjust_pixels = (_elm_config-thumbscroll_bounce_enable
 +h_bounce) ? 0 : 1;
 +  sd-s_iface-content_region_show
 + (obj, x - x_boundary + adjust_pixels, y, w, h);
 +  sd-left_boundary_reached = EINA_FALSE;
 +  }
 +else if (x = 0)
 +  {
 +  if (sd-right_boundary_reached) return;
 +
 +  sd-left_boundary_reached = EINA_TRUE;
 +  sd-s_iface-bounce_allow_get(obj, h_bounce, NULL);
 +  /* If scroller's bounce effect is disabled, subtract 1 pixel
 +   *  to provide circular effect */
 +  adjust_pixels = (_elm_config-thumbscroll_bounce_enable
 +h_bounce) ? 0 : 1;

Re: [E-devel] [e-users] [announcement] elemines 0.1

2012-09-13 Thread Jérôme Pinot
On 09/14/12 02:47, Daniel Juyung Seo wrote:
 Hehe awesome
 Can you also support touch screen? I'd like to run elemines on the phone :)
 
 Daniel Juyung Seo (SeoZ)

Of course, it's on the TODO. It already works basically, but I need a
way to replace the second mouse button (via drag'n'drop maybe) and the
default theme of Tizen 1.0 is very incomplete and not easy to work with.
I have a similar problem with eperiodique. How can you imagine to have a
default theme using white for frame background AND text!?

BTW, is there any update of the EFL/theme for the phone? How do you do
upgrade?

-- 
Jérôme Pinot
http://ngc891.blogdns.net/


signature.asc
Description: Digital signature
--
Got visibility?
Most devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [e-users] [announcement] elemines 0.1

2012-09-13 Thread Sanjeev BA
Works really nice and smooth, but has this runtime issue.

ERR9446:ecore ecore.c:558 _ecore_magic_fail()
*** ECORE ERROR: Ecore Magic Check Failed!!!
*** IN FUNCTION: ecore_timer_freeze()
ERR9446:ecore ecore.c:562 _ecore_magic_fail()   Input handle has already
been freed!
ERR9446:ecore ecore.c:571 _ecore_magic_fail() *** NAUGHTY PROGRAMMER!!!
*** SPANK SPANK SPANK!!!
*** Now go fix your code. Tut tut tut!

Also, do you have plan for left+right mouse button click for giving mine
hints? Maybe long press ?


On Fri, Sep 14, 2012 at 10:27 AM, Jérôme Pinot ngc...@gmail.com wrote:

 On 09/14/12 02:47, Daniel Juyung Seo wrote:
  Hehe awesome
  Can you also support touch screen? I'd like to run elemines on the phone
 :)
 
  Daniel Juyung Seo (SeoZ)

 Of course, it's on the TODO. It already works basically, but I need a
 way to replace the second mouse button (via drag'n'drop maybe) and the
 default theme of Tizen 1.0 is very incomplete and not easy to work with.
 I have a similar problem with eperiodique. How can you imagine to have a
 default theme using white for frame background AND text!?

 BTW, is there any update of the EFL/theme for the phone? How do you do
 upgrade?

 --
 Jérôme Pinot
 http://ngc891.blogdns.net/


 --
 Got visibility?
 Most devs has no idea what their production app looks like.
 Find out how fast your code is with AppDynamics Lite.
 http://ad.doubleclick.net/clk;262219671;13503038;y?
 http://info.appdynamics.com/FreeJavaPerformanceDownload.html
 ___
 enlightenment-users mailing list
 enlightenment-us...@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-users


--
Got visibility?
Most devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [Patch] [Elementary] Support for circular effect in elm_diskselector, in case scroller's bounce effect is disabled.

2012-09-13 Thread ChunEon Park
I asked Shlipa to send this patch made by herself.

I will review this.  :3 


-Regards, Hermet-

-Original Message-
From: Carsten Haitzlerras...@rasterman.com 
To: Enlightenment developer listenlightenment-devel@lists.sourceforge.net; 
Cc: PRINCE KUMAR DUBEYprince.du...@samsung.com; 
Sent: 2012-09-13 (목) 20:53:39
Subject: Re: [E-devel] [Patch] [Elementary] Support for circular effect in 
elm_diskselector, in case scroller's bounce effect is disabled.

On Thu, 13 Sep 2012 10:23:40 + (GMT) PRINCE KUMAR DUBEY
prince.dubey@samsung.com said:

thanks! yes - this fixes it. tbh i'm not happy with diskselector in general,
but that's another topic. in svn this goes! :) thanks! (also backported)

 Hi,
 
 Can someone please review the attached patch created by Sumanth.
 
 [Issue Details] :
 elm_diskselector_round_enable_set() API is not working, if elm_scroller's
 bounce effect is disabled.
 
 [Root cause] :
 For diskselector circular effect, the boundary checking is done based on
 scroller's geometry. If bouncing effect is disabled in elm_scroller, its
 geometry can lie between 0 on left and CHILD_SIZE on right but it can never
 go beyond that point. Unless the scroller's geometry goes beyond its child
 (here, elm_box) size, diskselector cann't trigger the circular effect.
 
 [Change Description] :
 For diskselector items circular effect, the boundary checking is performed at
 the left/right edges of its child, elm_box. Once the scroller reaches to the
 left/right edge of box or goes beyond that point, circular effect will be
 triggered.
 
 [Signed-Off-By] Sumanth Krishna (sumant...@samsung.com)
 
 Thank You.
 Regards,
 Prince

-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
--
Got visibility?
Most devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [e-users] [announcement] elemines 0.1

2012-09-13 Thread Jérôme Pinot
On 09/14/12 10:45, Sanjeev BA wrote:
 Works really nice and smooth, but has this runtime issue.
 
 ERR9446:ecore ecore.c:558 _ecore_magic_fail()
 *** ECORE ERROR: Ecore Magic Check Failed!!!
 *** IN FUNCTION: ecore_timer_freeze()
 ERR9446:ecore ecore.c:562 _ecore_magic_fail()   Input handle has already
 been freed!
 ERR9446:ecore ecore.c:571 _ecore_magic_fail() *** NAUGHTY PROGRAMMER!!!
 *** SPANK SPANK SPANK!!!
 *** Now go fix your code. Tut tut tut!
 
Yep, I forgot this one. bdilly sent me a patch, it's fixed in git repo:
http://elemines.git.sourceforge.net/git/gitweb.cgi?p=elemines/elemines;a=commit;h=71dfe3d44bf351fed04d8a7f5f8452a340b8e4e3
 

 Also, do you have plan for left+right mouse button click for giving mine
 hints? Maybe long press ?

Not sure to understand. Mine hint without revealing the square?
Anyway, the TODO list is filling, any idea welcome :-)

-- 
Jérôme Pinot
http://ngc891.blogdns.net/


signature.asc
Description: Digital signature
--
Got visibility?
Most devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [Patch] [Elementary] Support for circular effect in elm_diskselector, in case scroller's bounce effect is disabled.

2012-09-13 Thread The Rasterman
On Fri, 14 Sep 2012 10:49:28 +0900 (KST) ChunEon Park her...@naver.com said:

ah. ok. go for it. :)

 I asked Shlipa to send this patch made by herself.
 
 I will review this.  :3 
 
 
 -Regards, Hermet-
 
 -Original Message-
 From: Carsten Haitzlerras...@rasterman.com 
 To: Enlightenment developer
 listenlightenment-devel@lists.sourceforge.net; Cc: PRINCE KUMAR
 DUBEYprince.du...@samsung.com; Sent: 2012-09-13 (목) 20:53:39
 Subject: Re: [E-devel] [Patch] [Elementary] Support for circular effect in
 elm_diskselector, in case scroller's bounce effect is disabled.
 
 On Thu, 13 Sep 2012 10:23:40 + (GMT) PRINCE KUMAR DUBEY
 prince.dubey@samsung.com said:
 
 thanks! yes - this fixes it. tbh i'm not happy with diskselector in general,
 but that's another topic. in svn this goes! :) thanks! (also backported)
 
  Hi,
  
  Can someone please review the attached patch created by Sumanth.
  
  [Issue Details] :
  elm_diskselector_round_enable_set() API is not working, if elm_scroller's
  bounce effect is disabled.
  
  [Root cause] :
  For diskselector circular effect, the boundary checking is done based on
  scroller's geometry. If bouncing effect is disabled in elm_scroller, its
  geometry can lie between 0 on left and CHILD_SIZE on right but it can never
  go beyond that point. Unless the scroller's geometry goes beyond its child
  (here, elm_box) size, diskselector cann't trigger the circular effect.
  
  [Change Description] :
  For diskselector items circular effect, the boundary checking is performed
  at the left/right edges of its child, elm_box. Once the scroller reaches to
  the left/right edge of box or goes beyond that point, circular effect will
  be triggered.
  
  [Signed-Off-By] Sumanth Krishna (sumant...@samsung.com)
  
  Thank You.
  Regards,
  Prince
 
 -- 
 - Codito, ergo sum - I code, therefore I am --
 The Rasterman (Carsten Haitzler)ras...@rasterman.com
 
 
 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and 
 threat landscape has changed and how IT managers can respond. Discussions 
 will include endpoint security, mobile security and the latest in malware 
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 --
 Got visibility?
 Most devs has no idea what their production app looks like.
 Find out how fast your code is with AppDynamics Lite.
 http://ad.doubleclick.net/clk;262219671;13503038;y?
 http://info.appdynamics.com/FreeJavaPerformanceDownload.html
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Got visibility?
Most devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Docs page

2012-09-13 Thread The Rasterman
On Thu, 13 Sep 2012 14:53:00 -0300 Bruno Dilly bdi...@profusion.mobi said:

 Hi guys,
 
 page http://www.enlightenment.org/p.php?p=docsl=en shows broken links on
 Application Documentation section.
 
 Imo this section could be removed.

yeah - i know. it's kind of waiting a re-do.

 Also, do you agree to place EPhysics on EFL Documentation ?
 If nobody opposes could anybody does this for me ?

catch. bullet isnt pkged for debian and to build docs we have to build ephysics.
we also are due to bring a new machine up... which means we need to set up a
bew build env for efl in a vm... :)

 EPhysics docs are in good shape. Examples section requires more love
 but we'll be working on that this week.
 
 Regards,
 
 -- 
 Bruno Dilly
 Senior Developer
 ProFUSION embedded systems
 http://profusion.mobi
 
 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and 
 threat landscape has changed and how IT managers can respond. Discussions 
 will include endpoint security, mobile security and the latest in malware 
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 


-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Got visibility?
Most devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [Patch] [Elementary] Support for circular effect in elm_diskselector, in case scroller's bounce effect is disabled.

2012-09-13 Thread The Rasterman
On Fri, 14 Sep 2012 10:49:28 +0900 (KST) ChunEon Park her...@naver.com said:

nb - u replied to the wrong mail - but i know which one you meant to reply to :)

 I asked Shlipa to send this patch made by herself.
 
 I will review this.  :3 
 
 
 -Regards, Hermet-
 
 -Original Message-
 From: Carsten Haitzlerras...@rasterman.com 
 To: Enlightenment developer
 listenlightenment-devel@lists.sourceforge.net; Cc: PRINCE KUMAR
 DUBEYprince.du...@samsung.com; Sent: 2012-09-13 (목) 20:53:39
 Subject: Re: [E-devel] [Patch] [Elementary] Support for circular effect in
 elm_diskselector, in case scroller's bounce effect is disabled.
 
 On Thu, 13 Sep 2012 10:23:40 + (GMT) PRINCE KUMAR DUBEY
 prince.dubey@samsung.com said:
 
 thanks! yes - this fixes it. tbh i'm not happy with diskselector in general,
 but that's another topic. in svn this goes! :) thanks! (also backported)
 
  Hi,
  
  Can someone please review the attached patch created by Sumanth.
  
  [Issue Details] :
  elm_diskselector_round_enable_set() API is not working, if elm_scroller's
  bounce effect is disabled.
  
  [Root cause] :
  For diskselector circular effect, the boundary checking is done based on
  scroller's geometry. If bouncing effect is disabled in elm_scroller, its
  geometry can lie between 0 on left and CHILD_SIZE on right but it can never
  go beyond that point. Unless the scroller's geometry goes beyond its child
  (here, elm_box) size, diskselector cann't trigger the circular effect.
  
  [Change Description] :
  For diskselector items circular effect, the boundary checking is performed
  at the left/right edges of its child, elm_box. Once the scroller reaches to
  the left/right edge of box or goes beyond that point, circular effect will
  be triggered.
  
  [Signed-Off-By] Sumanth Krishna (sumant...@samsung.com)
  
  Thank You.
  Regards,
  Prince
 
 -- 
 - Codito, ergo sum - I code, therefore I am --
 The Rasterman (Carsten Haitzler)ras...@rasterman.com
 
 
 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and 
 threat landscape has changed and how IT managers can respond. Discussions 
 will include endpoint security, mobile security and the latest in malware 
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 --
 Got visibility?
 Most devs has no idea what their production app looks like.
 Find out how fast your code is with AppDynamics Lite.
 http://ad.doubleclick.net/clk;262219671;13503038;y?
 http://info.appdynamics.com/FreeJavaPerformanceDownload.html
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Got visibility?
Most devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [e-users] [announcement] elemines 0.1

2012-09-13 Thread Sanjeev BA
Yes.

I think I have seen it in the windows version - though it has been years
since I touched it.

Basically, press and hold both mouse buttons on any un-clicked square and
it reveals possible squares with mines around it.



On Fri, Sep 14, 2012 at 11:42 AM, Jérôme Pinot ngc...@gmail.com wrote:

 On 09/14/12 10:45, Sanjeev BA wrote:
  Works really nice and smooth, but has this runtime issue.
 
  ERR9446:ecore ecore.c:558 _ecore_magic_fail()
  *** ECORE ERROR: Ecore Magic Check Failed!!!
  *** IN FUNCTION: ecore_timer_freeze()
  ERR9446:ecore ecore.c:562 _ecore_magic_fail()   Input handle has
 already
  been freed!
  ERR9446:ecore ecore.c:571 _ecore_magic_fail() *** NAUGHTY PROGRAMMER!!!
  *** SPANK SPANK SPANK!!!
  *** Now go fix your code. Tut tut tut!
 
 Yep, I forgot this one. bdilly sent me a patch, it's fixed in git repo:

 http://elemines.git.sourceforge.net/git/gitweb.cgi?p=elemines/elemines;a=commit;h=71dfe3d44bf351fed04d8a7f5f8452a340b8e4e3

  Also, do you have plan for left+right mouse button click for giving
 mine
  hints? Maybe long press ?

 Not sure to understand. Mine hint without revealing the square?
 Anyway, the TODO list is filling, any idea welcome :-)

 --
 Jérôme Pinot
 http://ngc891.blogdns.net/


 --
 Got visibility?
 Most devs has no idea what their production app looks like.
 Find out how fast your code is with AppDynamics Lite.
 http://ad.doubleclick.net/clk;262219671;13503038;y?
 http://info.appdynamics.com/FreeJavaPerformanceDownload.html
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


--
Got visibility?
Most devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [e-users] [announcement] elemines 0.1

2012-09-13 Thread David Seikel
On Fri, 14 Sep 2012 12:36:07 +0900 Sanjeev BA eflel...@gmail.com
wrote:

 Yes.
 
 I think I have seen it in the windows version - though it has been
 years since I touched it.
 
 Basically, press and hold both mouse buttons on any un-clicked
 square and it reveals possible squares with mines around it.

If I remember, it tells you the number of mines around an unclicked
square, not where they are.  The player still has to use the numbers to
make guesses.

 On Fri, Sep 14, 2012 at 11:42 AM, Jérôme Pinot ngc...@gmail.com
 wrote:
 
  On 09/14/12 10:45, Sanjeev BA wrote:
   Works really nice and smooth, but has this runtime issue.
  
   ERR9446:ecore ecore.c:558 _ecore_magic_fail()
   *** ECORE ERROR: Ecore Magic Check Failed!!!
   *** IN FUNCTION: ecore_timer_freeze()
   ERR9446:ecore ecore.c:562 _ecore_magic_fail()   Input handle has
  already
   been freed!
   ERR9446:ecore ecore.c:571 _ecore_magic_fail() *** NAUGHTY
   PROGRAMMER!!! *** SPANK SPANK SPANK!!!
   *** Now go fix your code. Tut tut tut!
  
  Yep, I forgot this one. bdilly sent me a patch, it's fixed in git
  repo:
 
  http://elemines.git.sourceforge.net/git/gitweb.cgi?p=elemines/elemines;a=commit;h=71dfe3d44bf351fed04d8a7f5f8452a340b8e4e3
 
   Also, do you have plan for left+right mouse button click for
   giving
  mine
   hints? Maybe long press ?
 
  Not sure to understand. Mine hint without revealing the square?
  Anyway, the TODO list is filling, any idea welcome :-)
 
  --
  Jérôme Pinot
  http://ngc891.blogdns.net/
 
 
  --
  Got visibility?
  Most devs has no idea what their production app looks like.
  Find out how fast your code is with AppDynamics Lite.
  http://ad.doubleclick.net/clk;262219671;13503038;y?
  http://info.appdynamics.com/FreeJavaPerformanceDownload.html
  ___
  enlightenment-devel mailing list
  enlightenment-devel@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 
 
 --
 Got visibility?
 Most devs has no idea what their production app looks like.
 Find out how fast your code is with AppDynamics Lite.
 http://ad.doubleclick.net/clk;262219671;13503038;y?
 http://info.appdynamics.com/FreeJavaPerformanceDownload.html
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


-- 
A big old stinking pile of genius that no one wants
coz there are too many silver coated monkeys in the world.


signature.asc
Description: PGP signature
--
Got visibility?
Most devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [e-users] [announcement] elemines 0.1

2012-09-13 Thread Sanjeev BA
Bingo!

On Fri, Sep 14, 2012 at 1:30 PM, David Seikel onef...@gmail.com wrote:

 On Fri, 14 Sep 2012 12:36:07 +0900 Sanjeev BA eflel...@gmail.com
 wrote:

  Yes.
 
  I think I have seen it in the windows version - though it has been
  years since I touched it.
 
  Basically, press and hold both mouse buttons on any un-clicked
  square and it reveals possible squares with mines around it.

 If I remember, it tells you the number of mines around an unclicked
 square, not where they are.  The player still has to use the numbers to
 make guesses.

  On Fri, Sep 14, 2012 at 11:42 AM, Jérôme Pinot ngc...@gmail.com
  wrote:
 
   On 09/14/12 10:45, Sanjeev BA wrote:
Works really nice and smooth, but has this runtime issue.
   
ERR9446:ecore ecore.c:558 _ecore_magic_fail()
*** ECORE ERROR: Ecore Magic Check Failed!!!
*** IN FUNCTION: ecore_timer_freeze()
ERR9446:ecore ecore.c:562 _ecore_magic_fail()   Input handle has
   already
been freed!
ERR9446:ecore ecore.c:571 _ecore_magic_fail() *** NAUGHTY
PROGRAMMER!!! *** SPANK SPANK SPANK!!!
*** Now go fix your code. Tut tut tut!
   
   Yep, I forgot this one. bdilly sent me a patch, it's fixed in git
   repo:
  
  
 http://elemines.git.sourceforge.net/git/gitweb.cgi?p=elemines/elemines;a=commit;h=71dfe3d44bf351fed04d8a7f5f8452a340b8e4e3
  
Also, do you have plan for left+right mouse button click for
giving
   mine
hints? Maybe long press ?
  
   Not sure to understand. Mine hint without revealing the square?
   Anyway, the TODO list is filling, any idea welcome :-)
  
   --
   Jérôme Pinot
   http://ngc891.blogdns.net/
  
  
  
 --
   Got visibility?
   Most devs has no idea what their production app looks like.
   Find out how fast your code is with AppDynamics Lite.
   http://ad.doubleclick.net/clk;262219671;13503038;y?
   http://info.appdynamics.com/FreeJavaPerformanceDownload.html
   ___
   enlightenment-devel mailing list
   enlightenment-devel@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
  
  
 
 --
  Got visibility?
  Most devs has no idea what their production app looks like.
  Find out how fast your code is with AppDynamics Lite.
  http://ad.doubleclick.net/clk;262219671;13503038;y?
  http://info.appdynamics.com/FreeJavaPerformanceDownload.html
  ___
  enlightenment-devel mailing list
  enlightenment-devel@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


 --
 A big old stinking pile of genius that no one wants
 coz there are too many silver coated monkeys in the world.


 --
 Got visibility?
 Most devs has no idea what their production app looks like.
 Find out how fast your code is with AppDynamics Lite.
 http://ad.doubleclick.net/clk;262219671;13503038;y?
 http://info.appdynamics.com/FreeJavaPerformanceDownload.html
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


--
Got visibility?
Most devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Docs page

2012-09-13 Thread Michael Blumenkrantz
On Fri, 14 Sep 2012 12:11:44 +0900
Carsten Haitzler (The Rasterman) ras...@rasterman.com wrote:

 On Thu, 13 Sep 2012 14:53:00 -0300 Bruno Dilly bdi...@profusion.mobi said:
 
  Hi guys,
  
  page http://www.enlightenment.org/p.php?p=docsl=en shows broken links on
  Application Documentation section.
  
  Imo this section could be removed.
 
 yeah - i know. it's kind of waiting a re-do.
 
  Also, do you agree to place EPhysics on EFL Documentation ?
  If nobody opposes could anybody does this for me ?
 
 catch. bullet isnt pkged for debian and to build docs we have to build
 ephysics. we also are due to bring a new machine up... which means we need to
 set up a bew build env for efl in a vm... :)
 
  EPhysics docs are in good shape. Examples section requires more love
  but we'll be working on that this week.
  
  Regards,
  
  -- 
  Bruno Dilly
  Senior Developer
  ProFUSION embedded systems
  http://profusion.mobi
  

enabling docs for efx would be cool too

--
Got visibility?
Most devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] [Patch] Add missing string for some ECORE_X_ATOMs

2012-09-13 Thread Doyoun Kang
Dear all,

I found that there is no string for ECORE_X_ATOM_E_ILLUME_WINDOW_STATE, 
ECORE_X_ATOM_E_ILLUME_WINDOW_STATE_NORMAL, 
ECORE_X_ATOM_E_ILLUME_WINDOW_STATE_FLOATING. I added string for those atoms.
Please check the attached patch file.

Thanks.
--
Doyoun Kang

ecore_x.diff
Description: Binary data
--
Got visibility?
Most devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel