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.
This commit is contained in:
ChunEon Park 2014-08-18 17:56:41 +09:00
parent aab2f000c9
commit 17e8a13303
6 changed files with 86 additions and 17 deletions

15
README
View File

@ -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

View File

@ -103,6 +103,7 @@ data/themes/default/images/Makefile
data/templates/Makefile
data/color/Makefile
data/sounds/Makefile
data/about/Makefile
])
AC_OUTPUT

View File

@ -1,3 +1,3 @@
MAINTAINERCLEANFILES = Makefile.in
SUBDIRS = images themes templates desktop icon color sounds
SUBDIRS = images themes templates desktop icon color sounds about

77
data/about/ABOUT Normal file
View File

@ -0,0 +1,77 @@
<font_size=11><b>[Enventor v0.3.0]</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.
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.
<font_size=11><b>[Short Cut Keys]</b></font_size>
Esc = Open/Close Menu
F1 = About
F2 = New
F3 = Save
F4 = Load
F5 = Show/Hide Line Number
F9 = Show/Hide Tools
F10 = Show/Hide Console
F11 = Show/Hide Status
F12 = Setting
Ctrl+S = Quick Save + Compile EDC
Ctrl+I = On/Off Auto Indentation
Ctrl+O = On/Off Auto Completion
Ctrl+W = Show/Hide Dummy Swallow
Ctrl+H = On/Off Part Highlighting
Ctrl+Left = On/Off Full Edit View
Ctrl+Right = On/Off Full Live View
Ctrl+Top = On/Off Full Console View
Ctrl+Bottom = On/Off Full Editors View
Ctrl+T = Insert Defaut Template Code
Ctrl+E = On/Off Live View Edit Mode
Ctrl+Mouse Wheel Up = View Scale Up / Font Size Up
Ctrl+Mouse Wheel Down = View Scale Down / Font Size Down
Ctrl+Shift+B = Insert Part Template Code: Textblock
Ctrl+Shift+I = Insert Part Template Code: Image
Ctrl+Shift+R = Insert Part Template Code: Rectangle
Ctrl+Shift+T = Insert Part Template Code: Text
Ctrl+Shift+S = Insert Part Template Code: Spacer
Ctrl+Shift+W = Insert Part Template Code: Swallow
Ctrl+A = Select Text All
Ctrl+Double Click = Select a word
Ctrl+Z = Undo Text
Ctrl+R = Redo Text
Ctrl+C = Copy Selected Text
Ctrl+V = Paste Copied Text
Ctrl+X = Cut Selected Text
Ctrl+D = Delete a Current line
Ctrl+F = Find/Replace
Ctrl+L = Go to line
Ctrl+Home = Go to the Top line
Ctrl+End = Go to the Bottom line
<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]
<font_size=11><b>[Authors]</b></font_size>
Hermet (Chuneon Park) <hermet@hermet.pe.kr>
Mykyta Biliavskyi <m.biliavskyi@samsung.com>
Kateryna Fesyna <k.fesyna@samsung.com>
Raoul Hecky <raoul.hecky@gmail.com>
Cedric Bail <cedric.bail@free.fr>
Ryuan Choi <ryuan.choi@gmail.com>
Alex-P. Natsios <drakevr@linuxteam.teilar.gr>
Daniel Juyung Seo <seojuyung2@gmail.com>
Jihoon Kim <jihoon48.kim@samsung.com>
The Rasterman (Carsten Haitzler) <raster@rasterman.com>
JaeHyun Jo <jae_hyun_cho@naver.com>

6
data/about/Makefile.am Normal file
View File

@ -0,0 +1,6 @@
MAINTAINERCLEANFILES = Makefile.in
filesdir = $(datadir)/$(PACKAGE)/about
files_DATA = \
ABOUT
EXTRA_DIST = $(files_DATA)

View File

@ -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;