hermet pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=147541a628fc1f5ca327847266a0876b693f39bd
commit 147541a628fc1f5ca327847266a0876b693f39bd Author: Hermet Park <[email protected]> Date: Wed Jul 27 13:00:47 2016 +0900 help: updated about contents. --- README | 8 ++++---- data/help/INTRO | 8 +++++--- src/bin/help.c | 2 +- 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/README b/README index 774afb6..aa733b7 100644 --- a/README +++ b/README @@ -1,7 +1,8 @@ [Enventor v0.9.0] -This is an EDC editor with some convenient functions. Enventor supports text edit and preview function for EDC source code. You can edit EDC source code to create complex application layout using Enventor. This was started near the begining of June 2013, so expecting it to do everything a mature script editor does is a bit premature. However, considering its young age, it does a lot. +Enventor, which is also known as EDC (Edje Data Collections) Editor, is a EDC script editor tool that supports text edit function and preview function for EDC source code. +When your application ral-time changeable layouts like animated ones, then you could write those layout design using EDC script, compile it to EDJ format file then import it into your application using an UI layout component. But not only for that, you can write any kinds of design layouts from simple to complex ones if you use EDC script with Enventor. Enventor helps you write EDC script code eaiser and finish your work faster. If you are not familiar with EDC programming, then please v [...] [Requirements] @@ -12,11 +13,10 @@ Please note that some features may not quite function correctly or completely pr Please see the following sites for more information. -http://www.enlightenment.org -https://phab.enlightenment.org/w/projects/enventor/ +https://www.enlightenment.org/about-enventor +https://phab.enlightenment.org/w/projects/enventor http://www.openhub.net/p/enventor - [Compiling] Once you have met the requirements, compiling and installing is simple: diff --git a/data/help/INTRO b/data/help/INTRO index 205e82d..3f7ca90 100644 --- a/data/help/INTRO +++ b/data/help/INTRO @@ -1,10 +1,12 @@ <b>Enventor v0.9.0</b></br> </br> -This is an EDC editor with some convenient functions. Enventor supports text edit and preview function for EDC source code. You can edit EDC source code to create complex application layout using Enventor. This was started near the begining of June 2013, so expecting it to do everything a mature script editor does is a bit premature. However, considering its young age, it does a lot.</br> +Enventor, which is also known as EDC (Edje Data Collections) Editor, is a EDC script editor tool that supports text edit function and preview function for EDC source code</br> +</br> +When your application ral-time changeable layouts like animated ones, then you could write those layout design using EDC script, compile it to EDJ format file then import it into your application using an UI layout component. But not only for that, you can write any kinds of design layouts from simple to complex ones if you use EDC script with Enventor. Enventor helps you write EDC script code eaiser and finish your work faster. If you are not familiar with EDC programming, then please v [...] </br> Please see the following sites for more information.</br> </br> -http://www.enlightenment.org</br> -https://phab.enlightenment.org/w/projects/enventor/</br> +https://www.enlightenment.org/about-enventor</br> +https://phab.enlightenment.org/w/projects/enventor</br> http://www.openhub.net/p/enventor diff --git a/src/bin/help.c b/src/bin/help.c index b6b5111..2747513 100644 --- a/src/bin/help.c +++ b/src/bin/help.c @@ -126,7 +126,7 @@ help_open(void) //Win win = elm_win_add(base_win_get(), _("Enventor Help"), ELM_WIN_BASIC); elm_win_focus_highlight_enabled_set(win, EINA_TRUE); - snprintf(buf, sizeof(buf), "About Enventor v%s", PACKAGE_VERSION); + snprintf(buf, sizeof(buf), "Enventor v%s", PACKAGE_VERSION); elm_win_title_set(win, buf); evas_object_smart_callback_add(win, "delete,request", win_delete_request_cb, NULL); --
