diff options
author | 2012-06-27 15:15:16 -0400 | |
---|---|---|
committer | 2012-06-27 15:15:16 -0400 | |
commit | 85c589f9228d829741246a11982014e5e580a9a1 (patch) | |
tree | 6b11afad6848eeaa3e905cbf2d6ea2b1555afae7 | |
parent | 0e7bf875d8bf729674cfa779b70f75a50f4030e1 (diff) | |
download | textadept-85c589f9228d829741246a11982014e5e580a9a1.tar.gz textadept-85c589f9228d829741246a11982014e5e580a9a1.zip |
Updated for 5.5 beta.
-rw-r--r-- | core/init.lua | 4 | ||||
-rw-r--r-- | src/textadept.rc | 8 |
2 files changed, 7 insertions, 5 deletions
diff --git a/core/init.lua b/core/init.lua index ecfef7b9..a43061ca 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 5.4" +_RELEASE = "Textadept 5.5 beta" package.path = _HOME..'/core/?.lua;'..package.path os.setlocale('C', 'collate') @@ -42,6 +42,8 @@ _M = {} -- modules table -- If Textadept is running on Windows, this flag is `true`. -- @field OSX (bool) -- If Textadept is running on Mac OSX, this flag is `true`. +-- @field NCURSES (bool) +-- If Textadept is running in the terminal, this flag is `true`. module('_G')]] --- diff --git a/src/textadept.rc b/src/textadept.rc index 7a612b64..d39cfcf8 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, 4, 0, 0
-PRODUCTVERSION 5, 4, 0, 0
+FILEVERSION 5, 4, 9, 0
+PRODUCTVERSION 5, 4, 9, 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", "5.4\0"
+ VALUE "FileVersion", "5.5 beta\0"
VALUE "InternalName", "textadept\0"
VALUE "LegalCopyright", "Copyright 2006-2012 by Mitchell\0"
VALUE "OriginalFilename", "textadept.exe\0"
VALUE "ProductName", "textadept\0"
- VALUE "ProductVersion", "5.4\0"
+ VALUE "ProductVersion", "5.5 beta\0"
END
END
END
|