mirror of
https://github.com/EiffelSoftware/eiffel-org.git
synced 2025-12-06 23:02:28 +01:00
Author:manus
Date:2013-08-08T08:39:15.000000Z git-svn-id: https://svn.eiffel.com/eiffel-org/trunk@1234 abb3cda0-5349-4a8f-a601-0c33ac3a8c38
This commit is contained in:
@@ -0,0 +1,36 @@
|
|||||||
|
[[Property:title|Major changes between ISE Eiffel 7.2 and ISE Eiffel 7.3]]
|
||||||
|
[[Property:link_title|7.3]]
|
||||||
|
[[Property:weight|10]]
|
||||||
|
[[Property:uuid|84a0a02d-b9cc-9897-c1d9-41dfc27c294a]]
|
||||||
|
==What's new==
|
||||||
|
* Added support for agents with targets of separate types.
|
||||||
|
* Added new levels of void-safety: "conformance" that enables taking attachment marks into account when checking for conformance; "transitional" (previously "all") that checks almost all void-safety rules except those for unqualified agents and allows CAPs for preconditions and check instructions; "all" that checks all void-safety rules.
|
||||||
|
|
||||||
|
==Improvements==
|
||||||
|
* Fixed issue that causes many classes to be recompiled when not needed.
|
||||||
|
* Relaxed rules for using Current and unqualified agents when not all attributes are set to report VEVI errors only when qualified calls are involved in a sequence of unqualified calls and creation procedure calls ("targeted rules").
|
||||||
|
|
||||||
|
==Changes==
|
||||||
|
* The BIT type has been completely removed from libraries and runtime.
|
||||||
|
|
||||||
|
==Bug fixes==
|
||||||
|
|
||||||
|
===Language issues===
|
||||||
|
N/A
|
||||||
|
|
||||||
|
===Compiler issues===
|
||||||
|
* Fixed error in processing replicated and selected attributes with self-initializing attribute bodies that could lead to reporting these attributes as uninitialized.
|
||||||
|
* Fixed a bug that might result in a missing VEVI error for Result in a self-initializing attribute body.
|
||||||
|
|
||||||
|
===SCOOP issues===
|
||||||
|
* Fixed a bug that caused incorrect conformance checks for formal generics of different separate status.
|
||||||
|
* Fixed a bug that might cause incorrect conformance checks for attachment and separateness status of a constrained formal generic parameter against a class type.
|
||||||
|
* Fixed a C code generation bug that might cause an access on an invalid address during object test evaluation with an expression of a separate type.
|
||||||
|
|
||||||
|
===Runtime/code generation issues===
|
||||||
|
* Fixed a bug where the TYPE instance of a new generic derivation in the running system would be corrupted.
|
||||||
|
|
||||||
|
===Store/Retrieve issues===
|
||||||
|
* Fixed a bug in .NET where using the Eiffel serialization or marking objects would trigger computation of `hash_code' on Eiffel objects and thus changing their state.
|
||||||
|
|
||||||
|
|
||||||
@@ -3,26 +3,30 @@
|
|||||||
[[Property:uuid|a503cf13-6374-9932-5ee2-a69b363e6701]]
|
[[Property:uuid|a503cf13-6374-9932-5ee2-a69b363e6701]]
|
||||||
[[Image:information tool change analysis]]
|
[[Image:information tool change analysis]]
|
||||||
|
|
||||||
Within EiffelStudio 7.3, there will be new functions in Infomation tool to track changes on target or external resouce side, and potentially affected items on either side are listed.
|
The information tool can track changes in an Eiffel system or external resources side, and potentially affected items on either side are listed.
|
||||||
|
|
||||||
== Major Features ==
|
== Major Features ==
|
||||||
* '''Affected target:''' List of elements of current system that would be affected by external resource changes. (External resource is limited to local files.)
|
* '''Affected target:''' List of elements of the Eiffel system that would be affected by a change in external resources.
|
||||||
* '''Affected source:''' List of external resources that might be affected by changes of current system. (No limit of the type of external resources)
|
* '''Affected source:''' List of external resources that might be affected by changes in the Eiffel system.
|
||||||
* '''Change acknowledgement:''' Acknowledgement of the changes that are aware of and will be ignored without any further actions.
|
* '''Change acknowledgement:''' Acknowledgement of the changes which will be ignored with no further actions.
|
||||||
|
|
||||||
== Typical Work Flows ==
|
== Typical Work Flows ==
|
||||||
|
|
||||||
=== Affected external resources caused by current system change ===
|
=== Affected external resources caused by a change in the Eiffel system ===
|
||||||
# Open a class, add an Information entry with an external source in the class.
|
# Open a class, add an Information entry with an external resource in the class.
|
||||||
# Start working on that class, save it at as you normally do on regular basis.
|
# Start working on that class, save it at as you normally do on regular basis.
|
||||||
# Open Info tool, go to Affected source item in the left tree.
|
# Open the information tool, go to Affected source item in the left tree.
|
||||||
# Check the list of external resouces that might be affected by last changes, as shown in the sceen cast bellow.
|
# Check the list of external resources that might be affected by last changes.
|
||||||
# Acknowledge the changes if you find that the external resources do not need a change for last changes of current system.
|
# Acknowledge the changes once you have updated the external resource accordingly (possibly no change is required in the case of simple system changes).
|
||||||
|
|
||||||
|
=== Affected items in the Eiffel system caused by an external resource change ===
|
||||||
|
# Open a class, add an Information entry with an external resource in the class.
|
||||||
|
# Start working on that external resource, save it at as you normally do on regular basis.
|
||||||
|
# Open the information tool, go to Affected target in the left tree.
|
||||||
|
# Check the list of classes that might be affected by last changes of the external resource. (You may need to click on the "sweep the system now." button to get a full list if auto-sweeping is not enabled.)
|
||||||
|
# Acknowledge the changes once you have updated the Eiffel system accordingly (possibly no change is required in the case of a simple edit in the external resource).
|
||||||
|
|
||||||
|
== Current limitations ==
|
||||||
|
The tracking of external resource changes is limited to external resources that are local files. If an external resource is a URL, it will not detect any potential changes done at that URL.
|
||||||
|
|
||||||
=== Affected items in the system caused by external resource change ===
|
|
||||||
# Open a class, add an Information entry with an external document (limited to local files in 7.3) in the class.
|
|
||||||
# Start working on that document, save it at as you normally do on regular basis.
|
|
||||||
# Open Info tool, go to Affected target in the left tree.
|
|
||||||
# Check the list of targets that might be affected by last changes of the document. (You may need to click on the "sweep the system now." button to get a full list if auto-sweeping is not enabled.)
|
|
||||||
# Acknowledge the changes if you find that current system does not need a change for last changes of the document.
|
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,9 @@
|
|||||||
==Graphical environment==
|
==Graphical environment==
|
||||||
|
|
||||||
===What's new===
|
===What's new===
|
||||||
* A change analysis for documents in the [[Eiffel Information System]] where one can be notified of which documents to update when a class is modified, and conversely whenever a document is modified which classes might need updating.
|
* A [[change analysis]] for documents in the [[Eiffel Information System]] where one can be notified of which documents to update when a class is modified, and conversely whenever a document is modified which classes might need updating.
|
||||||
|
* EiffelStudio will now show you contracts of a feature when completing code, letting you quickly find out the proper way to call it
|
||||||
|
* When debugging, moving the mouse pointer over an expression will cause the debugger to evaluate the expression and display its computation result in a tooltip.
|
||||||
|
|
||||||
===Improvements===
|
===Improvements===
|
||||||
* Used void-safety settings of a target to list libraries that are compatible with it and provided more details on their void-safety status in the dialog for adding libraries.
|
* Used void-safety settings of a target to list libraries that are compatible with it and provided more details on their void-safety status in the dialog for adding libraries.
|
||||||
@@ -14,17 +16,25 @@
|
|||||||
* In [[AutoTest]], tests will be executed under the location of the Eiffel configuration file (ECF) and not in the Testing subdirectory of the EIFGENs directory.
|
* In [[AutoTest]], tests will be executed under the location of the Eiffel configuration file (ECF) and not in the Testing subdirectory of the EIFGENs directory.
|
||||||
|
|
||||||
===Bug fixes===
|
===Bug fixes===
|
||||||
|
* Fixed a memory corruption that would occur when you have multiple errors during a compilation and you are opening each error in its own tab editor, after opening 4 or 5 tabs, EiffelStudio could become unstable.
|
||||||
|
* Fixed a crash after saving a diagram as a PNG file.
|
||||||
|
|
||||||
==Compiler==
|
==Compiler==
|
||||||
* Click [[Major changes between ISE Eiffel 7.2 and ISE Eiffel 7.3|here]] for the compiler release notes.
|
* Click [[Major changes between ISE Eiffel 7.2 and ISE Eiffel 7.3|here]] for the compiler release notes.
|
||||||
|
|
||||||
|
==Debugger==
|
||||||
|
* Click [[Release notes for EiffelStudio 7.3 related to the debugger|here]] for the EiffelStudio debugger release notes.
|
||||||
|
|
||||||
|
==EiffelBuild==
|
||||||
|
* Click [[EiffelBuild Version History|here]] for the EiffelBuild release notes.
|
||||||
|
|
||||||
==Libraries==
|
==Libraries==
|
||||||
|
|
||||||
===EiffelBase===
|
===EiffelBase===
|
||||||
* Updated <e>TUPLE</e> and depending classes to separate entities.
|
* Updated <e>TUPLE</e> and depending classes to separate entities.
|
||||||
* Updated <e>ROUTINE</e> and descendants to be usable for agents with separate targets.
|
* Updated <e>ROUTINE</e> and descendants to be usable for agents with separate targets.
|
||||||
* Fixed a comparison bug with <e>EQUALITY_TUPLE</e> which actually would only compare the last elements.
|
* Fixed a comparison bug with <e>EQUALITY_TUPLE</e> which actually would only compare the last elements.
|
||||||
* Made <e>INTERNAL</e> obsolete, it is now replaced by two set of classes: a static introspection class and a dynamic one. The class that lets you examine the static content is <e>REFLECTOR</e>; most references of <e>INTERNAL</e> can easily be replaced by <e>REFLECTOR</e>. To inspect objects, you have a new set of classes starting with <e>REFLECTED_OBJECT</e>. This let you inspect objects with copy semantics without actually causing a copy each time you access it, unlike what was happening before with <e>INTERNAL<e/>.
|
* Made <e>INTERNAL</e> obsolete, it is now replaced by two set of classes: a static introspection class and a dynamic one. The class that lets you examine the static content is <e>REFLECTOR</e>; most references of <e>INTERNAL</e> can easily be replaced by <e>REFLECTOR</e>. To inspect objects, you have a new set of classes starting with <e>REFLECTED_OBJECT</e>. This let you inspect objects with copy semantics without actually causing a copy each time you access it, unlike what was happening before with <e>INTERNAL</e>.
|
||||||
* Fixed a reallocation bug in <e>SED_MEMORY_READER_WRITER</e> where if you retrieve a large chunk, we would not allocate enough memory.
|
* Fixed a reallocation bug in <e>SED_MEMORY_READER_WRITER</e> where if you retrieve a large chunk, we would not allocate enough memory.
|
||||||
* Added ability to store/retrieve expanded objects and objects with copy semantics with SED.
|
* Added ability to store/retrieve expanded objects and objects with copy semantics with SED.
|
||||||
* Storables made using SED from version 6.6 or earlier of EiffelStudio not using the `is_for_fast_retrieval' setting won't be recoverable.
|
* Storables made using SED from version 6.6 or earlier of EiffelStudio not using the `is_for_fast_retrieval' setting won't be recoverable.
|
||||||
@@ -39,6 +49,7 @@
|
|||||||
===WEL===
|
===WEL===
|
||||||
* Fixed a 64-bit truncation bug in the message dispatcher of WEL.
|
* Fixed a 64-bit truncation bug in the message dispatcher of WEL.
|
||||||
* Fixed a memory corruption that would occur when loading a 32-bit BMP image as a background image of a container in a 16-bit or lower display.
|
* Fixed a memory corruption that would occur when loading a 32-bit BMP image as a background image of a container in a 16-bit or lower display.
|
||||||
|
* Fixed an issue with <e>WEL_CHOOSE_FOLDER_DIALOG</e> where <e>set_starting_path</e> had no effect
|
||||||
|
|
||||||
[[EiffelStudio release notes|Click here to check out what was new in other versions]]
|
[[EiffelStudio release notes|Click here to check out what was new in other versions]]
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
[[Property:title|EiffelBuild Version History]]
|
[[Property:title|EiffelBuild Version History]]
|
||||||
[[Property:weight|2]]
|
[[Property:weight|2]]
|
||||||
[[Property:uuid|8cc0540e-8ee7-c005-0534-a2ed62f41c96]]
|
[[Property:uuid|8cc0540e-8ee7-c005-0534-a2ed62f41c96]]
|
||||||
|
== 7.3 Release ==
|
||||||
|
* Fixed a crash which could occur when generating a project.
|
||||||
|
* Fixed a crash when saving a project if it contained a pixmap with no path specified.
|
||||||
|
|
||||||
==7.2, 7.1 and 7.0 Release==
|
==7.2, 7.1 and 7.0 Release==
|
||||||
No changes.
|
No changes.
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,24 @@
|
|||||||
[[Property:title|Revisions and Bug Fixes]]
|
[[Property:title|Revisions and Bug Fixes]]
|
||||||
[[Property:weight|10]]
|
[[Property:weight|10]]
|
||||||
[[Property:uuid|eb11a237-0c75-0427-452a-303d4f276b97]]
|
[[Property:uuid|eb11a237-0c75-0427-452a-303d4f276b97]]
|
||||||
This document contains details of modifications and bug fixes to the EiffelVision 2 library listed by the release version of EiffelStudio. All bug fixes and modifications are relative to the previously released version.
|
This document contains details of modifications and bug fixes to the EiffelVision 2 library listed by the release version of EiffelStudio. All bug fixes and modifications are relative to the previously released version
|
||||||
|
|
||||||
|
==EiffelStudio 7.3==
|
||||||
|
'''Improvements'''
|
||||||
|
* Added {EV_PIXEL_BUFFER}.stretched which gives you a stretched version of an EV_PIXEL_BUFFER. The quality of the stretch image is much better than of the previous implementatio of EV_PIXMAP for Windows. On Unix it is the same quality as EV_PIXMAP.
|
||||||
|
* Improved stretching of EV_PIXMAP on Windows by using the Color on Color stretching mode of the Win32 API StretchBlt.
|
||||||
|
|
||||||
|
|
||||||
|
'''Bug fixes'''
|
||||||
|
*'''Platform Independent'''
|
||||||
|
** Fixed inconsistencies in maximize/restore window behavior between Windows and Gtk platforms.
|
||||||
|
** Fixed {EV_GRID_COLUMN}.required_width_of_item_span to only take into account visible item.
|
||||||
|
|
||||||
|
*'''Windows'''
|
||||||
|
** Fixed a resizing bug when you have a vertical/horizontal box with a minimum size set, if one of the item has a minimum size larger than its parent, then in some circumstances the child will be shrinked beyond its minimum size causing some visual glitches.
|
||||||
|
|
||||||
==EiffelStudio 7.1==
|
==EiffelStudio 7.1==
|
||||||
|
|
||||||
'''New'''
|
'''New'''
|
||||||
* Added experimental GTK3 support with HTML5 backend.
|
* Added experimental GTK3 support with HTML5 backend.
|
||||||
* Added SCOOP compatibility.
|
* Added SCOOP compatibility.
|
||||||
@@ -15,6 +30,7 @@ This document contains details of modifications and bug fixes to the EiffelVisio
|
|||||||
* Improved latency of asynchronous agents calling through do_once_on_idle when adding from another thread.
|
* Improved latency of asynchronous agents calling through do_once_on_idle when adding from another thread.
|
||||||
|
|
||||||
'''Bug fixes'''
|
'''Bug fixes'''
|
||||||
|
|
||||||
*'''Platform Independent'''
|
*'''Platform Independent'''
|
||||||
** Fixed problems when keyboard navigating in EV_GRID's when hidden columns are present.
|
** Fixed problems when keyboard navigating in EV_GRID's when hidden columns are present.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user