diff options
| -rw-r--r-- | doc/ScintillaDownload.html | 8 | ||||
| -rw-r--r-- | doc/ScintillaHistory.html | 27 | ||||
| -rw-r--r-- | doc/index.html | 11 | ||||
| -rw-r--r-- | win32/ScintRes.rc | 8 | 
4 files changed, 43 insertions, 11 deletions
| diff --git a/doc/ScintillaDownload.html b/doc/ScintillaDownload.html index e7b5363d7..b677561de 100644 --- a/doc/ScintillaDownload.html +++ b/doc/ScintillaDownload.html @@ -25,7 +25,7 @@      <table bgcolor="#CCCCCC" width="100%" cellspacing="0" cellpadding="8" border="0">        <tr>          <td> -          <font size="4"> <a href="scintilla143.zip">Windows</a>   <a href="scintilla143.tgz"> +          <font size="4"> <a href="scintilla144.zip">Windows</a>   <a href="scintilla144.tgz">            GTK+/Linux</a>  </font>          </td>        </tr> @@ -38,7 +38,7 @@        containing very few restrictions.      </p>      <h3> -       Release 1.43 +       Release 1.44      </h3>      <h4>         Source Code @@ -46,8 +46,8 @@         The source code package contains all of the source code for Scintilla but no binary  	executable code and is available in         <ul> -       <li><a href="scintilla143.zip">zip format</a> (370K) commonly used on Windows</li> -       <li><a href="scintilla143.tgz">tgz format</a> (320K) commonly used on Linux and compatible operating systems</li> +       <li><a href="scintilla144.zip">zip format</a> (370K) commonly used on Windows</li> +       <li><a href="scintilla144.tgz">tgz format</a> (320K) commonly used on Linux and compatible operating systems</li>         </ul>         Instructions for building on both Windows and Linux are included in the readme file.      <p> diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index b4db6ba2c..68a6146f1 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -124,6 +124,33 @@  	Lua lexer no longer treats '.' as a word character and  	handles 6 keyword sets.        </li> +      <li> +        WordStartPosition and WordEndPosition take an onlyWordCharacters +        argument. +      </li> +      <li> +	Compilation fix on Alpha because of 64 bit. +      </li> +      <li> +	Compilation fix for static linking. +      </li> +      <li> +	When whole document line selected, only the last display line gets +	the extra selected rectangle at the right hand side rather than +	every display line. +      </li> +      <li> +	Caret disappearing bug fixed for the case that the caret was not on the +	first display line of a document line. +      </li> +      <li> +	SciTE bug fixed where untitled buffer containing text was sometimes +	deleted without chance to save. +      </li> +      <li> +	SciTE bug fixed where use.monospaced not working with +	multiple buffers. +      </li>      </ul>      <h3>         <a href="scite143.zip">Release 1.43</a> diff --git a/doc/index.html b/doc/index.html index f6f6bd111..66492bc7d 100644 --- a/doc/index.html +++ b/doc/index.html @@ -9,7 +9,7 @@      <meta name="keywords" content="Scintilla, SciTE, Editing Component, Text Editor" />      <meta name="Description"      content="www.scintilla.org is the home of the Scintilla editing component and SciTE text editor application." /> -    <meta name="Date.Modified" content="20020119" /> +    <meta name="Date.Modified" content="20020202" />      <style type="text/css">          .versionlist {  	color: #FFCC99; @@ -36,8 +36,8 @@            GTK+</font>          </td>          <td width="40%" align="right"> -          <font color="#FFCC99" size="3"> Release version 1.43<br /> -           Site last modified January 19 2001</font> +          <font color="#FFCC99" size="3"> Release version 1.44<br /> +           Site last modified February 2 2002</font>          </td>          <td width="20%">              @@ -54,6 +54,11 @@      <table bgcolor="#000000" width="100%" cellspacing="0" cellpadding="6" border="0">        <tr>          <td width="100%"> +          <span class="versionlist"> Version 1.44 fixes bugs. </span> +        </td> +      </tr> +      <tr> +        <td width="100%">            <span class="versionlist"> Version 1.43 improves line wrapping. </span>          </td>        </tr> diff --git a/win32/ScintRes.rc b/win32/ScintRes.rc index 91d787092..ec687fe12 100644 --- a/win32/ScintRes.rc +++ b/win32/ScintRes.rc @@ -9,8 +9,8 @@  #include "PlatformRes.h"  VS_VERSION_INFO VERSIONINFO -FILEVERSION	1, 4, 3, 0 -PRODUCTVERSION	1, 4, 3, 0 +FILEVERSION	1, 4, 4, 0 +PRODUCTVERSION	1, 4, 4, 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.43\0" +			VALUE	"FileVersion",	"1.44\0"  			VALUE	"InternalName",	"Scintilla\0"  			VALUE	"LegalCopyright",	"Copyright 1998-2002 by Neil Hodgson\0"  			VALUE	"OriginalFilename",	"Scintilla.DLL\0"  			VALUE	"ProductName",	"Scintilla\0" -			VALUE	"ProductVersion",	"1.43\0" +			VALUE	"ProductVersion",	"1.44\0"  		END  	END  END | 
