From ecaa82a9715bd532d3961a41abfe89f308f989ee Mon Sep 17 00:00:00 2001 From: Stéphane Bégaudeau Date: Fri, 22 Dec 2017 11:47:49 +0100 Subject: [doc] Update the release notes for EEF 2.0.1 Change-Id: Ibe5648158010f88e21d661fc6ec139559facf7c0 Signed-off-by: Stéphane Bégaudeau --- .../pages/releasenotes.html | 61 ++++++++++++++++++---- .../pages/releasenotes.textile | 33 ++++++++++++ 2 files changed, 85 insertions(+), 9 deletions(-) diff --git a/doc/org.eclipse.eef.documentation/pages/releasenotes.html b/doc/org.eclipse.eef.documentation/pages/releasenotes.html index 8b357d768..86d382e89 100644 --- a/doc/org.eclipse.eef.documentation/pages/releasenotes.html +++ b/doc/org.eclipse.eef.documentation/pages/releasenotes.html @@ -11,9 +11,18 @@
  • Release Notes for Eclipse EEF
      +
    1. + Changes in EEF 2.0.1 +
    2. Changes in EEF 2.0.0
    3. +
    4. + Changes in EEF 1.9.2 +
    5. +
    6. + Changes in EEF 1.9.1 +
    7. Changes in EEF 1.9.0
    8. @@ -42,6 +51,16 @@

    This document contains the release notes for recent major releases of EEF.

    +

    Changes in EEF 2.0.1

    +

    User-Visible Changes

    + +

    Developer-Visible Changes

    +

    Changes in EEF 2.0.0

    Specifier-Visible Changes

    -

    Developer-Visible Changes

    +

    Developer-Visible Changes

    +

    Changes in EEF 1.9.2

    +

    User-Visible Changes

    + +

    Developer-Visible Changes

    + +

    Changes in EEF 1.9.1

    +

    User-Visible Changes

    + +

    Developer-Visible Changes

    +

    Changes in EEF 1.9.0

    -

    User-Visible Changes

    +

    User-Visible Changes

    @@ -82,7 +125,7 @@ -

    Developer-Visible Changes

    +

    Developer-Visible Changes

    @@ -100,13 +143,13 @@
  • Modified Improve the documentation of the available extension points
  • -

    Developer-Visible Changes

    +

    Developer-Visible Changes

    Changes in EEF 1.7.0

    -

    User-Visible Changes

    +

    User-Visible Changes

    -

    Developer-Visible Changes

    +

    Developer-Visible Changes

    Changes in EEF 1.6.2

    -

    User-Visible Changes

    +

    User-Visible Changes

    Changes in EEF 1.6.0

    -

    User-Visible Changes

    +

    User-Visible Changes

    @@ -159,7 +202,7 @@ language is available to create your user interface. Have a look at the documentation for additional details. -

    Developer-Visible Changes

    +

    Developer-Visible Changes

    diff --git a/doc/org.eclipse.eef.documentation/pages/releasenotes.textile b/doc/org.eclipse.eef.documentation/pages/releasenotes.textile index 8f81f83b2..eea29ce0c 100644 --- a/doc/org.eclipse.eef.documentation/pages/releasenotes.textile +++ b/doc/org.eclipse.eef.documentation/pages/releasenotes.textile @@ -4,6 +4,17 @@ h2. Release Notes for Eclipse EEF This document contains the release notes for recent major releases of EEF. +h3(#eef2.0.1). Changes in EEF 2.0.1 + +h4. User-Visible Changes + +* Added A conflict resolution policy has been added to the Text widget. The implementation of the text widget now uses a new preference TEXT_CONFLICT_RESOLUTION_MODE, which is not exposed in the UI but can be configured programmatically using EEFPreferences.setTextConflictResolutionMode(). The default preference value can also be overridden by configuration, using the -pluginCustomization startup flag to point to a plugin_customization.ini file with, for example: org.eclipse.eef.ide.ui/TEXT_CONFLICT_RESOLUTION_MODE=USE_LOCAL_VERSION. EEFTextLifecycleManager supports three modes. First, USE_MODEL_VERSION which will overwrite the widget's content with the value computed from the new version of the model (no user feedback). This is the default behavior. Second, USE_LOCAL_VERSION which will keep the current value begin edited by the end-user in the widget (no user feedback). Third, ASK_USER which will open a simple dialog box to ask the user which version to keep. Note that the simple dialog provided is only suitable for short (single-line) text fields. +* Modified Fix an issue with the refresh of list widgets + +h4. Developer-Visible Changes + +* Added The text widget has been modified to add support for the customization of the conflict resolution policy. Conflict resolution can be customized by providing a custom LifecycleManager which extends the default EEFTextLifecycleManager and overrides either askUserToResolveConflict() to take the preference in consideration, but implement ASK_USER differently, for example with a more sophisticated dialog or resolveEditionConflict() to provide a completely different strategy (possibly ignoring the preference). + h3(#eef2.0.0). Changes in EEF 2.0.0 h4. Specifier-Visible Changes @@ -18,6 +29,28 @@ h4. Developer-Visible Changes * Modified The class @org.eclipse.eef.core.api.controllers.AbstractEEFController@ and all its subclasses now require an EditingContextAdapter. * Modified The interface @IConsumer@ has now been replaced by @java.util.Consumer@. +h3(#eef1.9.2). Changes in EEF 1.9.2 + +h4. User-Visible Changes + +* Added A conflict resolution policy has been added to the Text widget. The implementation of the text widget now uses a new preference TEXT_CONFLICT_RESOLUTION_MODE, which is not exposed in the UI but can be configured programmatically using EEFPreferences.setTextConflictResolutionMode(). The default preference value can also be overridden by configuration, using the -pluginCustomization startup flag to point to a plugin_customization.ini file with, for example: org.eclipse.eef.ide.ui/TEXT_CONFLICT_RESOLUTION_MODE=USE_LOCAL_VERSION. EEFTextLifecycleManager supports three modes. First, USE_MODEL_VERSION which will overwrite the widget's content with the value computed from the new version of the model (no user feedback). This is the default behavior. Second, USE_LOCAL_VERSION which will keep the current value begin edited by the end-user in the widget (no user feedback). Third, ASK_USER which will open a simple dialog box to ask the user which version to keep. Note that the simple dialog provided is only suitable for short (single-line) text fields. + +h4. Developer-Visible Changes + +* Added The text widget has been modified to add support for the customization of the conflict resolution policy. Conflict resolution can be customized by providing a custom LifecycleManager which extends the default EEFTextLifecycleManager and overrides either askUserToResolveConflict() to take the preference in consideration, but implement ASK_USER differently, for example with a more sophisticated dialog or resolveEditionConflict() to provide a completely different strategy (possibly ignoring the preference). + +h3(#eef1.9.1). Changes in EEF 1.9.1 + +h4. User-Visible Changes + +* Modified Improved support for permissions. +* Modified Fixed an issue with the label used by the dialogs of the reference widget to improve the support of meta-models with column label providers. +* Modified Fixed an issue where the quick fixes did not trigger a refresh of the whole page. + +h4. Developer-Visible Changes + +* Modified The constructor @org.eclipse.eef.core.api.controllers.AbstractEEFController.AbstractEEFController(IVariableManager, IInterpreter)@ has been deprecated in favor of another constructor with the @EditingContextAdapter@ as an additional parameter. Multiple constructors in various classes which ended up calling this constructor without this new parameter have also been deprecated. They will be removed in EEF 2.0.0. See "this review":https://git.eclipse.org/r/#/c/94543 for the detailled list of the impacted classes. + h3(#eef1.9.0). Changes in EEF 1.9.0 h4. User-Visible Changes -- cgit v1.2.3