Skip to main content
summaryrefslogtreecommitdiffstats
blob: 20732911585e86d72ed3f1ddc0b9389aad39e412 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
h2. Release Notes for Eclipse EEF

{toc:style=disc|minLevel=2|maxLevel=3}

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

h3(#eef1.9.1). Changes in EEF 1.9.1

h4. User-Visible Changes

* <span class="label label-info">Modified</span> Improved support for permissions.
* <span class="label label-info">Modified</span> 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.
* <span class="label label-info">Modified</span> Fixed an issue where the quick fixes did not trigger a refresh of the whole page.

h4. Developer-Visible Changes

* <span class="label label-info">Modified</span> 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

* <span class="label label-success">Added</span> Add support for permissions with locks

h3(#eef1.8.0). Changes in EEF 1.8.0

h4. Specifier-Visible Changes

* <span class="label label-info">Modified</span> The selection variable of the hyperlink widget now refers properly to the value of the hyperlink.

h4. Developer-Visible Changes

* <span class="label label-info">Modified</span> The interfaces of the controllers for the default widget will now return an IStatus in order to support potential issues after the execution of the callback.


h3(#eef1.7.2). Changes in EEF 1.7.2

h4. Specifier-Visible Changes

* <span class="label label-info">Modified</span> The dynamic mappings will take into account all the "if" blocks with a valid predicate expression and not only the first one.
* <span class="label label-info">Modified</span> Fixed an issue with the enablement of the widget actions of the reference widget.


h3(#eef1.7.1). Changes in EEF 1.7.1

h4. Specifier-Visible Changes 

* <span class="label label-info">Modified</span> Fixed an issue where the variable @input@ was not available for some expressions in the select and radio widget.
* <span class="label label-info">Modified</span> Improve the documentation of the available extension points

h4. Developer-Visible Changes

* <span class="label label-success">Added</span> Added the documentation of the IEEFTabDescriptorFilter and IEEFExtReferenceViewerFilterProvider extension points.
* <span class="label label-info">Modified</span> Revert the lazy evaluation of the candidates of the select widget.

h3(#eef1.7.0). Changes in EEF 1.7.0

h4. User-Visible Changes

* <span class="label label-success">Added</span> Labels and hyperlinks can now have buttons on their right side.
* <span class="label label-info">Modified</span> Trigger the @editExpression@ of a single line text widget on @enter@.

h4. Specifier-Visible Changes

* <span class="label label-success">Added</span> A brand new widget outside of the default library is now available to edit references using an easier approach. Only the name of the reference to edit is necessary and the rest will be computed by the EEF runtime.
* <span class="label label-success">Added</span> Widget actions are now available on labels and hyperlinks.
* <span class="label label-success">Added</span> Labels and hyperlinks now have a displayExpression. If unused, the result of the valueExpression will be converted to a string using the @java.lang.Object#toString()@ operation.
* <span class="label label-success">Added</span> A new widget named List has been added, it has the same behavior as the multiple reference widget of the previous release.
* <span class="label label-info">Modified</span> The edit operation of a text field can now be triggered by the loss of focus on the text field.
* <span class="label label-info">Modified</span> The edit operation of a mono-line text field can now be triggered by pressing enter.
* <span class="label label-info">Modified</span> A selection variable is available in the hyperlink widget, it is equals to the value of the hyperlink instead of self.

h4. Developer-Visible Changes

* <span class="label label-info">Modified</span> The interface @org.eclipse.eef.core.api.EditingContextAdapter@ has now a new method @getEditingDomain()@ which is used to return an EditingDomain for the EEF runtime.
* <span class="label label-info">Modified</span> The constructor of the EEFLabelController now requires an EditingContextAdapter to run the expression of the widget actions.
* <span class="label label-success">Added</span> The class EEFStyleHelper is now API in order to help support style and conditional styles for custom widgets. Developers will need to override org.eclipse.eef.ide.ui.api.widgets.AbstractEEFWidgetLifecycleManager.getEEFStyleHelper() to provide their own implementation. The easiest way will need to extend the regular implementation and modify the three switchs to provide using the dedicated getters.


h3(#eef1.6.2). Changes in EEF 1.6.2

h4. User-Visible Changes

* <span class="label label-info">Modified</span> Trigger the @editExpression@ of a text widget on focus lost.

h3(#eef1.6.1). Changes in EEF 1.6.1

h4. Non-Visible Changes

* <span class="label label-info">Modified</span> Fixed a memory leak when selecting other editors.
* <span class="label label-info">Modified</span> Fixed an issue the refresh of the Properties view with an EMF proxy

h3(#eef1.6.0). Changes in EEF 1.6.0

h4. User-Visible Changes

* <span class="label label-success">Added</span> The user interface has been recreated from scratch with a new runtime. As a result multiple changes can be visible in the user interface.

h4. Specifier-Visible Changes

* <span class="label label-success">Added</span> A brand new "language":language/overview.html is available to create your user interface. Have a look at the documentation for additional details.

h4. Developer-Visible Changes

* <span class="label label-success">Added</span> A brand new API is available to create your user interface. Have a look at the documentation for additional details.

Back to the top