Skip to content

Commit 5f0e3fb

Browse files
authored
Merge pull request #5147 from hpwamr/Mui_Beta
Preparation Version files for "Release_Candidate_6.24.309.1 rc3"
2 parents 891a7a5 + 1d8a242 commit 5f0e3fb

File tree

4 files changed

+6
-1
lines changed

4 files changed

+6
-1
lines changed

Build/Changes.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ UCD - (UCD)ARDET is an Encoding Detector Library
3434

3535

3636
========================================================
37-
Current BETA/RC Version 6.24.0307.(build_#) (2024-03-07)
37+
Current BETA/RC Version 6.24.0309.(build_#) (2024-03-09)
3838
========================================================
3939

4040
--------------------------------------------------------
@@ -134,6 +134,7 @@ CHANGES:
134134
FIXES:
135135
--------------------------------------------------------
136136
[.###.#]- .
137+
[.309.1]- Redo failure introduced with Scintilla v5.4.2 Bug 2432 (SCI).
137138
[.307.1]- Tinyexpr: integer values always shown in abs() format.
138139
[.307.1]- Remove duplicate lines.
139140
[.302.2]- Regression: RegEx: find previous line start (^) - skips empty lines (ONI).

Build/notepad3_x64_setup.iss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
;#define VRSN=" beta"
1313
;#define VRSN=" rc"
1414
;#define VRSN=" rc2"
15+
;#define VRSN=" rc3"
1516
// but, if not a "beta, rc or rc2" version, then comment above settings and un-comment below setting :)
1617
#define VRSN
1718
#ifndef VRSN

Build/notepad3_x86_setup.iss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
;#define VRSN=" beta"
1313
;#define VRSN=" rc"
1414
;#define VRSN=" rc2"
15+
;#define VRSN=" rc3"
1516
// but, if not a "beta, rc or rc2" version, then comment above settings and un-comment below setting :)
1617
#define VRSN
1718
#ifndef VRSN

scintilla/src/UndoHistory.cxx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,8 @@ const char *UndoHistory::AppendAction(ActionType at, Sci::Position position, con
316316
const char *dataNew = lengthData ? scraps->Push(data, lengthData) : nullptr;
317317
if (currentAction >= actions.SSize()) {
318318
actions.PushBack();
319+
} else {
320+
actions.Truncate(currentAction+1);
319321
}
320322
actions.Create(currentAction, at, position, lengthData, mayCoalesce);
321323
currentAction++;

0 commit comments

Comments
 (0)