Skip to content

Commit f9309da

Browse files
committed
Preparing for v2.7.rc.4
Large amount of default (and subjective :)) INI settings
1 parent f63104b commit f9309da

4 files changed

Lines changed: 1268 additions & 33 deletions

File tree

Legacy-v2.1/Src/WebEditUVer.ob2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MODULE WebEditUVer;
22

33
CONST
4-
String* = '2.7.rc.3';
4+
String* = '2.7.rc.4';
55

66
END WebEditUVer.

Legacy-v2.1/Src/WebEditUVer.rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ BLOCK "StringFileInfo"
1818
VALUE "LegalCopyright", "� 2008 - 2010 by Alexander Iljin\000"
1919
VALUE "FileDescription", "WebEdit plugin for Notepad++ (Unicode).\000"
2020
VALUE "FileVersion", WEBEDIT_VERSION_STRING
21-
VALUE "ProductVersion", "2.7.rc.3\000"
21+
VALUE "ProductVersion", "2.7.rc.4\000"
2222
VALUE "ProductName", "WebEdit\000"
2323
VALUE "InternalName", "WebEdit\000"
2424
VALUE "OriginalFilename", "WebEditU.dll\000"

WebEdit/Main.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,7 @@ internal static void ReplaceTag()
272272
if ((parser.FindAndReplace(selStart) && value.IndexOf('|') == -1) || !Tags.UserDefinedInsertionPoint().IsMatch(value))
273273
return;
274274

275+
// Known issue: if an indentation is *before* the '|' caret position marker, the text between them may be selected
275276
scintillaGateway.SetSelectionEnd(position + value.Substring(0, value.IndexOf('|')).Length - selectedText.Length);
276277
} catch (Exception ex) {
277278
scintillaGateway.CallTipShow(position, ex.Message);

0 commit comments

Comments
 (0)