Skip to content

Commit

Permalink
PIVOT-895, update requirements in build files and in readme, and clea…
Browse files Browse the repository at this point in the history
…nup release notes

git-svn-id: https://svn.apache.org/repos/asf/pivot/trunk@1511135 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Sandro Martini committed Aug 6, 2013
1 parent 2e6f7b7 commit c1da481
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 50 deletions.
16 changes: 9 additions & 7 deletions BUILD
@@ -1,10 +1,10 @@
System Requirements
===================

* JDK 1.6 or greater (http://java.sun.com/)
* Ant 1.7 or greater (http://ant.apache.org/)
* JUnit 4.3 or greater (http://www.junit.org/)
* Maven Ant Tasks 2.0.10 or greater (http://maven.apache.org/) (optional)
* JDK 1.7 or greater (http://java.sun.com/)
* Ant 1.8 or greater (http://ant.apache.org/)
* JUnit 4.8.2 or greater (http://www.junit.org/)
* Maven Ant Tasks 2.1.3 or greater (http://maven.apache.org/) (optional)

Project Set-Up
==============
Expand All @@ -23,10 +23,12 @@ Project Set-Up
Mac OS X:
http://developer.apple.com/qa/qa2004/qa1364.html

IMPORTANT This document has not been updated for Java 6 on Mac OS X. Under
Java 6, this file is located in the following directory:
IMPORTANT This document has not been updated for Java on Mac OS X.

/System/Library/Frameworks/JavaVM.framework/Resources/Deploy.bundle/Contents/Home/lib

Using Java 7, ensure to have jfxrt.jar file excluded from compile classpath
(build files are already setup for this), or build errors will happen
(due to duplicate class in classpath).

* Ensure that the JNLP APIs are on your classpath; follow the same process as
described in the previous step, substituting javaws.jar for plugin.jar.
Expand Down
4 changes: 2 additions & 2 deletions README
Expand Up @@ -63,14 +63,14 @@ distribution.
Dependencies
============

* Pivot requires Java 6 or greater.
* Pivot requires Java 7 or greater.

* Pivot's charting components require a compatible chart provider. No such
provider is included in this release, but one is available here:

http://code.google.com/a/apache-extras.org/p/pivot-jfree/

Version 2.0 of this provider is compatible with Pivot 2.0.x. Please note that
Version 2.1 of this provider is compatible with Pivot 2.1.x. Please note that
this provider has a dependency on JFreeChart, which is licensed under LGPL.

* SVG support requires SVG Salamander, which is licensed under a dual LGPL/BSD
Expand Down
37 changes: 1 addition & 36 deletions RELEASE-NOTES
Expand Up @@ -15,48 +15,13 @@
limitations under the License.
================================================================================

Release Notes for Pivot 2.0.3:
Release Notes for Pivot 2.1.0:

** New Feature
* [PIVOT-455] - Add an alignment style to TerraTextInputSkin
* [PIVOT-731] - Ignore Flag for controls within a Rollup Heading
* [PIVOT-834] - Form.getSection(Component) to return the section for nested components

** Improvement
* [PIVOT-536] - BXMLSerializer should provide a structure error object when a serializer error occurs
* [PIVOT-558] - BeanAdapter should have a putAll method to allow multiple property set in one method call...especially useful when setting properties from a JSON string
* [PIVOT-679] - TableViewImageCellRenderer should render disabled rows with an opacity of 0.5f
* [PIVOT-783] - Calling setScale on scaleDecorator doesn't update the display
* [PIVOT-784] - Improvement in clear() and clearSelection() methods in some components
* [PIVOT-857] - Add activity indicator to file browser while loading a directory
* [PIVOT-867] - Ability to selectively enable/disable a Tree node
* [PIVOT-870] - Small improvements in BXMLSerializer for interacting with JavaScript (inside the JVM)
* [PIVOT-875] - JSON should support using pivot.collections.Map directly
* [PIVOT-879] - Need access to Displays list in order to support multiple host windows
* [PIVOT-883] - Update Javadoc for ComponentStateListener method arguments
* [PIVOT-889] - Allow newline to do hard break in Label text when wrapping
* [PIVOT-893] - Set lower default value for maximumLength in TextInput and TextArea
* [PIVOT-896] - do not allow to set text to null in Labels

** Bug
* [PIVOT-655] - FileBrowserSheet save dialog appends the saveas field content to the selected folders/file
* [PIVOT-721] - ButtonDataRenderer#setFillIcon has no effect, because its BoxPane doesn't have fill style
* [PIVOT-781] - Unable to get an initially maximized HostFrame in DesktopApplicationContext due to bug in Java 6 under ubuntu/linux
* [PIVOT-843] - Copy Paste issues with CF_DIB clipboard type image
* [PIVOT-859] - Multi-page applet failed to route to respond
* [PIVOT-860] - CPU Usage at 100% when displaying an Expander
* [PIVOT-861] - Memory leak: Window icon ImageListenerList retains reference to closed windows, preventing garbage collection
* [PIVOT-862] - FileBrowser [Sheet] display the contents of the root instead of actual folder in some circumstancies
* [PIVOT-865] - Crash in Save, As dialog when path + filename entered in text field
* [PIVOT-872] - Build error with JDK 7 Update 7
* [PIVOT-874] - StockTracker: removing multiple symbols may remove unselected ones too
* [PIVOT-876] - When user presses the tab key the applet loses focus and never regains it
* [PIVOT-880] - NPE when calling FileBrowser.setRootDirectory using a UNC path
* [PIVOT-887] - Tutorial example code for NumericSpinnerData doesn't work as shown
* [PIVOT-888] - Nullpointer Exception while editing TextArea with text property two-way bounded
* [PIVOT-892] - DoubleValidator and FloatValidator do not allow exponents to be entered
* [PIVOT-898] - fillIcon in buttons seems to let images display with wrong dimension
* [PIVOT-901] - List Buttons are rendered very thin when there is no list item selected or when item with empty string is selected

** Task

Expand Down
10 changes: 5 additions & 5 deletions build.xml
Expand Up @@ -89,13 +89,13 @@ limitations under the License.
<fail>
<condition>
<not>
<antversion atleast="1.7.0"/>
<antversion atleast="1.8.0"/>
</not>
</condition>
<![CDATA[
Error:
Building Pivot requires Apache Ant 1.7 or greater. Please see the BUILD
Building Pivot requires Apache Ant 1.8 or greater. Please see the BUILD
file for more information.
]]>
</fail>
Expand Down Expand Up @@ -323,7 +323,7 @@ limitations under the License.

<packageset dir="@{project}/src" includes="**/*"/>

<link href="http://download.oracle.com/javase/6/docs/api"/>
<link href="http://download.oracle.com/javase/7/docs/api"/>
<link href="http://download.oracle.com/javaee/1.4/api/"/>
</javadoc>

Expand Down Expand Up @@ -481,7 +481,7 @@ limitations under the License.
<packageset dir="wtk/src" includes="**/*"/>
<packageset dir="wtk-terra/src" includes="**/*"/>

<link href="http://download.oracle.com/javase/6/docs/api"/>
<link href="http://download.oracle.com/javase/7/docs/api"/>
<link href="http://download.oracle.com/javaee/1.4/api/"/>
</javadoc>
</target>
Expand Down Expand Up @@ -657,7 +657,7 @@ limitations under the License.

<!-- Generate deployment files -->
<target name="deploy" depends="package">
<!-- Copy library depenencies lib directory -->
<!-- Copy library dependencies lib directory -->
<copy todir="${folder.lib}">
<fileset dir="wtk/lib">
<include name="*.jar"/>
Expand Down

0 comments on commit c1da481

Please sign in to comment.