diff options
author | 2012-10-29 20:51:07 -0400 | |
---|---|---|
committer | 2012-10-29 20:51:07 -0400 | |
commit | 438f2e7ebbadcd8123c203edc507e9f11b54a6e2 (patch) | |
tree | c1eea576a3a7a0d0df03494e3be611c920454606 | |
parent | fa38d2306fadc99bb1403433517ecf45a24062eb (diff) | |
download | textadept-438f2e7ebbadcd8123c203edc507e9f11b54a6e2.tar.gz textadept-438f2e7ebbadcd8123c203edc507e9f11b54a6e2.zip |
Updated for 6.0.
-rw-r--r-- | README.md | 5 | ||||
-rw-r--r-- | core/init.lua | 2 | ||||
-rw-r--r-- | src/textadept.rc | 8 |
3 files changed, 7 insertions, 8 deletions
@@ -27,8 +27,7 @@ operating systems and depends only on [GTK+ 2.0][] version 2.18 or greater on Linux. Lua is pre-compiled into Textadept on all platforms and a GTK+ runtime is included on Windows and Mac OSX. -The _experimental_ version of Textadept for the terminal requires only -[ncurses][]. +The version of Textadept for the terminal requires only [ncurses][]. [GTK+ 2.0]: http://gtk.org [ncurses]: http://invisible-island.net/ncurses/ncurses.html @@ -41,7 +40,7 @@ Download Textadept from the project's [download page][]. ## Installation and Usage -Textadept comes with a comprehensive manual and API documentation in the `doc/` +Textadept comes with a comprehensive manual and API documentation in the *doc/* directory. They are also available [online][]. [online]: http://foicica.com/textadept diff --git a/core/init.lua b/core/init.lua index a8cd48d6..e0efd459 100644 --- a/core/init.lua +++ b/core/init.lua @@ -1,6 +1,6 @@ -- Copyright 2007-2012 Mitchell mitchell.att.foicica.com. See LICENSE. -_RELEASE = "Textadept 6.0 beta 3" +_RELEASE = "Textadept 6.0" package.path = _HOME..'/core/?.lua;'..package.path diff --git a/src/textadept.rc b/src/textadept.rc index 744178da..72448494 100644 --- a/src/textadept.rc +++ b/src/textadept.rc @@ -3,8 +3,8 @@ textadept ICON "../core/images/textadept.ico\0"
VS_VERSION_INFO VERSIONINFO
-FILEVERSION 5, 9, 9, 0
-PRODUCTVERSION 5, 9, 9, 0
+FILEVERSION 6, 0, 0, 0
+PRODUCTVERSION 6, 0, 0, 0
FILEFLAGSMASK 0x3fL
FILEFLAGS 0
FILEOS VOS_NT_WINDOWS32
@@ -17,12 +17,12 @@ BEGIN BEGIN
VALUE "CompanyName", "Mitchell\0"
VALUE "FileDescription", "textadept\0"
- VALUE "FileVersion", "6.0 beta 3\0"
+ VALUE "FileVersion", "6.0\0"
VALUE "InternalName", "textadept\0"
VALUE "LegalCopyright", "Copyright 2006-2012 by Mitchell\0"
VALUE "OriginalFilename", "textadept.exe\0"
VALUE "ProductName", "textadept\0"
- VALUE "ProductVersion", "6.0 beta 3\0"
+ VALUE "ProductVersion", "6.0\0"
END
END
END
|