mirror of
https://github.com/notepad-plus-plus/notepad-plus-plus.git
synced 2025-08-20 01:08:27 +02:00
Release 5.5.2 ( https://www.scintilla.org/scintilla552.zip ) Released 21 August 2024. Add SCI_SETCOPYSEPARATOR for separator between parts of a multiple selection when copied to the clipboard. Feature #1530. Add SCI_GETUNDOSEQUENCE to determine whether an undo sequence is active and its nesting depth. Add SCI_STYLESETSTRETCH to support condensed and expanded text styles. Add SCI_LINEINDENT and SCI_LINEDEDENT. Feature #1524. Fix bug on Cocoa where double-click stopped working when system had been running for a long time. On Cocoa implement more values of font weight and stretch. Release 5.4.0 ( https://www.scintilla.org/lexilla540.zip ) Released 21 August 2024. Inside Lexilla, LexerModule instances are now const. This will require changes to applications that modify Lexilla.cxx, which may be done to add custom lexers. Lexer added for TOML "toml". Bash: Handle backslash in heredoc delimiter. Issue #257. Progress: Fix lexing of nested comments. Pull request #258. Force lower-casing of case-insensitive keyword lists so keywords match in some lexers. Issue #259. Close #15564
38 lines
1.0 KiB
Plaintext
38 lines
1.0 KiB
Plaintext
// Resource file for Scintilla
|
|
// Copyright 1998-2010 by Neil Hodgson <neilh@scintilla.org>
|
|
// The License.txt file describes the conditions under which this software may be distributed.
|
|
|
|
#include <windows.h>
|
|
|
|
#define VERSION_SCINTILLA "5.5.2"
|
|
#define VERSION_WORDS 5, 5, 2, 0
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION VERSION_WORDS
|
|
PRODUCTVERSION VERSION_WORDS
|
|
FILEFLAGSMASK 0x3fL
|
|
FILEFLAGS 0
|
|
FILEOS VOS_NT_WINDOWS32
|
|
FILETYPE VFT_APP
|
|
FILESUBTYPE VFT2_UNKNOWN
|
|
BEGIN
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x409, 1200
|
|
END
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904b0"
|
|
BEGIN
|
|
VALUE "CompanyName", "Neil Hodgson neilh@scintilla.org\0"
|
|
VALUE "FileDescription", "Scintilla.DLL - a Source Editing Component\0"
|
|
VALUE "FileVersion", VERSION_SCINTILLA "\0"
|
|
VALUE "InternalName", "Scintilla\0"
|
|
VALUE "LegalCopyright", "Copyright 1998-2012 by Neil Hodgson\0"
|
|
VALUE "OriginalFilename", "Scintilla.DLL\0"
|
|
VALUE "ProductName", "Scintilla\0"
|
|
VALUE "ProductVersion", VERSION_SCINTILLA "\0"
|
|
END
|
|
END
|
|
END
|