diff options
author | nyamatongwe <unknown> | 2012-05-17 12:58:41 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2012-05-17 12:58:41 +1000 |
commit | 2d4acd25868b57bd4a47117acb36c070fd62e7aa (patch) | |
tree | f23db5e430ac353ffd13e79daea25f42524e7206 | |
parent | 07c5dbf9978f152bd32160578c496223473d63e0 (diff) | |
download | scintilla-mirror-2d4acd25868b57bd4a47117acb36c070fd62e7aa.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", |