Fixed some typos

Author:Peter Gummer
Date:2011-12-01T00:12:40.000000Z


git-svn-id: https://svn.eiffel.com/eiffel-org/trunk@1033 abb3cda0-5349-4a8f-a601-0c33ac3a8c38
This commit is contained in:
pgummer
2011-12-01 00:12:40 +00:00
parent 463f33141e
commit 03a677bd98

View File

@@ -7,22 +7,22 @@
===What's new===
* EiffelRibbon: a Windows specific library and tool to add a ribbon to your EiffelVision2 applications.
* Debian packages available for downloads.
* Added external contributions: Decimal library, Json parser, arbitrary precision mathematics, encryption (SHA1, MD5, x509, ...)
* Added external contributions: Decimal library, Json parser, arbitrary precision mathematics, encryption (SHA1, MD5, x509, ...).
* Added previews of libraries: sqlite3, regular expression, ...
* Added a command line option "-tests" to run all associated Autotest tests from the command line
* Added a command line option "-tests" to run all associated Autotest tests from the command line.
===Improvements===
* Better integration to the latest Linux Desktop environments: Unity from Ubuntu and KDE 4.0.
* Better integration with the latest Linux Desktop environments: Unity from Ubuntu and KDE 4.0.
* SCOOP speed improvements.
* Added support for .NET 4.0 runtime.
===Changes===
* BIT type is now obsolete.
* Location of precompiled libraries has been mode to a user specific directory that can be referenced via the $ISE_PRECOMP variable in your project configurations. This addresses some permission issues depending on how and under which user EiffelStudio was installed.
* Location of precompiled libraries has been moved to a user specific directory that can be referenced via the $ISE_PRECOMP variable in your project configurations. This addresses some permission issues depending on how and under which user EiffelStudio was installed.
===Bug fixes===
* Fixed a display issue of Unicode characters when reporting an error. (bug#17661).
* Fixed a pick and drop issue where it could be confused (e.g. select <e>ARRAY</e> in editor, switch to clickable format, try to pick various elements, it would always pick <e>BOOLEAN</e> instead) (bug#17666)
* Fixed a pick and drop issue where it could be confused (e.g. select <e>ARRAY</e> in editor, switch to clickable format, try to pick various elements, it would always pick <e>BOOLEAN</e> instead) (bug#17666).
* Fixed issue with pick and drop of a feature from an override class whose position is further away than the original class would not scroll to this feature (bug#17406).
* Fixed some issues of window positioning when using EiffelStudio with multiple monitors.
* Fixed a case where you could have 2 editor panes open on the same class.
@@ -44,8 +44,8 @@
* Added <e>TABLE_ITERATOR</e> and <e>TABLE_ITERATION_CURSOR</e> to provide a common way for <e>TABLE</e> like datastructure to iterate over using the new across loop.
* Improved speed of `replace_substring_all' when replacing a smaller string by a larger one.
* Added support for string searches of a <e>STRING_32</e> string (previously it was limited to <e>STRING_8</e>).
* Fixed {IMMUTABLE_STRING_XX}.shared_substring which would not be properly processed by many string operations (e.g. item, item_code, code, ...)
* Changed the behavior of {STRING_XX}.twin to create a new string where the capacity is set to the count of the twined strings and not to its capacity. In scenarios where a large buffer is used but a frequent twin is used it has a big impact on speed and memory usage.
* Fixed {IMMUTABLE_STRING_XX}.shared_substring which would not be properly processed by many string operations (e.g. item, item_code, code, ...).
* Changed the behavior of {STRING_XX}.twin to create a new string where the capacity is set to the count of the twinned strings and not to its capacity. In scenarios where a large buffer is used but a frequent twin is used it has a big impact on speed and memory usage.
* Fixed an issue with <e>{FILE}.read_to_string</e> which would not change the hash_code of the string given as argument.
* Improved speed of <e>HASH_TABLE</e> lookups.
* Added <e>{POINTER}.is_default_pointer</e>.
@@ -53,15 +53,15 @@
* Made <e>{LINKED_STACK}.duplicate</e> void-safe, made a postcondition in <e>{INTERVAL}.intersection</e> void-safe.
===EiffelVision2===
* [[Revisions and Bug Fixes|Click here for EiffelVision2 release notes.]]
* [[Revisions and Bug Fixes|Click here for EiffelVision2 release notes.]]
===EiffelStore===
* Added support for INTEGER_xx and NATURAL_xx datatypes.
* Added support for transactions in the MySQL handle.
* Various speed improvements for SQL queries
* Added support for multiple database connections
* Added support for immutable and unicode strings
* Added support for GUID type
* Various speed improvements for SQL queries.
* Added support for multiple database connections.
* Added support for immutable and unicode strings.
* Added support for GUID type.
* Added support of DECIMAL type.
===Argument parser===