mirror of
				https://github.com/notepad-plus-plus/notepad-plus-plus.git
				synced 2025-11-04 13:34:00 +01:00 
			
		
		
		
	Update with https://www.scintilla.org/scintilla521.zip https://www.scintilla.org/lexilla515.zip - fix setting to bring Scintilla::PositionCR from ScintillaStructures.h inline with Sci_Position.h Sci_PositionCR - add workaround to enable lexer for searchResult commented out SCI_SETILEXER call on searchResult to get one result which is correctly handled by the lexer, added comment about the current problem with property @MarkingsStruct which seems to disappear after call to SCI_SETILEXER or CreateLexer - corrected usage of ObjC lexer - removed unnecessary filter stuff - use own sections for scintilla and lexilla build targets and allow parallel builds - as libscilex is no longer existing, changed to libscintilla - adapt makefiles and cmake - use VS2019 - started simple changes for createlexer adaptations, nullpointercheck missing on return of lexer name from deprecated LexerNameFromID -> undefined behaviour - movement from id -> lexer name, mostly done via LexerNameFromID + switching off corresponding compiler warning - changed to SCI_SETILEXER from SCI_SETLEXER, SCI_SETLEXERLANGUAGE needs to be corrected, see Scintilla5Migration.html - just commented out: SCI_LOADLEXERLIBRARY Fix #10504, close #11419
		
			
				
	
	
		
			81 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
#!/usr/bin/env python3
 | 
						|
# LexGen.py - implemented 2002 by Neil Hodgson neilh@scintilla.org
 | 
						|
# Released to the public domain.
 | 
						|
 | 
						|
# Update Scintilla files.
 | 
						|
# Update version numbers and modification dates in documentation and header files.
 | 
						|
# Update make dependencies.
 | 
						|
# Requires Python 3.6 or later
 | 
						|
 | 
						|
from FileGenerator import UpdateLineInFile, ReplaceREInFile, UpdateLineInPlistFile
 | 
						|
import ScintillaData
 | 
						|
import HFacer
 | 
						|
import os
 | 
						|
import pathlib
 | 
						|
import sys
 | 
						|
 | 
						|
baseDirectory = os.path.dirname(os.path.dirname(ScintillaData.__file__))
 | 
						|
sys.path.append(baseDirectory)
 | 
						|
 | 
						|
import win32.DepGen
 | 
						|
import gtk.DepGen
 | 
						|
 | 
						|
def UpdateVersionNumbers(sci, root):
 | 
						|
    UpdateLineInFile(root / "win32/ScintRes.rc", "#define VERSION_SCINTILLA",
 | 
						|
        "#define VERSION_SCINTILLA \"" + sci.versionDotted + "\"")
 | 
						|
    UpdateLineInFile(root / "win32/ScintRes.rc", "#define VERSION_WORDS",
 | 
						|
        "#define VERSION_WORDS " + sci.versionCommad)
 | 
						|
    UpdateLineInFile(root / "qt/ScintillaEditBase/ScintillaEditBase.pro",
 | 
						|
        "VERSION =",
 | 
						|
        "VERSION = " + sci.versionDotted)
 | 
						|
    UpdateLineInFile(root / "qt/ScintillaEdit/ScintillaEdit.pro",
 | 
						|
        "VERSION =",
 | 
						|
        "VERSION = " + sci.versionDotted)
 | 
						|
    UpdateLineInFile(root / "doc/ScintillaDownload.html", "       Release",
 | 
						|
        "       Release " + sci.versionDotted)
 | 
						|
    ReplaceREInFile(root / "doc/ScintillaDownload.html",
 | 
						|
        r"/www.scintilla.org/([a-zA-Z]+)\d\d\d",
 | 
						|
        r"/www.scintilla.org/\g<1>" +  sci.version,
 | 
						|
        0)
 | 
						|
    UpdateLineInFile(root / "doc/index.html",
 | 
						|
        '          <font color="#FFCC99" size="3"> Release version',
 | 
						|
        '          <font color="#FFCC99" size="3"> Release version ' +\
 | 
						|
        sci.versionDotted + '<br />')
 | 
						|
    UpdateLineInFile(root / "doc/index.html",
 | 
						|
        '           Site last modified',
 | 
						|
        '           Site last modified ' + sci.mdyModified + '</font>')
 | 
						|
    UpdateLineInFile(root / "doc/ScintillaHistory.html",
 | 
						|
        '	Released ',
 | 
						|
        '	Released ' + sci.dmyModified + '.')
 | 
						|
 | 
						|
    cocoa = root / "cocoa"
 | 
						|
 | 
						|
    UpdateLineInPlistFile(cocoa / "Scintilla" / "Info.plist",
 | 
						|
        "CFBundleShortVersionString", sci.versionDotted)
 | 
						|
    ReplaceREInFile(cocoa / "Scintilla"/ "Scintilla.xcodeproj" / "project.pbxproj",
 | 
						|
        "CURRENT_PROJECT_VERSION = [0-9.]+;",
 | 
						|
        f'CURRENT_PROJECT_VERSION = {sci.versionDotted};',
 | 
						|
        0)
 | 
						|
 | 
						|
def RegenerateAll(rootDirectory):
 | 
						|
 | 
						|
    root = pathlib.Path(rootDirectory)
 | 
						|
 | 
						|
    scintillaBase = root.resolve()
 | 
						|
 | 
						|
    sci = ScintillaData.ScintillaData(scintillaBase)
 | 
						|
 | 
						|
    startDir = os.getcwd()
 | 
						|
    os.chdir(os.path.join(scintillaBase, "win32"))
 | 
						|
    win32.DepGen.Generate()
 | 
						|
    os.chdir(os.path.join(scintillaBase, "gtk"))
 | 
						|
    gtk.DepGen.Generate()
 | 
						|
    os.chdir(startDir)
 | 
						|
 | 
						|
    UpdateVersionNumbers(sci, root)
 | 
						|
 | 
						|
    HFacer.RegenerateAll(root, False)
 | 
						|
 | 
						|
if __name__=="__main__":
 | 
						|
    RegenerateAll(pathlib.Path(__file__).resolve().parent.parent)
 |