diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ScintillaDoc.html | 15 | ||||
-rw-r--r-- | doc/ScintillaHistory.html | 76 | ||||
-rw-r--r-- | doc/ScintillaRelated.html | 2 | ||||
-rw-r--r-- | doc/index.html | 6 |
4 files changed, 88 insertions, 11 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index c0b0c7a6f..d917913aa 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -2463,10 +2463,7 @@ struct Sci_TextToFind { <code>fontName</code> is a zero terminated string holding the name of a font. Under Windows, only the first 32 characters of the name are used and the name is not case sensitive. For internal caching, Scintilla tracks fonts by name and does care about the casing of font names, - so please be consistent. On GTK+ 2.x, either GDK or Pango can be used to display text. - Pango antialiases text, works well with Unicode and is better supported in recent versions of GTK+ - but GDK is faster. - Prepend a '!' character to the font name to use Pango.</p> + so please be consistent. On GTK+, Pango is used to display text.</p> <p>Sizes can be set to a whole number of points with <code>SCI_STYLESETSIZE</code> or to a fractional point size in hundredths of a point with <code>SCI_STYLESETSIZEFRACTIONAL</code> by multiplying the size by 100 (<code>SC_FONT_SIZE_MULTIPLIER</code>). @@ -4877,6 +4874,7 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){ <a class="message" href="#SCI_SHOWLINES">SCI_SHOWLINES(int lineStart, int lineEnd)</a><br /> <a class="message" href="#SCI_HIDELINES">SCI_HIDELINES(int lineStart, int lineEnd)</a><br /> <a class="message" href="#SCI_GETLINEVISIBLE">SCI_GETLINEVISIBLE(int line)</a><br /> + <a class="message" href="#SCI_GETALLLINESVISIBLE">SCI_GETALLLINESVISIBLE</a><br /> <a class="message" href="#SCI_SETFOLDLEVEL">SCI_SETFOLDLEVEL(int line, int level)</a><br /> <a class="message" href="#SCI_GETFOLDLEVEL">SCI_GETFOLDLEVEL(int line)</a><br /> <a class="message" href="#SCI_SETFOLDFLAGS">SCI_SETFOLDFLAGS(int flags)</a><br /> @@ -4912,9 +4910,14 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){ <p><b id="SCI_SHOWLINES">SCI_SHOWLINES(int lineStart, int lineEnd)</b><br /> <b id="SCI_HIDELINES">SCI_HIDELINES(int lineStart, int lineEnd)</b><br /> <b id="SCI_GETLINEVISIBLE">SCI_GETLINEVISIBLE(int line)</b><br /> + <b id="SCI_GETALLLINESVISIBLE">SCI_GETALLLINESVISIBLE</b><br /> The first two messages mark a range of lines as visible or invisible and then redraw the - display. The third message reports on the visible state of a line and returns 1 if it is - visible and 0 if it is not visible. These messages have no effect on fold levels or fold + display. + <code>SCI_GETLINEVISIBLE</code> reports on the visible state of a line and returns 1 if it is + visible and 0 if it is not visible. + <code>SCI_GETALLLINESVISIBLE</code> returns 1 if all lines are visible and 0 + if some lines are hidden. + These messages have no effect on fold levels or fold flags. The first line can not be hidden.</p> <p><b id="SCI_SETFOLDLEVEL">SCI_SETFOLDLEVEL(int line, int level)</b><br /> diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index b9423780e..4a7643079 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -384,6 +384,7 @@ <td>Occam's Razor</td> <td>Ben Bluemel</td> <td>David Wolfendale</td> + <td>Chris Angelico</td> </tr> </table> <p> @@ -400,7 +401,80 @@ </h3> <ul> <li> - Released 12 September 2011. + Released 16 September 2011. + </li> + <li> + To automatically discover the encoding of a file when opening it, SciTE can run a program set with command.discover.properties. + <a href="https://sourceforge.net/tracker/?func=detail&atid=352439&aid=3324341&group_id=2439">Feature #3324341.</a> + </li> + <li> + Cairo always used for drawing on GTK+. + </li> + <li> + The set of properties files imported by SciTE can be controlled with the properties imports.include and imports.exclude. + The import statement has been extended to allow "import *". + The properties files for some languages are no longer automatically loaded by default. The properties files affected are + avenue, baan, escript, lot, metapost, and mmixal. + </li> + <li> + C++ lexer fixed a bug with raw strings being recognised too easily. + <a href="https://sourceforge.net/tracker/?func=detail&atid=102439&aid=3388122&group_id=2439">Bug #3388122.</a> + </li> + <li> + LaTeX lexer improved with more states and fixes to most outstanding bugs. + <a href="https://sourceforge.net/tracker/?func=detail&atid=102439&aid=1493111&group_id=2439">Bug #1493111.</a> + <a href="https://sourceforge.net/tracker/?func=detail&atid=102439&aid=1856356&group_id=2439">Bug #1856356.</a> + <a href="https://sourceforge.net/tracker/?func=detail&atid=102439&aid=3081692&group_id=2439">Bug #3081692.</a> + </li> + <li> + Lua lexer updates for Lua 5.2 beta with goto labels and "\z" string escape. + <a href="https://sourceforge.net/tracker/?func=detail&atid=352439&aid=3386330&group_id=2439">Feature #3386330.</a> + </li> + <li> + Perl string styling highlights interpolated variables. + <a href="https://sourceforge.net/tracker/?func=detail&atid=352439&aid=3394258&group_id=2439">Feature #3394258.</a> + <a href="https://sourceforge.net/tracker/?func=detail&atid=102439&aid=3076629&group_id=2439">Bug #3076629.</a> + </li> + <li> + Perl lexer updated for Perl 5.14.0 with 0X and 0B numeric literal prefixes, break keyword and "+" supported in subroutine prototypes. + <a href="https://sourceforge.net/tracker/?func=detail&atid=352439&aid=3388802&group_id=2439">Feature #3388802.</a> + </li> + <li> + Perl bug fixed with CRLF line endings. + </li> + <li> + Markdown lexer fixed to not change state with "_" in middle of word. + <a href="https://sourceforge.net/tracker/?func=detail&atid=102439&aid=3398184&group_id=2439">Bug #3398184.</a> + </li> + <li> + Cocoa restores compatibility with OS X 10.5. + </li> + <li> + Mouse pointer changes over selection to an arrow near start when scrolled horizontally. + <a href="https://sourceforge.net/tracker/?func=detail&atid=102439&aid=3389055&group_id=2439">Bug #3389055.</a> + </li> + <li> + Indicators that finish at the end of the document no longer expand when text is appended. + <a href="https://sourceforge.net/tracker/?func=detail&atid=102439&aid=3378718&group_id=2439">Bug #3378718.</a> + </li> + <li> + SparseState merge fixed to check if other range is empty. + <a href="https://sourceforge.net/tracker/?func=detail&atid=102439&aid=3387053&group_id=2439">Bug #3387053.</a> + </li> + <li> + On Windows, autocompletion lists will scroll instead of document when mouse wheel spun. + <a href="https://sourceforge.net/tracker/?func=detail&atid=352439&aid=3403600&group_id=2439">Feature #3403600.</a> + </li> + <li> + SciTE performs more rapid polling for command completion so will return faster and report more accurate times. + </li> + <li> + SciTE resizes panes proportionally when switched between horizontal and vertical layout. + <a href="https://sourceforge.net/tracker/?func=detail&atid=352439&aid=3376784&group_id=2439">Feature #3376784.</a> + </li> + <li> + SciTE on GTK+ opens multiple files into a single instance more reliably. + <a href="https://sourceforge.net/tracker/?func=detail&atid=102439&aid=3363754&group_id=2439">Bug #3363754.</a> </li> </ul> <h3> diff --git a/doc/ScintillaRelated.html b/doc/ScintillaRelated.html index 7c6e6a486..51d710d5d 100644 --- a/doc/ScintillaRelated.html +++ b/doc/ScintillaRelated.html @@ -29,7 +29,7 @@ Ports and Bindings of Scintilla </h3> <p> - <a href="https://metacpan.org/module/AZAWAWI/Wx-Scintilla-0.21_03/lib/Wx/Scintilla.pm">Wx::Scintilla</a> + <a href="https://metacpan.org/module/Wx::Scintilla">Wx::Scintilla</a> is a Perl Binding for Scintilla on wxWidgets. </p> <p> diff --git a/doc/index.html b/doc/index.html index 277165c19..020959408 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="20110912" /> + <meta name="Date.Modified" content="20110916" /> <style type="text/css"> #versionlist { margin: 0; @@ -56,7 +56,7 @@ </td> <td width="40%" align="right"> <font color="#FFCC99" size="3"> Release version 2.29<br /> - Site last modified September 12 2011</font> + Site last modified September 16 2011</font> </td> <td width="20%"> @@ -71,7 +71,7 @@ </tr> </table> <ul id="versionlist"> - <li>Version 2.29 fixes bugs.</li> + <li>Version 2.29 always draws with Cairo on GTK+.</li> <li>Version 2.28 allows translucent images in RGBA format to be used for margin markers and in autocompletion lists.</li> <li>Version 2.27 fixes incorrect colours on some versions of GTK+.</li> <li>Version 2.26 can highlight folding margin symbols for the current folding block. Experimental support for GTK+ 3.</li> |