Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Scout/NewAndNoteworthy/5.0"

(Basic Servlet 3.1 support)
(M3)
Line 35: Line 35:
 
   servlet 2.5-3.0 -> org.eclipse.scout.rt.server.servlet25
 
   servlet 2.5-3.0 -> org.eclipse.scout.rt.server.servlet25
 
   servlet 3.1 -> org.eclipse.scout.rt.server.servlet31
 
   servlet 3.1 -> org.eclipse.scout.rt.server.servlet31
 +
 +
=== Distinguish between left-click and right-click on table row ===
 +
{{Bug|443490}} It is now possible to distinguish between left and right-clicks on table rows with :
 +
AbstractTable.execRowClick(ITableRow, MouseButton)
  
 
== M4  ==
 
== M4  ==

Revision as of 04:04, 30 October 2014

The Scout documentation has been moved to https://eclipsescout.github.io/.

This page shows what you need to know about the new Eclipse Scout 5.0 release shipped with Eclipse Mars (Release: Wednesday, June 24, 2015).


M1

  • Planned Scout Version: 4.1
  • Release Date: August 22, 2014 (Build Date: August 20)

[RAP] Multisession Coockiestore Enabled by default

bug 441555 The multisession coockie store for Scout RAP introduced with Scout 4.0 (Scout/NewAndNoteworthy/4.0#Multisession_Cookiestore) is now enabled by default.

M2

  • Planned Scout Version: 4.1
  • Release Date: October 03, 2014 (Build Date: October 01)

M3

  • Planned Scout Version: 4.2
  • Release Date: November 14, 2014 (Build Date: November 12)

[JAX-WS] JAX-WS support for Java 1.8

bug 446478 adds support for Java 1.8 by moving Java runtime-depending code into fragments. Products using org.eclipse.scout.jaxws216 must be extended by one of the following fragments:

 Java 1.6, 1.7 -> org.eclipse.scout.jaxws216.jre16.fragment
 Java 1.8      -> org.eclipse.scout.jaxws216.jre18.fragment

Add the following two properties to your config.ini if you are using an OSGi runtime that is not already defining the execution environment for Java 1.8 (prior Luna release):

 org.osgi.framework.executionenvironment=OSGi/Minimum-1.0,OSGi/Minimum-1.1,OSGi/Minimum-1.2,JRE-1.1,J2SE-1.2,J2SE-1.3,J2SE-1.4,J2SE-1.5,JavaSE-1.6,JavaSE-1.7,JavaSE-1.8
 org.osgi.framework.system.capabilities.extra=osgi.ee; osgi.ee="JavaSE";version:List<Version>="1.8"

Servlet 3.1 support

bug 433736 adds basic support for running Scout with a servlet 3.1. New servlet 3.1 features are used yet.

For an existing project add one of the following plugins to your server product file:

 servlet 2.5-3.0 -> org.eclipse.scout.rt.server.servlet25
 servlet 3.1 -> org.eclipse.scout.rt.server.servlet31

Distinguish between left-click and right-click on table row

bug 443490 It is now possible to distinguish between left and right-clicks on table rows with :

AbstractTable.execRowClick(ITableRow, MouseButton)

M4

  • Planned Scout Version: 4.2
  • Release Date: December 19, 2014 (Build Date: December 17)

M5

  • Planned Scout Version: 5.0
  • Release Date: February 06, 2015 (Build Date: February 04)

M6

  • Planned Scout Version: 5.0
  • Release Date: March 27, 2015 (Build Date: March 25)

M7

  • Planned Scout Version: 5.0
  • Release Date: May 08 , 2015 (Build Date: May 06)

RC1

  • Planned Scout Version: 5.0
  • Release Date: May 22, 2015 (Build Date: May 20)

RC2

  • Planned Scout Version: 5.0
  • Release Date: May 29, 2015 (Build Date: May 27)

RC3

  • Planned Scout Version: 5.0
  • Release Date: June 05, 2015 (Build Date: June 03)

RC4

  • Planned Scout Version: 5.0
  • Release Date: June 12, 2015 (Build Date: June 10)

Back to the top