Compare commits

...

3 Commits

Author SHA1 Message Date
ChunEon Park d1d7ce813c bump up version. 2015-05-28 15:33:09 +09:00
ChunEon Park c7bd3dfcc2 lib/main: minus initialization count when it's shutdown.
@fix
2015-05-28 13:17:14 +09:00
ChunEon Park 59e6772811 remove redundant code.
it was for compatible for enventor v0.5.0 release.
now we are on development stage.
2015-05-28 13:15:40 +09:00
8 changed files with 17 additions and 22 deletions

9
NEWS
View File

@ -1,7 +1,14 @@
==============
Enventor 0.5.0
Enventor 0.5.1
==============
Changes since Enventor 0.5.0:
-----------------------------
Fixes:
* Fix the compatibility to eo syntax change.
* Fix library initialization count corruption.
Changes since Enventor 0.4.0:
-----------------------------

8
README
View File

@ -1,14 +1,14 @@
[Enventor v0.5.0]
[Enventor v0.5.1]
This is an EDC editor with some convenient functions. It's brand new and was only started near the begining of June 2013, so expecting it to do everything a mature script editor does is a bit premature, but considering it's young age, it does a lot.
[Requirements]
efl (>= 1.13.0)
elementary (>= 1.13.0)
efl (>= 1.14.0)
elementary (>= 1.14.0)
Please note that some features may not quite function correctly or completely less EFL 1.13. Newer would be better.
Please note that some features may not quite function correctly or completely less EFL 1.14. Newer would be better.
Please see next sites for more information on these.

View File

@ -2,7 +2,7 @@
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
m4_define([v_maj], [0])
m4_define([v_min], [5])
m4_define([v_mic], [0])
m4_define([v_mic], [1])
#m4_define([v_rev], m4_esyscmd([(git rev-list --count HEAD 2>/dev/null || echo 0) | tr -d '\n']))dnl
##-- When released, remove the dnl on the below line
dnl m4_undefine([v_rev])

View File

@ -1,4 +1,4 @@
<font_size=11><b>[Enventor v0.5.0]</b></font_size>
<font_size=11><b>[Enventor v0.5.1]</b></font_size>
This is an EDC editor with some convenient functions. It's band new and was only started near the begining of June 2013, so expecting it to do everything a mature script editor does is a bit premature, but considering it's young age, it does a lot.

View File

@ -3,10 +3,3 @@ AC_DEFUN([EFL_ENABLE_EO_API_SUPPORT],
[
AC_DEFINE([EFL_EO_API_SUPPORT], [1], [Enable access to unstable EFL Eo API])
])
AC_DEFUN([EFL_ENABLE_EO_LATEST],
[
AC_DEFINE([EO_LATEST], [0], [Enable access to unstable EFL Eo Latest API])
])

View File

@ -300,12 +300,9 @@ view_obj_idler_cb(void *data)
elm_object_part_content_set(vd->base, "elm.swallow.content",
vd->layout);
elm_object_content_set(vd->scroller, vd->base);
#if EO_LATEST
Eina_Bool ret;
if (eo_do_ret(vd->enventor, ret, enventor_obj_dummy_swallow_get()))
#else
if (eo_do(vd->enventor, enventor_obj_dummy_swallow_get()))
#endif
dummy_obj_new(vd->layout);
vd->idler = NULL;

View File

@ -113,6 +113,8 @@ enventor_shutdown(void)
return 0;
}
if ((--_enventor_init_count) > 0) return _enventor_init_count;
ecore_event_handler_del(_key_down_handler);
_key_down_handler = NULL;

View File

@ -606,12 +606,8 @@ enventor_object_add(Evas_Object *parent)
EAPI Eina_Bool
enventor_object_file_set(Evas_Object *obj, const char *file)
{
#if EO_LATEST
Eina_Bool ret;
return eo_do_ret(obj, ret, efl_file_set(file, NULL));
#else
return eo_do(obj, efl_file_set(file, NULL));
#endif
}
#include "enventor_object.eo.c"