diff options
author | nyamatongwe <devnull@localhost> | 2012-05-17 12:58:41 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2012-05-17 12:58:41 +1000 |
commit | 6641b235e141849ce768b9fe005ea67c3e50e441 (patch) | |
tree | 6d489471321fc146092c827f9bba9257f0d8f0f5 | |
parent | f09a82fa49fbbac21c8c6d5e1dea491494709bf1 (diff) | |
download | scintilla-mirror-6641b235e141849ce768b9fe005ea67c3e50e441.tar.gz |
Update version numbers in Qt project files.
-rwxr-xr-x | src/LexGen.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/LexGen.py b/src/LexGen.py index 1e3e74c6c..d03c4a24a 100755 --- a/src/LexGen.py +++ b/src/LexGen.py @@ -271,6 +271,12 @@ def UpdateVersionNumbers(root): "#define VERSION_SCINTILLA \"" + versionDotted + "\"") UpdateLineInFile(root + "scintilla/win32/ScintRes.rc", "#define VERSION_WORDS", "#define VERSION_WORDS " + versionCommad) + UpdateLineInFile(root + "scintilla/qt/ScintillaEditBase/ScintillaEditBase.pro", + "VERSION =", + "VERSION = " + versionDotted) + UpdateLineInFile(root + "scintilla/qt/ScintillaEdit/ScintillaEdit.pro", + "VERSION =", + "VERSION = " + versionDotted) UpdateLineInFile(root + "scintilla/doc/ScintillaDownload.html", " Release", " Release " + versionDotted) UpdateLineInFile(root + "scintilla/doc/index.html", |