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/Migration/3.8"

(3.8.0)
(Replaced content with "The Scout documentation has been moved to https://eclipsescout.github.io/.")
 
(23 intermediate revisions by 5 users not shown)
Line 1: Line 1:
The tables below lists all implemented tickets that require specific upgrade actions for applications based on Scout 3.7 to migrate to Scout 3.8.
+
The Scout documentation has been moved to https://eclipsescout.github.io/.
== 3.8.0 ==
+
{| width="100%" {{prettytable}}
+
|-valign="top"
+
!width="10%" align="left" bgcolor="#bbbbbb"|Fixed
+
!width="5%" align="left" bgcolor="#bbbbbb"|Bugzilla
+
!width="60%" align="left" bgcolor="#bbbbbb"|Subject
+
!width="20%" align="left" bgcolor="#bbbbbb"|Component
+
|-valign="top"
+
|2011-10-25
+
|[https://bugs.eclipse.org/bugs/show_bug.cgi?id=361816 361816]
+
|Replace current NLS support with Text Provider Services ([https://dev.eclipse.org/svnroot/technology/org.eclipse.scout/scout.rt/trunk/org.eclipse.scout.rt.client/Release%20Notes.txt release notes])
+
|Client, Shared, Server
+
|-
+
|2011-10-26
+
|[https://bugs.eclipse.org/bugs/show_bug.cgi?id=361795 361795]
+
|Decorater in columns (AbstractDateColumn, AbstractLongColumn, ...) ([https://dev.eclipse.org/svnroot/technology/org.eclipse.scout/scout.rt/trunk/org.eclipse.scout.commons/Release%20Notes.txt release notes])
+
|Client, Shared, Server, Commons, Swing
+
|-
+
|2011-11-28
+
|[https://bugs.eclipse.org/bugs/show_bug.cgi?id=364019 364019]
+
|AbstractTable Add possibility to prevent Ctrl+C ([https://dev.eclipse.org/svnroot/technology/org.eclipse.scout/scout.rt/trunk/org.eclipse.scout.commons/Release%20Notes.txt release notes])
+
|SWT, Swing
+
|-
+
|2012-01-26
+
|[https://bugs.eclipse.org/bugs/show_bug.cgi?id=369115 369115]
+
|Locale on client-side ([https://dev.eclipse.org/svnroot/technology/org.eclipse.scout/scout.rt/trunk/org.eclipse.scout.rt.client/Release%20Notes.txt release notes])
+
|Client
+
|-
+
|2012-04-10
+
|[https://bugs.eclipse.org/bugs/show_bug.cgi?id=361985 361985]
+
|ITable: more flexibility to discard deleted rows in tables ([https://dev.eclipse.org/svnroot/technology/org.eclipse.scout/scout.rt/trunk/org.eclipse.scout.rt.client/Release%20Notes.txt release notes])
+
|Client
+
|-
+
|2011-11-11
+
|[https://bugs.eclipse.org/bugs/show_bug.cgi?id=345184 345184]
+
|SwingScoutRootFrame should adhere Java LAF ([https://dev.eclipse.org/svnroot/technology/org.eclipse.scout/scout.rt/trunk/org.eclipse.scout.rt.ui.swing/Release%20Notes.txt release notes])
+
|Swing
+
|-
+
|}
+
 
+
== 3.8.1 ==
+
 
+
{| width="100%" {{prettytable}}
+
|-valign="top"
+
!width="10%" align="left" bgcolor="#bbbbbb"|Fixed
+
!width="5%" align="left" bgcolor="#bbbbbb"|Bugzilla
+
!width="60%" align="left" bgcolor="#bbbbbb"|Subject
+
!width="20%" align="left" bgcolor="#bbbbbb"|Component
+
|-valign="top"
+
|2012-06-04
+
|[https://bugs.eclipse.org/bugs/show_bug.cgi?id=378826 378826]
+
|SWT: Disposing display can cause Deadlock while all waiting jobs are processed.
+
|SWT, Swing, Rap, Busy Handler
+
|-
+
|}
+
 
+
== Eclipse Releated Migrations affecting Scout Projects ==
+
 
+
Jetty Plugins been changed (see also http://download.eclipse.org/eclipse/downloads/drops4/S-4.2M4-201112092100/eclipse-news-M4.html#Equinox). Therefore the plugin.xml of the server plugin needs to be updated:
+
 
+
Remove the plugins:
+
      <plugin id="org.mortbay.jetty.server"/>
+
      <plugin id="org.mortbay.jetty.util"/>
+
 
+
Add the plugins:
+
      <plugin id="org.eclipse.jetty.continuation"/>
+
      <plugin id="org.eclipse.jetty.http"/>
+
      <plugin id="org.eclipse.jetty.io"/>
+
      <plugin id="org.eclipse.jetty.security"/>
+
      <plugin id="org.eclipse.jetty.server"/>
+
      <plugin id="org.eclipse.jetty.servlet"/>
+
      <plugin id="org.eclipse.jetty.util"/>
+

Latest revision as of 06:25, 19 March 2024

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

Back to the top