aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <unknown>2003-02-15 00:12:24 +0000
committernyamatongwe <unknown>2003-02-15 00:12:24 +0000
commit97de6d6aeec37720807b98e71170a1ec9b2c4925 (patch)
tree1ac9751e1fa305d000d9e23fe8820f3101909fa7
parent5309c307bb45d02cfe12e99eaa18f64ab76b7455 (diff)
downloadscintilla-mirror-97de6d6aeec37720807b98e71170a1ec9b2c4925.tar.gz
Updating version numbers and copyright.
-rw-r--r--gtk/PlatGTK.cxx2
-rw-r--r--gtk/ScintillaGTK.cxx2
-rw-r--r--include/Platform.h2
-rw-r--r--include/Scintilla.h2
-rw-r--r--src/Document.cxx2
-rw-r--r--src/Document.h2
-rw-r--r--src/Editor.h2
-rw-r--r--src/LexHTML.cxx2
-rw-r--r--version.txt2
-rw-r--r--win32/ScintRes.rc8
10 files changed, 13 insertions, 13 deletions
diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx
index e85cf004c..8afe2bcba 100644
--- a/gtk/PlatGTK.cxx
+++ b/gtk/PlatGTK.cxx
@@ -1,6 +1,6 @@
// Scintilla source code edit control
// PlatGTK.cxx - implementation of platform facilities on GTK+/Linux
-// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2003 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
#include <string.h>
diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx
index 64b283dc1..56fdec797 100644
--- a/gtk/ScintillaGTK.cxx
+++ b/gtk/ScintillaGTK.cxx
@@ -1,6 +1,6 @@
// Scintilla source code edit control
// ScintillaGTK.cxx - GTK+ specific subclass of ScintillaBase
-// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2003 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
#include <stdlib.h>
diff --git a/include/Platform.h b/include/Platform.h
index bb429729e..eacf2302d 100644
--- a/include/Platform.h
+++ b/include/Platform.h
@@ -3,7 +3,7 @@
** Interface to platform facilities. Also includes some basic utilities.
** Implemented in PlatGTK.cxx for GTK+/Linux, PlatWin.cxx for Windows, and PlatWX.cxx for wxWindows.
**/
-// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2003 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
#ifndef PLATFORM_H
diff --git a/include/Scintilla.h b/include/Scintilla.h
index bf506f1d5..9f3b9ea34 100644
--- a/include/Scintilla.h
+++ b/include/Scintilla.h
@@ -2,7 +2,7 @@
/** @file Scintilla.h
** Interface to the edit control.
**/
-// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2003 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
// Most of this file is automatically generated from the Scintilla.iface interface definition
diff --git a/src/Document.cxx b/src/Document.cxx
index b0ba03b2c..20a53b132 100644
--- a/src/Document.cxx
+++ b/src/Document.cxx
@@ -2,7 +2,7 @@
/** @file Document.cxx
** Text document that handles notifications, DBCS, styling, words and end of line.
**/
-// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2003 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
#include <stdlib.h>
diff --git a/src/Document.h b/src/Document.h
index d5059f7bc..30fdc625e 100644
--- a/src/Document.h
+++ b/src/Document.h
@@ -2,7 +2,7 @@
/** @file Document.h
** Text document that handles notifications, DBCS, styling, words and end of line.
**/
-// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2003 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
#ifndef DOCUMENT_H
diff --git a/src/Editor.h b/src/Editor.h
index 1769b7b06..5db0e870d 100644
--- a/src/Editor.h
+++ b/src/Editor.h
@@ -2,7 +2,7 @@
/** @file Editor.h
** Defines the main editor class.
**/
-// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2003 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
#ifndef EDITOR_H
diff --git a/src/LexHTML.cxx b/src/LexHTML.cxx
index 38b3ed697..345b15edc 100644
--- a/src/LexHTML.cxx
+++ b/src/LexHTML.cxx
@@ -2,7 +2,7 @@
/** @file LexHTML.cxx
** Lexer for HTML.
**/
-// Copyright 1998-2002 by Neil Hodgson <neilh@scintilla.org>
+// Copyright 1998-2003 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
#include <stdlib.h>
diff --git a/version.txt b/version.txt
index 4701cc793..c663e4d09 100644
--- a/version.txt
+++ b/version.txt
@@ -1 +1 @@
-150 \ No newline at end of file
+151 \ No newline at end of file
diff --git a/win32/ScintRes.rc b/win32/ScintRes.rc
index fe0f20f71..1770e48e7 100644
--- a/win32/ScintRes.rc
+++ b/win32/ScintRes.rc
@@ -9,8 +9,8 @@
#include "PlatformRes.h"
VS_VERSION_INFO VERSIONINFO
-FILEVERSION 1, 5, 0, 0
-PRODUCTVERSION 1, 5, 0, 0
+FILEVERSION 1, 5, 1, 0
+PRODUCTVERSION 1, 5, 1, 0
FILEFLAGSMASK 0x3fL
FILEFLAGS 0
FILEOS VOS_NT_WINDOWS32
@@ -27,12 +27,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Neil Hodgson neilh@scintilla.org\0"
VALUE "FileDescription", "Scintilla.DLL - a Source Editing Component\0"
- VALUE "FileVersion", "1.50\0"
+ VALUE "FileVersion", "1.51\0"
VALUE "InternalName", "Scintilla\0"
VALUE "LegalCopyright", "Copyright 1998-2003 by Neil Hodgson\0"
VALUE "OriginalFilename", "Scintilla.DLL\0"
VALUE "ProductName", "Scintilla\0"
- VALUE "ProductVersion", "1.50\0"
+ VALUE "ProductVersion", "1.51\0"
END
END
END