Skip to content

Commit 6813c19

Browse files
committed
Upgrade versions
scinilla 558 lexilla 546
1 parent 23173c4 commit 6813c19

9 files changed

Lines changed: 29 additions & 8 deletions

File tree

LexillaPre.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project DefaultTargets="Update" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="Common.tasks" />
44
<PropertyGroup>
5-
<Version>5.4.4</Version>
5+
<Version>5.4.6</Version>
66
</PropertyGroup>
77

88
<Target Name="Download" Outputs="lexilla.zip">

RadNotepad.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -483,8 +483,8 @@ END
483483
//
484484

485485
VS_VERSION_INFO VERSIONINFO
486-
FILEVERSION 1,4,0,0
487-
PRODUCTVERSION 1,4,0,0
486+
FILEVERSION 1,5,0,0
487+
PRODUCTVERSION 1,5,0,0
488488
FILEFLAGSMASK 0x3fL
489489
#ifdef _DEBUG
490490
FILEFLAGS 0x1L
@@ -501,12 +501,12 @@ BEGIN
501501
BEGIN
502502
VALUE "CompanyName", "RadSoft"
503503
VALUE "FileDescription", "Rad Notepad"
504-
VALUE "FileVersion", "1.4.0.0"
504+
VALUE "FileVersion", "1.5.0.0"
505505
VALUE "InternalName", "RadNotepad.exe"
506506
VALUE "LegalCopyright", "Copyright � 2018"
507507
VALUE "OriginalFilename", "RadNotepad.exe"
508508
VALUE "ProductName", "Rad Notepad"
509-
VALUE "ProductVersion", "1.4.0.0"
509+
VALUE "ProductVersion", "1.5.0.0"
510510
END
511511
END
512512
BLOCK "VarFileInfo"

ScintillaPre.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project DefaultTargets="Update" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="Common.tasks" />
44
<PropertyGroup>
5-
<Version>5.5.6</Version>
5+
<Version>5.5.8</Version>
66
</PropertyGroup>
77

88
<Target Name="Download" Outputs="scintilla.zip">

scintilla/include/Scintilla.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -475,6 +475,8 @@ typedef sptr_t (*SciFnDirectStatus)(sptr_t ptr, unsigned int iMessage, uptr_t wP
475475
#define SCI_AUTOCGETMAXHEIGHT 2211
476476
#define SCI_AUTOCSETSTYLE 2109
477477
#define SCI_AUTOCGETSTYLE 2120
478+
#define SCI_AUTOCSETIMAGESCALE 2815
479+
#define SCI_AUTOCGETIMAGESCALE 2816
478480
#define SCI_SETINDENT 2122
479481
#define SCI_GETINDENT 2123
480482
#define SCI_SETUSETABS 2124
@@ -534,6 +536,7 @@ typedef sptr_t (*SciFnDirectStatus)(sptr_t ptr, unsigned int iMessage, uptr_t wP
534536
#define SCI_GETCHANGEHISTORY 2781
535537
#define SC_UNDO_SELECTION_HISTORY_DISABLED 0
536538
#define SC_UNDO_SELECTION_HISTORY_ENABLED 1
539+
#define SC_UNDO_SELECTION_HISTORY_SCROLL 2
537540
#define SCI_SETUNDOSELECTIONHISTORY 2782
538541
#define SCI_GETUNDOSELECTIONHISTORY 2783
539542
#define SCI_SETSELECTIONSERIALIZED 2784
@@ -558,6 +561,7 @@ typedef sptr_t (*SciFnDirectStatus)(sptr_t ptr, unsigned int iMessage, uptr_t wP
558561
#define SCI_LINEFROMPOSITION 2166
559562
#define SCI_POSITIONFROMLINE 2167
560563
#define SCI_LINESCROLL 2168
564+
#define SCI_SCROLLVERTICAL 2817
561565
#define SCI_SCROLLCARET 2169
562566
#define SCI_SCROLLRANGE 2569
563567
#define SCI_REPLACESEL 2170

scintilla/include/Scintilla.iface

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1174,6 +1174,12 @@ set void AutoCSetStyle=2109(int style,)
11741174
# Get the style number used for auto-completion and user lists fonts.
11751175
get int AutoCGetStyle=2120(,)
11761176

1177+
# Set the scale factor in percent for auto-completion list images.
1178+
set void AutoCSetImageScale=2815(int scalePercent,)
1179+
1180+
# Get the scale factor in percent for auto-completion list images.
1181+
get int AutoCGetImageScale=2816(,)
1182+
11771183
# Set the number of spaces used for one level of indentation.
11781184
set void SetIndent=2122(int indentSize,)
11791185

@@ -1337,6 +1343,7 @@ get ChangeHistoryOption GetChangeHistory=2781(,)
13371343
enu UndoSelectionHistoryOption=SC_UNDO_SELECTION_HISTORY_
13381344
val SC_UNDO_SELECTION_HISTORY_DISABLED=0
13391345
val SC_UNDO_SELECTION_HISTORY_ENABLED=1
1346+
val SC_UNDO_SELECTION_HISTORY_SCROLL=2
13401347

13411348
# Enable or disable undo selection history.
13421349
set void SetUndoSelectionHistory=2782(UndoSelectionHistoryOption undoSelectionHistory,)
@@ -1415,6 +1422,9 @@ fun position PositionFromLine=2167(line line,)
14151422
# Scroll horizontally and vertically.
14161423
fun void LineScroll=2168(position columns, line lines)
14171424

1425+
# Scroll vertically with allowance for wrapping.
1426+
fun void ScrollVertical=2817(line docLine, line subLine)
1427+
14181428
# Ensure the caret is visible.
14191429
fun void ScrollCaret=2169(,)
14201430

@@ -1565,7 +1575,7 @@ fun void CallTipCancel=2201(,)
15651575
fun bool CallTipActive=2202(,)
15661576

15671577
# Retrieve the position where the caret was before displaying the call tip.
1568-
fun position CallTipPosStart=2203(,)
1578+
get position CallTipPosStart=2203(,)
15691579

15701580
# Set the start position in order to change when backspacing removes the calltip.
15711581
set void CallTipSetPosStart=2214(position posStart,)

scintilla/include/ScintillaCall.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,8 @@ class ScintillaCall {
324324
int AutoCGetMaxHeight();
325325
void AutoCSetStyle(int style);
326326
int AutoCGetStyle();
327+
void AutoCSetImageScale(int scalePercent);
328+
int AutoCGetImageScale();
327329
void SetIndent(int indentSize);
328330
int Indent();
329331
void SetUseTabs(bool useTabs);
@@ -387,6 +389,7 @@ class ScintillaCall {
387389
Line LineFromPosition(Position pos);
388390
Position PositionFromLine(Line line);
389391
void LineScroll(Position columns, Line lines);
392+
void ScrollVertical(Line docLine, Line subLine);
390393
void ScrollCaret();
391394
void ScrollRange(Position secondary, Position primary);
392395
void ReplaceSel(const char *text);

scintilla/include/ScintillaMessages.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,8 @@ enum class Message {
249249
AutoCGetMaxHeight = 2211,
250250
AutoCSetStyle = 2109,
251251
AutoCGetStyle = 2120,
252+
AutoCSetImageScale = 2815,
253+
AutoCGetImageScale = 2816,
252254
SetIndent = 2122,
253255
GetIndent = 2123,
254256
SetUseTabs = 2124,
@@ -309,6 +311,7 @@ enum class Message {
309311
LineFromPosition = 2166,
310312
PositionFromLine = 2167,
311313
LineScroll = 2168,
314+
ScrollVertical = 2817,
312315
ScrollCaret = 2169,
313316
ScrollRange = 2569,
314317
ReplaceSel = 2170,

scintilla/include/ScintillaTypes.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,7 @@ enum class ChangeHistoryOption {
302302
enum class UndoSelectionHistoryOption {
303303
Disabled = 0,
304304
Enabled = 1,
305+
Scroll = 2,
305306
};
306307

307308
enum class FoldLevel {

scintilla/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
556
1+
558

0 commit comments

Comments
 (0)