get ready to release v0.3.0

This commit is contained in:
ChunEon Park 2014-07-19 14:38:27 +09:00
parent 9d7c89b7b9
commit 9c7debc87c
3 changed files with 26 additions and 3 deletions

25
NEWS
View File

@ -1,7 +1,30 @@
============
Enventor 0.2
Enventor 0.3.0
============
Changes since Enventor 0.2.0:
---------------------------
Additions:
* Go to line (Ctrl+L)
* Support template codes from the new file
* Auto Completion (Ctrl+O)
Improvements:
* Improved syntax color keywords to be configurable (enventor/data/color/color.src)
* Support more syntax color keywords
* Optimized syntax color function with parital applying mechacnism (Much faster in case of editing huge text)
* Support syntax color on macros
* Better intelligent focus movement
* Changed desktop category to Development/Utility
Fixes:
* Fixed broken Search GUI scalability
* Fixed corrupted line number displaying
* Fixed a crash when an invalid input file is requested
* Got rid of a dangling empty space in the end of the file
* Fixed missing loading "&" character in a edc
Changes since Enventor 0.1:
---------------------------

2
README
View File

@ -1,4 +1,4 @@
[Enventor v0.2]
[Enventor v0.3.0]
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

View File

@ -1,7 +1,7 @@
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
m4_define([v_maj], [0])
m4_define([v_min], [2])
m4_define([v_min], [3])
m4_define([v_mic], [0])
#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