Skip to content

Commit

Permalink
Release v4.2.25r1110.
Browse files Browse the repository at this point in the history
  • Loading branch information
zufuliu committed Feb 12, 2018
1 parent 163979d commit 6317ded
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 7 deletions.
2 changes: 1 addition & 1 deletion res/Notepad2.exe.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<assemblyIdentity
name="Notepad2"
processorArchitecture="*"
version="4.2.25.1096"
version="4.2.25.1110"
type="win32"
/>
<description>Notepad2</description>
Expand Down
7 changes: 7 additions & 0 deletions scintilla/include/Scintilla.h
Original file line number Diff line number Diff line change
Expand Up @@ -1216,12 +1216,19 @@ struct SCNotification {
#define SCI_SETKEYSUNICODE 2521
#define SCI_GETKEYSUNICODE 2522

#define SCI_GETTWOPHASEDRAW 2283
#define SCI_SETTWOPHASEDRAW 2284

#define CharacterRange Sci_CharacterRange
#define TextRange Sci_TextRange
#define TextToFind Sci_TextToFind
#define RangeToFormat Sci_RangeToFormat
#define NotifyHeader Sci_NotifyHeader

#define SCI_SETSTYLEBITS 2090
#define SCI_GETSTYLEBITS 2091
#define SCI_GETSTYLEBITSNEEDED 4011

#endif

#endif
1 change: 0 additions & 1 deletion scintilla/scripts/HeaderCheck.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,5 +89,4 @@ def CheckFiles(root):
#~ return
#print("Master header list", " ".join(masterHeaderList))


CheckFiles("..")
2 changes: 2 additions & 0 deletions scintilla/src/DBCS.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

#include "DBCS.h"

using namespace Scintilla;

namespace Scintilla {

bool DBCSIsLeadByte(int codePage, char ch) {
Expand Down
2 changes: 1 addition & 1 deletion scintilla/src/Position.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* A Position is a position within a document between two characters or at the beginning or end.
* Sometimes used as a character index where it identifies the character after the position.
* A Line is a document or screen line.
*/
*/

namespace Sci {

Expand Down
6 changes: 3 additions & 3 deletions src/VersionRev.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#define VERSION_HASH _T("cffabe8")
#define VERSION_REV 1096
#define VERSION_REV_FULL _T("1096 (cffabe8)")
#define VERSION_HASH _T("163979d")
#define VERSION_REV 1110
#define VERSION_REV_FULL _T("1110 (163979d)")
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ git clone https://github.com/XhmikosR/notepad2-mod.git

Scintilla
hg clone http://hg.code.sf.net/p/scintilla/code scintilla
2018-02-10 6452:1bf8b7c50995
2018-02-12 6453:71a51a9a6048

SciTE
hg clone http://hg.code.sf.net/p/scintilla/scite
Expand Down

0 comments on commit 6317ded

Please sign in to comment.