diff options
-rw-r--r-- | CHANGELOG.md | 27 | ||||
-rw-r--r-- | core/init.lua | 2 | ||||
-rw-r--r-- | src/textadept.rc | 8 |
3 files changed, 32 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 237eec09..8b28b7df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,33 @@ [Atom Feed]: feed +## 5.4 (01 Jun 2012) + +Download: + +* [Textadept 5.4 -- Win32][] +* [Textadept 5.4 -- Mac OSX Intel 10.5+][] +* [Textadept 5.4 -- Linux][] +* [Textadept 5.4 -- Linux x86_64][] +* [Textadept 5.4 -- Source][] +* [Textadept 5.4 -- Modules][] + +Bugfixes: + +* None. + +Changes: + +* Updated to [Scintilla][] 3.2.0. + +[Textadept 5.4 -- Win32]: download/textadept_5.4.win32.zip +[Textadept 5.4 -- Mac OSX Intel 10.5+]: download/textadept_5.4.osx.zip +[Textadept 5.4 -- Linux]: download/textadept_5.4.tgz +[Textadept 5.4 -- Linux x86_64]: download/textadept_5.4.x86_64.tgz +[Textadept 5.4 -- Source]: download/textadept_5.4.src.zip +[Textadept 5.4 -- Modules]: download/textadept_5.4.modules.zip +[Scintilla]: http://scintilla.org + ## 5.3 (01 May 2012) Download: diff --git a/core/init.lua b/core/init.lua index 573c0b76..ecfef7b9 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.3" +_RELEASE = "Textadept 5.4" package.path = _HOME..'/core/?.lua;'..package.path os.setlocale('C', 'collate') diff --git a/src/textadept.rc b/src/textadept.rc index 531d82db..7a612b64 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, 3, 0, 0
-PRODUCTVERSION 5, 3, 0, 0
+FILEVERSION 5, 4, 0, 0
+PRODUCTVERSION 5, 4, 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", "5.3\0"
+ VALUE "FileVersion", "5.4\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.3\0"
+ VALUE "ProductVersion", "5.4\0"
END
END
END
|