diff options
author | Artur Signell <artur.signell@itmill.com> | 2010-12-07 13:36:17 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2010-12-07 13:36:17 +0000 |
commit | 92d7c2cf64d4bf664dfb0328d1615dbad6fd6084 (patch) | |
tree | 96cd879df2071239893a506ee77576cb2a5525c4 | |
parent | 8c3762b55b20ffc7c264f763cb587efc0cc2516b (diff) | |
download | vaadin-framework-92d7c2cf64d4bf664dfb0328d1615dbad6fd6084.tar.gz vaadin-framework-92d7c2cf64d4bf664dfb0328d1615dbad6fd6084.zip |
Minor restructuring and mention of TwinColSelect dual captions
svn changeset:16361/svn branch:6.5
-rw-r--r-- | WebContent/release-notes.html | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/WebContent/release-notes.html b/WebContent/release-notes.html index 8e65d21033..480c69be9f 100644 --- a/WebContent/release-notes.html +++ b/WebContent/release-notes.html @@ -43,9 +43,9 @@ contains a number of significant enhancements.</p> <li>Implemented server-side logging using java.util.logging, allowing you to specify loglevels and get rid of unnecessary messages. See <a href="http://dev.vaadin.com/ticket/5715">#5715</a> for more info. </li> - <li>ItemClickSource has been renamed to ItemClickNotifier for consistency with other classes.</li> <li>GWT has been updated to version 2.1.0</li> <li>Widgetset builder has been optimized to only look for paintables in Vaadin add-on jars (containing an add-on manifest). If you are packaging your own widgets into jar file, ensure they also contain the <a href="http://dev.vaadin.com/wiki/VaadinAddon">Vaadin add-on manifest</a>.</li> + <li>TwinColSelect supports separate captions for the right and left selects (<a href="http://dev.vaadin.com/ticket/2942">#2942</a>)</li> </ul> <h3>Backward Incompatible API Changes</h3> @@ -66,14 +66,20 @@ contains a number of significant enhancements.</p> <h3>Backwards compatible API Changes</h3> -<p>The following backwards compatible class/method changes have been:</p> +<p>The following backwards compatible class/method changes have been made:</p> <ul> <li>SplitPanel has been deprecated in favor of VerticalSplitPanel and HorizontalSplitPanel.</li> - <li>PasswordField has been split from TextField to a separate component. As a result TextField.setSecret has been deprecated.</li> <li>TextArea has been split from TextField to a separate component. As a result TextField.setRows has been deprecated.</li> + <li>PasswordField has been split from TextField to a separate component. As a result TextField.setSecret has been deprecated.</li> + <li>Button.setSwitchMode has been deprecated in favor of CheckBox. Remember to set CheckBox in immediate mode.</li> + <li>ItemClickSource has been renamed to ItemClickNotifier for consistency with other classes.</li> +</ul> + +<p>The following backwards incompatible class/method changes have been made:</p> + +<ul> <li>RichTextArea no longer extends TextField as it cannot implement a large part of the TextField API.</li> - <li>Button.setSwitchMode has been deprecated in favor of CheckBox.</li> </ul> <h3>Theme changes</h3> @@ -88,6 +94,8 @@ contains a number of significant enhancements.</p> can be styled by the <pre>.v-table-sort-indicator</pre> selector. Sort indicator images can thus no longer be placed in the <pre>.v-table-caption-container</pre> DIV.</li> </ul> + <li>TwinColSelect DOM structure has changed slightly to support captions for the left and right column.</li> + <li>TwinColSelect now supports .v-select-twincol-options-caption and .v-select-twincol-selections-caption for the left and right captions.</li> </ul> <p>New themeing possibilities:</p> |