hermet pushed a commit to branch master.

http://git.enlightenment.org/tools/enventor.git/commit/?id=17e8a13303f8fa87bbb5faa0f6650da996f1a687

commit 17e8a13303f8fa87bbb5faa0f6650da996f1a687
Author: ChunEon Park <her...@hermet.pe.kr>
Date:   Mon Aug 18 17:56:41 2014 +0900

    about: add about file.
    
    previousely, Enventor just showed the README file in about view.
    now it just has own ABOUT file for better proper content.
---
 README                     | 15 ------------
 configure.ac               |  1 +
 data/Makefile.am           |  2 +-
 README => data/about/ABOUT | 60 +++++++++++++++-------------------------------
 data/about/Makefile.am     |  6 +++++
 src/bin/menu.c             |  2 +-
 6 files changed, 28 insertions(+), 58 deletions(-)

diff --git a/README b/README
index 9d74a00..fd57682 100644
--- a/README
+++ b/README
@@ -79,21 +79,6 @@ enventor --help
 enventor [input file] [-id image path] [-sd sound path] [-fd font path] [-dd 
data path]
  
  
-[Authors]
- 
-Hermet (Chuneon Park)
-Cedric Bail
-Raoul Hecky
-Daniel Juyung Seo
-Ryuan Choi
-Jihoon Kim
-The Rasterman (Carsten Haitzler)
-Kateryna Fesyna
-JaeHyun Jo
-Mykyta Biliavskyi
-Alex-P. Natsios
- 
-  
 * FOR ANY ISSUES PLEASE EMAIL *
 enlightenment-devel@lists.sourceforge.net
 
diff --git a/configure.ac b/configure.ac
index 3eb0bb9..bed62d1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -103,6 +103,7 @@ data/themes/default/images/Makefile
 data/templates/Makefile
 data/color/Makefile
 data/sounds/Makefile
+data/about/Makefile
 ])
 
 AC_OUTPUT
diff --git a/data/Makefile.am b/data/Makefile.am
index 5c5e3c6..fe4375b 100644
--- a/data/Makefile.am
+++ b/data/Makefile.am
@@ -1,3 +1,3 @@
 MAINTAINERCLEANFILES = Makefile.in
 
-SUBDIRS = images themes templates desktop icon color sounds
+SUBDIRS = images themes templates desktop icon color sounds about
diff --git a/README b/data/about/ABOUT
similarity index 64%
copy from README
copy to data/about/ABOUT
index 9d74a00..28eaac1 100644
--- a/README
+++ b/data/about/ABOUT
@@ -1,32 +1,15 @@
-[Enventor v0.3.0]
+<font_size=11><b>[Enventor v0.3.0]</b></font_size>
  
-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.
+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.
  
- 
-[Requirements]
-  
-  efl (>= 1.9.0)
-  elementary (>= 1.9.0)
-  
 Please note that some features may not quite function correctly or completely
 under EFL 1.10. Newer would be better.
   
 Please see http://www.enlightenment.org for information on these.
-  
- 
-[Compiling]
- 
-Once you have met requirements, compiling and installing is simple:
  
-  $ ./autogen.sh
-  $ make
-  $ sudo make install
  
- 
-[Short Cut Keys]
+<font_size=11><b>[Short Cut Keys]</b></font_size>
  
 Esc = Open/Close Menu
 F1 = About
@@ -73,27 +56,22 @@ Ctrl+Home = Go to the Top line
 Ctrl+End = Go to the Bottom line
  
  
-[Command Line Usage]
+<font_size=11><b>[Command Line Usage]</b></font_size>
  
 enventor --help
 enventor [input file] [-id image path] [-sd sound path] [-fd font path] [-dd 
data path]
- 
- 
-[Authors]
- 
-Hermet (Chuneon Park)
-Cedric Bail
-Raoul Hecky
-Daniel Juyung Seo
-Ryuan Choi
-Jihoon Kim
-The Rasterman (Carsten Haitzler)
-Kateryna Fesyna
-JaeHyun Jo
-Mykyta Biliavskyi
-Alex-P. Natsios
- 
   
-* FOR ANY ISSUES PLEASE EMAIL *
-enlightenment-devel@lists.sourceforge.net
-
+ 
+<font_size=11><b>[Authors]</b></font_size>
+ 
+Hermet (Chuneon Park) <her...@hermet.pe.kr>
+Mykyta Biliavskyi <m.biliavs...@samsung.com>
+Kateryna Fesyna <k.fes...@samsung.com>
+Raoul Hecky <raoul.he...@gmail.com>
+Cedric Bail <cedric.b...@free.fr>
+Ryuan Choi <ryuan.c...@gmail.com>
+Alex-P. Natsios <drak...@linuxteam.teilar.gr>
+Daniel Juyung Seo <seojuyu...@gmail.com>
+Jihoon Kim <jihoon48....@samsung.com>
+The Rasterman (Carsten Haitzler) <ras...@rasterman.com>
+JaeHyun Jo <jae_hyun_...@naver.com>
diff --git a/data/about/Makefile.am b/data/about/Makefile.am
new file mode 100644
index 0000000..7f557dc
--- /dev/null
+++ b/data/about/Makefile.am
@@ -0,0 +1,6 @@
+MAINTAINERCLEANFILES = Makefile.in
+filesdir = $(datadir)/$(PACKAGE)/about
+files_DATA = \
+ABOUT
+
+EXTRA_DIST = $(files_DATA)
diff --git a/src/bin/menu.c b/src/bin/menu.c
index c7a6cc9..8faa012 100644
--- a/src/bin/menu.c
+++ b/src/bin/menu.c
@@ -233,7 +233,7 @@ about_open(menu_data *md)
 
    //Read README
    char buf[PATH_MAX];
-   snprintf(buf, sizeof(buf), "%s/docs/README", elm_app_data_dir_get());
+   snprintf(buf, sizeof(buf), "%s/about/ABOUT", elm_app_data_dir_get());
 
    Eina_File *file = eina_file_open(buf, EINA_FALSE);
    if (!file) goto err;

-- 


Reply via email to