On Tue, 26 Jun 2012 10:46:04 +0900 Daniel Juyung Seo <[email protected]> said:
> Great! So it's EFL 1.1/1.3/1.7 this time? > Or just 1.7 for all of them? 1.7 for all. :) > Daniel Juyung Seo (SeoZ) > > On Tue, Jun 26, 2012 at 10:44 AM, Carsten Haitzler <[email protected]> > wrote: > > On Tue, 26 Jun 2012 10:07:56 +0900 Daniel Juyung Seo <[email protected]> > > said: > > > > this weekend we freeze new features in efl for next release. i'm not > > bothering with backports anymore because of this as we wont do another > > bugfix release. but changelog is needed for any non-minor changes. > > > >> Backport and ChangeLog needed? > >> > >> Daniel Juyung Seo (SeoZ) > >> > >> On Tue, Jun 26, 2012 at 9:10 AM, Enlightenment SVN > >> <[email protected]> wrote: > >> > Log: > >> > elementary: I think this needs some fixing. fileselector, select the > >> > wrong dir > >> > > >> > Author: yoz > >> > Date: 2012-06-25 17:10:15 -0700 (Mon, 25 Jun 2012) > >> > New Revision: 72834 > >> > Trac: http://trac.enlightenment.org/e/changeset/72834 > >> > > >> > Modified: > >> > trunk/elementary/src/lib/elc_fileselector.c > >> > > >> > Modified: trunk/elementary/src/lib/elc_fileselector.c > >> > =================================================================== > >> > --- trunk/elementary/src/lib/elc_fileselector.c 2012-06-25 22:43:57 UTC > >> > (rev 72833) +++ trunk/elementary/src/lib/elc_fileselector.c 2012-06-26 > >> > 00:10:15 UTC (rev 72834) @@ -1181,8 +1181,10 @@ > >> > const char *name; > >> > char *dir, *s; > >> > > >> > - dir = sd->only_folder ? ecore_file_dir_get(sd->path) > >> > - : strdup(sd->path); > >> > + if (ecore_file_is_dir(sd->path)) > >> > + dir = strdup(sd->path); > >> > + else > >> > + dir = ecore_file_dir_get(sd->path); > >> > name = elm_object_text_get(sd->filename_entry); > >> > if (name) > >> > { > >> > @@ -1196,9 +1198,7 @@ > >> > } > >> > else snprintf(buf, sizeof(buf), "%s", dir); > >> > > >> > - if (sd->only_folder && !ecore_file_is_dir(buf)) > >> > - eina_stringshare_replace(&sd->selection, ecore_file_dir_get > >> > (buf)); > >> > - else eina_stringshare_replace(&sd->selection, buf); > >> > + eina_stringshare_replace(&sd->selection, buf); > >> > > >> > if (dir) free(dir); > >> > return sd->selection; > >> > > >> > > >> > ------------------------------------------------------------------------------ > >> > 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 > >> > [email protected] > >> > 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 > >> [email protected] > >> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel > >> > > > > > > -- > > ------------- Codito, ergo sum - "I code, therefore I am" -------------- > > The Rasterman (Carsten Haitzler) [email protected] > > > -- ------------- Codito, ergo sum - "I code, therefore I am" -------------- The Rasterman (Carsten Haitzler) [email protected] ------------------------------------------------------------------------------ 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 [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
