Revision: 920
Author: heuermh
Date: Fri Dec 18 13:29:45 2009
Log: updating version to 1.3-beta
http://code.google.com/p/piccolo2d/source/detail?r=920
Modified:
/piccolo2d.java/trunk/ReleaseNotes.txt
/piccolo2d.java/trunk/core/pom.xml
/piccolo2d.java/trunk/examples/pom.xml
/piccolo2d.java/trunk/extras/pom.xml
/piccolo2d.java/trunk/parent/pom.xml
/piccolo2d.java/trunk/pom.xml
/piccolo2d.java/trunk/swt/pom.xml
/piccolo2d.java/trunk/swt-examples/pom.xml
=======================================
--- /piccolo2d.java/trunk/ReleaseNotes.txt Fri Nov 27 11:42:44 2009
+++ /piccolo2d.java/trunk/ReleaseNotes.txt Fri Dec 18 13:29:45 2009
@@ -3,18 +3,11 @@
Major changes:
-Piccolo2D.Java now builds with Apache Maven instead of Apache Ant. See
Issues 6, 28, 29, 38, 44, 51, 52, 98, 104, 108, 109, 126, 128.
+Piccolo2D.Java now builds with Apache Maven instead of Apache Ant. See
Issues 6, 28, 29, 38, 44, 51, 52, 98, 104, 108, 109, 126, 128, 146.
SWT support was refactored from extras into its own module and SWT
examples were refactored from examples into their own module. See Issues
68, 125, 126, 143, 145.
-Many Checkstyle, PMD, and FindBugs errors and warnings have been fixed.
-
-Tool Piccolo2D.Java 1.2.1 Piccolo2D.Java 1.3
-Checkstyle 1 0
-FindBugs 1 0
-PMD 1 0
-
-Unit test coverage has been increased from 0% (Piccolo2D.Java 1.2.1) to 0%
(Piccolo2D.Java 1.3).
+Many Checkstyle, PMD, and FindBugs errors and warnings have been fixed.
Unit test line coverage has been increased to 48%.
Fixed and verified issues:
@@ -27,6 +20,7 @@
10 PComboBox doesn't use Metal, Windows, and Motif look and feels
13 PSwing components cause extraneous redraws
14 PSwing components cause full page re-rendering on add/remove operations
+15 Events from PSwing components are not consumed, and cause other
interactions on the canvas
17 PCanvas looses keyboard events when a child PSwing node has focus
20 Double-buffering not disabled on child PSwing components added after
creation
21 Cannot turn off interacting at the PRoot level
@@ -104,6 +98,7 @@
143 SWTException: Failed to execute runnable (Invalid thread access) for
PSWTCanvasTest on Mac OSX
144 Updates for PSwing
145 build broken (pom, swt)
+150 Prepare SwingLayoutNode for distribution
API changes to core:
=======================================
--- /piccolo2d.java/trunk/core/pom.xml Fri Dec 18 12:35:55 2009
+++ /piccolo2d.java/trunk/core/pom.xml Fri Dec 18 13:29:45 2009
@@ -34,7 +34,7 @@
<parent>
<artifactId>piccolo2d-parent</artifactId>
<groupId>org.piccolo2d</groupId>
- <version>1.3-SNAPSHOT</version>
+ <version>1.3-beta</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<artifactId>piccolo2d-core</artifactId>
=======================================
--- /piccolo2d.java/trunk/examples/pom.xml Fri Nov 27 11:26:19 2009
+++ /piccolo2d.java/trunk/examples/pom.xml Fri Dec 18 13:29:45 2009
@@ -34,7 +34,7 @@
<parent>
<artifactId>piccolo2d-parent</artifactId>
<groupId>org.piccolo2d</groupId>
- <version>1.3-SNAPSHOT</version>
+ <version>1.3-beta</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<artifactId>piccolo2d-examples</artifactId>
=======================================
--- /piccolo2d.java/trunk/extras/pom.xml Fri Dec 18 12:35:55 2009
+++ /piccolo2d.java/trunk/extras/pom.xml Fri Dec 18 13:29:45 2009
@@ -34,7 +34,7 @@
<parent>
<artifactId>piccolo2d-parent</artifactId>
<groupId>org.piccolo2d</groupId>
- <version>1.3-SNAPSHOT</version>
+ <version>1.3-beta</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<artifactId>piccolo2d-extras</artifactId>
=======================================
--- /piccolo2d.java/trunk/parent/pom.xml Fri Dec 18 12:35:55 2009
+++ /piccolo2d.java/trunk/parent/pom.xml Fri Dec 18 13:29:45 2009
@@ -33,7 +33,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.piccolo2d</groupId>
<artifactId>piccolo2d-parent</artifactId>
- <version>1.3-SNAPSHOT</version>
+ <version>1.3-beta</version>
<packaging>pom</packaging>
<name>Piccolo2D Parent</name>
<description>A revolutionary way to create robust, full-featured
graphical applications in Java and C#, with striking visual effects such as
zooming, animation and multiple representations.</description>
=======================================
--- /piccolo2d.java/trunk/pom.xml Wed Oct 28 19:04:29 2009
+++ /piccolo2d.java/trunk/pom.xml Fri Dec 18 13:29:45 2009
@@ -34,7 +34,7 @@
<parent>
<artifactId>piccolo2d-parent</artifactId>
<groupId>org.piccolo2d</groupId>
- <version>1.3-SNAPSHOT</version>
+ <version>1.3-beta</version>
<relativePath>./parent/pom.xml</relativePath>
</parent>
<artifactId>piccolo2d-complete</artifactId>
=======================================
--- /piccolo2d.java/trunk/swt/pom.xml Fri Dec 18 12:35:55 2009
+++ /piccolo2d.java/trunk/swt/pom.xml Fri Dec 18 13:29:45 2009
@@ -34,7 +34,7 @@
<parent>
<artifactId>piccolo2d-parent</artifactId>
<groupId>org.piccolo2d</groupId>
- <version>1.3-SNAPSHOT</version>
+ <version>1.3-beta</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<artifactId>piccolo2d-swt</artifactId>
=======================================
--- /piccolo2d.java/trunk/swt-examples/pom.xml Fri Nov 27 11:26:19 2009
+++ /piccolo2d.java/trunk/swt-examples/pom.xml Fri Dec 18 13:29:45 2009
@@ -34,7 +34,7 @@
<parent>
<artifactId>piccolo2d-parent</artifactId>
<groupId>org.piccolo2d</groupId>
- <version>1.3-SNAPSHOT</version>
+ <version>1.3-beta</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<artifactId>piccolo2d-swt-examples</artifactId>
--
Piccolo2D Developers Group: http://groups.google.com/group/piccolo2d-dev?hl=en