Re: [E-devel] [EGIT] [core/elementary] master 01/01: progressbar: fix memory leak

2015-08-25 Thread Amitesh Singh
Hello,

I back ported this to elm-1.15 branch.

-- 
Amitesh


On Tue, Aug 25, 2015 at 4:36 PM, Hosang Kim hosang12@samsung.com
wrote:

 woohyun pushed a commit to branch master.


 http://git.enlightenment.org/core/elementary.git/commit/?id=33faa2ffd8063dcbd7d06a1a27d6fa1d1c239e76

 commit 33faa2ffd8063dcbd7d06a1a27d6fa1d1c239e76
 Author: Hosang Kim hosang12@samsung.com
 Date:   Tue Aug 25 20:05:57 2015 +0900

 progressbar: fix memory leak

 Summary: when elm_progressbar_value_set is called, progress_status is
 always created.

 Test Plan: elementary_test - progressbar

 Reviewers: woohyun, Hermet, cedric, raster

 Differential Revision: https://phab.enlightenment.org/D2986
 ---
  src/lib/elm_progressbar.c | 13 +
  1 file changed, 1 insertion(+), 12 deletions(-)

 diff --git a/src/lib/elm_progressbar.c b/src/lib/elm_progressbar.c
 index 1fbaab3..aa34ec0 100644
 --- a/src/lib/elm_progressbar.c
 +++ b/src/lib/elm_progressbar.c
 @@ -424,20 +424,9 @@ _elm_progressbar_part_value_get(const Eo *obj
 EINA_UNUSED, Elm_Progressbar_Data
  EOLIAN static void
  _elm_progressbar_value_set(Eo *obj, Elm_Progressbar_Data *sd, double val)
  {
 -   Elm_Progress_Status *ps;
 -
 if (sd-val == val) return;

 -   sd-val = val;
 -   if (sd-val  MIN_RATIO_LVL) sd-val = MIN_RATIO_LVL;
 -   if (sd-val  MAX_RATIO_LVL) sd-val = MAX_RATIO_LVL;
 -
 -   ps = _progress_status_new(elm.cur.progressbar, sd-val);
 -   sd-progress_status = eina_list_append(sd-progress_status, ps);
 -   _val_set(obj);
 -   _units_set(obj);
 -   eo_do(obj, eo_event_callback_call
 - (ELM_PROGRESSBAR_EVENT_CHANGED, NULL));
 +   elm_progressbar_part_value_set(obj, elm.cur.progressbar, val);
  }

  EOLIAN static double

 --



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


Re: [E-devel] Pre-release tarballs for efl and elm 1.15.1

2015-08-25 Thread Amitesh Singh
Hello Daniel,

Few fixes are in after your release.

Thanks
-- 
Amitesh

On Mon, Aug 24, 2015 at 11:12 PM, Daniel Juyung Seo seojuyu...@gmail.com
wrote:

 Hello.

 I just uploaded the tarballs for 1.15.1 which will become the final
 release if I hear nothing problematic within the next 24h.

 https://download.enlightenment.org/pre-releases/efl-1.15.1-pre.tar.gz
 2a6d0ab28020b4741be20b32ad0ffeb8f97f766c5c32175bacc2f2d0dc52f98c


 https://download.enlightenment.org/pre-releases/elementary-1.15.1-pre.tar.gz
 27d8a3d6df3d7424e8294cb90af485f45d926350619fa39191a461d7593e7deb

 Thanks,
 Daniel

 --
 Daniel Juyung Seo (SeoZ)




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

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


Re: [E-devel] Pre-release tarballs for efl and elm 1.15.1

2015-08-25 Thread Daniel Juyung Seo
Hi Amitesh,

I noticed that :(

On Wed, Aug 26, 2015 at 12:45 AM, Amitesh Singh singh.amit...@gmail.com wrote:
 Hello Daniel,

 Few fixes are in after your release.

 Thanks
 --
 Amitesh

 On Mon, Aug 24, 2015 at 11:12 PM, Daniel Juyung Seo seojuyu...@gmail.com
 wrote:

 Hello.

 I just uploaded the tarballs for 1.15.1 which will become the final
 release if I hear nothing problematic within the next 24h.

 https://download.enlightenment.org/pre-releases/efl-1.15.1-pre.tar.gz
 2a6d0ab28020b4741be20b32ad0ffeb8f97f766c5c32175bacc2f2d0dc52f98c


 https://download.enlightenment.org/pre-releases/elementary-1.15.1-pre.tar.gz
 27d8a3d6df3d7424e8294cb90af485f45d926350619fa39191a461d7593e7deb

 Thanks,
 Daniel

 --
 Daniel Juyung Seo (SeoZ)




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





-- 
Daniel Juyung Seo (SeoZ)

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


Re: [E-devel] Pre-release tarballs for efl and elm 1.15.1

2015-08-25 Thread Daniel Juyung Seo
Hi All,

There were three commits in elementary-1.15 after the pre-release tarballs.
Here is a new elementary-1.15 pre-release tarball.

https://download.enlightenment.org/pre-releases/elementary-1.15.1-pre.tar.gz
ae5540c2103fcdc69fd7469277ce25a8a00a0f701fc2c20771dc0108401e53a0

I will do a final release in 12 hours if there is no changes.

Thanks,
Daniel

On Wed, Aug 26, 2015 at 2:39 AM, Daniel Juyung Seo seojuyu...@gmail.com wrote:
 Hi Amitesh,

 I noticed that :(

 On Wed, Aug 26, 2015 at 12:45 AM, Amitesh Singh singh.amit...@gmail.com 
 wrote:
 Hello Daniel,

 Few fixes are in after your release.

 Thanks
 --
 Amitesh

 On Mon, Aug 24, 2015 at 11:12 PM, Daniel Juyung Seo seojuyu...@gmail.com
 wrote:

 Hello.

 I just uploaded the tarballs for 1.15.1 which will become the final
 release if I hear nothing problematic within the next 24h.

 https://download.enlightenment.org/pre-releases/efl-1.15.1-pre.tar.gz
 2a6d0ab28020b4741be20b32ad0ffeb8f97f766c5c32175bacc2f2d0dc52f98c


 https://download.enlightenment.org/pre-releases/elementary-1.15.1-pre.tar.gz
 27d8a3d6df3d7424e8294cb90af485f45d926350619fa39191a461d7593e7deb

 Thanks,
 Daniel

 --
 Daniel Juyung Seo (SeoZ)




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





 --
 Daniel Juyung Seo (SeoZ)



-- 
Daniel Juyung Seo (SeoZ)

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


Re: [E-devel] Pre-release tarballs for efl and elm 1.15.1

2015-08-25 Thread Amitesh Singh
Hello Jeff,

Please close https://phab.enlightenment.org/T2651 :-)


Thanks
Amitesh

-- 
Amitesh


On Mon, Aug 24, 2015 at 11:25 PM, Jeff Hoogland jeffhoogl...@linux.com
wrote:

 Just wanted to say my theme issue is solved in this regarding popups.
 Thanks for the fixes.

 On Mon, Aug 24, 2015 at 12:42 PM, Daniel Juyung Seo seojuyu...@gmail.com
 wrote:

  Hello.
 
  I just uploaded the tarballs for 1.15.1 which will become the final
  release if I hear nothing problematic within the next 24h.
 
  https://download.enlightenment.org/pre-releases/efl-1.15.1-pre.tar.gz
  2a6d0ab28020b4741be20b32ad0ffeb8f97f766c5c32175bacc2f2d0dc52f98c
 
 
 
 https://download.enlightenment.org/pre-releases/elementary-1.15.1-pre.tar.gz
  27d8a3d6df3d7424e8294cb90af485f45d926350619fa39191a461d7593e7deb
 
  Thanks,
  Daniel
 
  --
  Daniel Juyung Seo (SeoZ)
 
 
 
 
 
 --
  ___
  enlightenment-devel mailing list
  enlightenment-devel@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 



 --
 ~Jeff Hoogland http://jeffhoogland.com/
 My Projects on GitHub https://github.com/JeffHoogland

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

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


Re: [E-devel] logging into phab 401 (Missing oauth)

2015-08-25 Thread Simon Lees
On 25 Aug 2015, at 7:54 am, Bertrand Jacquin bertr...@jacquin.bzh wrote

 This is now OK. There were bad characters in our oauth login id

 Cheers

 Now getting the following

Unhandled Exception (HTTPFutureHTTPResponseStatus)

Cheers
Simon





 On 24/08/2015 14:00, Bertrand Jacquin wrote:

  Hi,

  This is known issue, we are working on this.

  Cheers

  On 24/08/2015 10:29, Simon Lees wrote:

  Hi All,

  When trying to log into phab when using a google account from a
  machine
  that hasn't before, I get a 401 complaining about a missing oauth. If
  i
  log in with a machine I use regularly that stores my login it seems
  fine.

  Cheers
  Simon

 --

 --

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


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


Re: [E-devel] Enlightenment Developer Day 2015 Europe CFP

2015-08-25 Thread Stefan Schmidt
Hello.

On 18/08/15 12:11, Cedric BAIL wrote:
 Of course I forgot to add the link to register for the event :
 https://phab.enlightenment.org/V13 .

 Please consider filling it early as this will help us plan the event.

So far we have only 10 people here. You can also go for maybe until you 
really know.

Also a reminder for the CfP. Only 13 days left. Better to submit your 
proposal early.

regards
Stefan Schmidt

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