Skip to content

Commit

Permalink
Feldspar 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kirill-grouchnikov committed Jun 17, 2021
1 parent 2d54ec9 commit 32b2fae
Show file tree
Hide file tree
Showing 66 changed files with 52 additions and 42 deletions.
2 changes: 1 addition & 1 deletion ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### Version of Radiance (current development is 4.0-SNAPSHOT)
### Version of Radiance (current development is 4.0.0)

### Sub-project (Neon, Trident, Substance, Flamingo, ...)

Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

version = '4.0-SNAPSHOT'
version = '4.0.0'
ext.codename = 'Feldspar'
ext.isRelease = false
ext.isRelease = true

buildscript {
ext {
// Build dependencies
gradle_version = '7.0.2'
gradle_version = '7.1'

// Core dependencies
kotlin_version = '1.5.10'
Expand Down
2 changes: 1 addition & 1 deletion docs/building.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Some Radiance libraries have third-party dependencies. To print the full depende
```
------------------ photon -------------------
org.apache.xmlgraphics:batik-all:1.12
org.pushing-pixels:neon:4.0-SNAPSHOT
org.pushing-pixels:neon:4.0.0
```

To locally copy these dependencies (in case you do not want to pull them at build time with Gradle, Maven or other similar build tools in your own environment), use the following:
Expand Down
16 changes: 13 additions & 3 deletions docs/photon/photon.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ The `SvgBatchConverter` class is the entry point into the offline batch converte

Assuming your `RADIANCE_VERSION` variable points to the latest version of the Radiance libraries, here is how you would run the converter pipeline for a single SVG source folder (note that the dependencies versions need to match the Radiance version, see [the list below](#dependency-versions-for-photon)):

<code>java <b>-cp</b> ../drop/$RADIANCE_VERSION/core/radiance-photon-$RADIANCE_VERSION.jar:../build/libs-core/batik-all-1.12.jar:../build/libs-core/xml-apis-1.4.01.jar:../build/libs-core/xml-apis-ext-1.4.01.jar:../build/libs-core/xmlgraphics-commons-2.4.jar org.pushingpixels.photon.api.transcoder.SvgBatchConverter <b>sourceFolder=</b>../demos/flamingo-demo/src/main/java/org/pushingpixels/demo/flamingo/svg/tango/transcoded <b>outputPackageName=</b>org.pushingpixels.demo.flamingo.svg.tango.transcoded <b>templateFile=</b>/org/pushingpixels/photon/api/transcoder/java/SvgTranscoderTemplateResizable.templ <b>outputLanguage=</b>java</code>
<code>java <b>-cp</b> ../drop/$RADIANCE_VERSION/core/radiance-photon-$RADIANCE_VERSION.jar:../build/libs-core/batik-all-1.14.jar:../build/libs-core/xml-apis-1.4.01.jar:../build/libs-core/xml-apis-ext-1.4.01.jar:../build/libs-core/xmlgraphics-commons-2.6.jar org.pushingpixels.photon.api.transcoder.SvgBatchConverter <b>sourceFolder=</b>../demos/flamingo-demo/src/main/java/org/pushingpixels/demo/flamingo/svg/tango/transcoded <b>outputPackageName=</b>org.pushingpixels.demo.flamingo.svg.tango.transcoded <b>templateFile=</b>/org/pushingpixels/photon/api/transcoder/java/SvgTranscoderTemplateResizable.templ <b>outputLanguage=</b>java</code>

The first part is enumerating all the jar files required for the converter - Photon and Batik. In this sample script, the Photon jar is under `drop` folder after running the `gradlew copyJars` command. The Batik dependencies are under `build/libs-core` after running the `gradlew getCoreDependencies` command.

Expand All @@ -59,7 +59,7 @@ The `SvgDeepBatchConverter` class is the entry point into the offline recursive

Assuming your `RADIANCE_VERSION` variable points to the latest version of the Radiance libraries, here is how you would run the converter pipeline recursively for all SVG files under a folder (note that the dependencies versions need to match the Radiance version, see [the list below](#dependency-versions-for-photon)):

<code>java <b>-cp</b> ../drop/$RADIANCE_VERSION/core/radiance-photon-$RADIANCE_VERSION.jar:../build/libs-core/batik-all-1.12.jar:../build/libs-core/xml-apis-1.4.01.jar:../build/libs-core/xml-apis-ext-1.4.01.jar:../build/libs-core/xmlgraphics-commons-2.4.jar org.pushingpixels.photon.api.transcoder.SvgDeepBatchConverter <b>sourceRootFolder=</b>../demos/spyglass/src/main/java/org/pushingpixels/demo/spyglass/ <b>outputRootPackageName=</b>org.pushingpixels.demo.spyglass <b>templateFile=</b>/org/pushingpixels/photon/api/transcoder/java/SvgTranscoderTemplateResizable.templ <b>outputLanguage=</b>java</code>
<code>java <b>-cp</b> ../drop/$RADIANCE_VERSION/core/radiance-photon-$RADIANCE_VERSION.jar:../build/libs-core/batik-all-1.14.jar:../build/libs-core/xml-apis-1.4.01.jar:../build/libs-core/xml-apis-ext-1.4.01.jar:../build/libs-core/xmlgraphics-commons-2.6.jar org.pushingpixels.photon.api.transcoder.SvgDeepBatchConverter <b>sourceRootFolder=</b>../demos/spyglass/src/main/java/org/pushingpixels/demo/spyglass/ <b>outputRootPackageName=</b>org.pushingpixels.demo.spyglass <b>templateFile=</b>/org/pushingpixels/photon/api/transcoder/java/SvgTranscoderTemplateResizable.templ <b>outputLanguage=</b>java</code>

The first part is enumerating all the jar files required for the converter - Photon and Batik. In this sample script, the Photon jar is under `drop` folder after running the `gradlew copyJars` command. The Batik dependencies are under `build/libs-core` after running the `gradlew getCoreDependencies` command.

Expand Down Expand Up @@ -122,10 +122,20 @@ The following table summarizes the level of support for different SVG elements.

### Dependency versions for Photon

* For **4.0.0**, use
* `batik-all-1.14.jar`
* `xml-apis-1.4.01.jar`
* `xml-apis-ext-1.3.04.jar`
* `xmlgraphics-commons-2.6.jar`
* For **3.5.1**, use
* `batik-all-1.13.jar`
* `xml-apis-1.4.01.jar`
* `xml-apis-ext-1.3.04.jar`
* `xmlgraphics-commons-2.4.jar`
* For **3.0.0**, use
* `batik-all-1.13.jar`
* `xml-apis-1.4.01.jar`
* `xml-apis-ext-1.4.01.jar`
* `xml-apis-ext-1.3.04.jar`
* `xmlgraphics-commons-2.4.jar`
* For **2.5.1**, use
* `batik-all-1.11.jar`
Expand Down
4 changes: 2 additions & 2 deletions docs/tools/lightbeam/lightbeam.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Now configure the specific version of Java runtime that you want to test under a

``` export JAVA_HOME=`/usr/libexec/java_home -v 9` ```

`RADIANCE_VERSION=4.0-SNAPSHOT`
`RADIANCE_VERSION=4.0.0`

`CLASSPATH=./drop/$RADIANCE_VERSION/tools/radiance-lightbeam-$RADIANCE_VERSION.jar:./build/libs-tools/jgoodies-forms-1.9.0.jar:./build/libs-tools/jgoodies-common-1.8.1.jar`

Expand Down Expand Up @@ -49,7 +49,7 @@ With this, you can compare the performance of your look-and-feel with that of co

``` export JAVA_HOME=`/usr/libexec/java_home -v 9` ```

`RADIANCE_VERSION=4.0-SNAPSHOT`
`RADIANCE_VERSION=4.0.0`

`CLASSPATH=../../drop/$RADIANCE_VERSION/tools/radiance-lightbeam-$RADIANCE_VERSION.jar:../../build/libs-tools/jgoodies-forms-1.9.0.jar:../../build/libs-tools/jgoodies-common-1.8.1.jar`

Expand Down
2 changes: 1 addition & 1 deletion docs/tools/zodiac/zodiac.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ For example, to run Zodiac to create screenshots for the Autumn skin:

`alias JAVA="java"`

`RADIANCE_VERSION=4.0-SNAPSHOT`
`RADIANCE_VERSION=4.0.0`

`KOTLIN_VERSION=1.4.30`

Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added drop/4.0.0/demo/radiance-neon-demo-4.0.0.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ org.gradle.vfs.watch=true
org.gradle.jvmargs=-XX:+UseParallelGC

GROUP=org.pushing-pixels
VERSION_NAME=4.0-SNAPSHOT
VERSION_NAME=4.0.0

POM_DESCRIPTION=Building modern, elegant and fast Swing applications

Expand Down
4 changes: 2 additions & 2 deletions scripts/convert-svg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
export JAVA_HOME=`/usr/libexec/java_home -v 9`
alias JAVA="java"

RADIANCE_VERSION=4.0-SNAPSHOT
CLASSPATH=../drop/$RADIANCE_VERSION/core/radiance-photon-$RADIANCE_VERSION.jar:../build/libs-core/batik-all-1.13.jar:../build/libs-core/xml-apis-1.4.01.jar:../build/libs-core/xml-apis-ext-1.3.04.jar:../build/libs-core/xmlgraphics-commons-2.4.jar
RADIANCE_VERSION=4.0.0
CLASSPATH=../drop/$RADIANCE_VERSION/core/radiance-photon-$RADIANCE_VERSION.jar:../build/libs-core/batik-all-1.14.jar:../build/libs-core/xml-apis-1.4.01.jar:../build/libs-core/xml-apis-ext-1.3.04.jar:../build/libs-core/xmlgraphics-commons-2.6.jar

java -cp $CLASSPATH org.pushingpixels.photon.api.transcoder.SvgBatchConverter sourceFolder=../demos/plasma-demo/src/main/kotlin/org/pushingpixels/demo/plasma/svg outputPackageName=org.pushingpixels.demo.plasma.svg templateFile=/org/pushingpixels/photon/api/transcoder/kotlin/SvgTranscoderTemplateResizable.templ outputLanguage=kotlin

Expand Down
2 changes: 1 addition & 1 deletion scripts/lightbeam/auto-dynamic-darcula.bat
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
:: OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
:: EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

set RADIANCE_VERSION=4.0-SNAPSHOT
set RADIANCE_VERSION=4.0.0
set CLASSPATH=../../drop/%RADIANCE_VERSION%/tools/radiance-lightbeam-%RADIANCE_VERSION%.jar;../../build/libs-tools/jgoodies-forms-1.9.0.jar;../../build/libs-tools/jgoodies-common-1.8.1.jar
set DARCULA_CLASSPATH=../../../thirdparty/darcula.jar

Expand Down
2 changes: 1 addition & 1 deletion scripts/lightbeam/auto-dynamic-darcula.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
export JAVA_HOME=`/usr/libexec/java_home -v 9`
alias JAVA="java"

RADIANCE_VERSION=4.0-SNAPSHOT
RADIANCE_VERSION=4.0.0
CLASSPATH=../../drop/$RADIANCE_VERSION/tools/radiance-lightbeam-$RADIANCE_VERSION.jar:../../build/libs-tools/jgoodies-forms-1.9.0.jar:../../build/libs-tools/jgoodies-common-1.8.1.jar
DARCULA_CLASSPATH=../../../thirdparty/darcula.jar

Expand Down
2 changes: 1 addition & 1 deletion scripts/lightbeam/auto-dynamic-darklaf.bat
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
:: OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
:: EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

set RADIANCE_VERSION=4.0-SNAPSHOT
set RADIANCE_VERSION=4.0.0
set CLASSPATH=../../drop/%RADIANCE_VERSION%/tools/radiance-lightbeam-%RADIANCE_VERSION%.jar;../../build/libs-tools/jgoodies-forms-1.9.0.jar;../../build/libs-tools/jgoodies-common-1.8.1.jar
set DARKLAF_CLASSPATH=../../../thirdparty/darklaf/*

Expand Down
2 changes: 1 addition & 1 deletion scripts/lightbeam/auto-dynamic-darklaf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
export JAVA_HOME=`/usr/libexec/java_home -v 9`
alias JAVA="java"

RADIANCE_VERSION=4.0-SNAPSHOT
RADIANCE_VERSION=4.0.0
CLASSPATH=../../drop/$RADIANCE_VERSION/tools/radiance-lightbeam-$RADIANCE_VERSION.jar:../../build/libs-tools/jgoodies-forms-1.9.0.jar:../../build/libs-tools/jgoodies-common-1.8.1.jar
DARKLAF_CLASSPATH=../../../thirdparty/darklaf/*

Expand Down
2 changes: 1 addition & 1 deletion scripts/lightbeam/auto-dynamic-flatlaf.bat
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
:: OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
:: EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

set RADIANCE_VERSION=4.0-SNAPSHOT
set RADIANCE_VERSION=4.0.0
set CLASSPATH=../../drop/%RADIANCE_VERSION%/tools/radiance-lightbeam-%RADIANCE_VERSION%.jar;../../build/libs-tools/jgoodies-forms-1.9.0.jar;../../build/libs-tools/jgoodies-common-1.8.1.jar
set FLATLAF_CLASSPATH=../../../thirdparty/flatlaf-0.37.jar

Expand Down
2 changes: 1 addition & 1 deletion scripts/lightbeam/auto-dynamic-flatlaf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
export JAVA_HOME=`/usr/libexec/java_home -v 9`
alias JAVA="java"

RADIANCE_VERSION=4.0-SNAPSHOT
RADIANCE_VERSION=4.0.0
CLASSPATH=../../drop/$RADIANCE_VERSION/tools/radiance-lightbeam-$RADIANCE_VERSION.jar:../../build/libs-tools/jgoodies-forms-1.9.0.jar:../../build/libs-tools/jgoodies-common-1.8.1.jar
FLATLAF_CLASSPATH=../../../thirdparty/flatlaf-0.37.jar

Expand Down
2 changes: 1 addition & 1 deletion scripts/lightbeam/auto-dynamic-metal.bat
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
:: OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
:: EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

set RADIANCE_VERSION=4.0-SNAPSHOT
set RADIANCE_VERSION=4.0.0
set CLASSPATH=../../drop/%RADIANCE_VERSION%/tools/radiance-lightbeam-%RADIANCE_VERSION%.jar;../../build/libs-tools/jgoodies-forms-1.9.0.jar;../../build/libs-tools/jgoodies-common-1.8.1.jar

"%JAVA_HOME%"\bin\java -Dswing.defaultlaf=javax.swing.plaf.metal.MetalLookAndFeel -cp %CLASSPATH% org.pushingpixels.lightbeam.DynamicPerformanceSuite 10
2 changes: 1 addition & 1 deletion scripts/lightbeam/auto-dynamic-metal.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
export JAVA_HOME=`/usr/libexec/java_home -v 9`
alias JAVA="java"

RADIANCE_VERSION=4.0-SNAPSHOT
RADIANCE_VERSION=4.0.0
CLASSPATH=../../drop/$RADIANCE_VERSION/tools/radiance-lightbeam-$RADIANCE_VERSION.jar:../../build/libs-tools/jgoodies-forms-1.9.0.jar:../../build/libs-tools/jgoodies-common-1.8.1.jar

java -Dswing.defaultlaf=javax.swing.plaf.metal.MetalLookAndFeel -cp $CLASSPATH org.pushingpixels.lightbeam.DynamicPerformanceSuite 10
2 changes: 1 addition & 1 deletion scripts/lightbeam/auto-dynamic-nimbus.bat
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
:: OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
:: EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

set RADIANCE_VERSION=4.0-SNAPSHOT
set RADIANCE_VERSION=4.0.0
set CLASSPATH=../../drop/%RADIANCE_VERSION%/tools/radiance-lightbeam-%RADIANCE_VERSION%.jar;../../build/libs-tools/jgoodies-forms-1.9.0.jar;../../build/libs-tools/jgoodies-common-1.8.1.jar

"%JAVA_HOME%"\bin\java -Dswing.defaultlaf=javax.swing.plaf.nimbus.NimbusLookAndFeel -cp %CLASSPATH% org.pushingpixels.lightbeam.DynamicPerformanceSuite 10
2 changes: 1 addition & 1 deletion scripts/lightbeam/auto-dynamic-nimbus.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
export JAVA_HOME=`/usr/libexec/java_home -v 9`
alias JAVA="java"

RADIANCE_VERSION=4.0-SNAPSHOT
RADIANCE_VERSION=4.0.0
CLASSPATH=../../drop/$RADIANCE_VERSION/tools/radiance-lightbeam-$RADIANCE_VERSION.jar:../../build/libs-tools/jgoodies-forms-1.9.0.jar:../../build/libs-tools/jgoodies-common-1.8.1.jar

java -Dswing.defaultlaf=javax.swing.plaf.nimbus.NimbusLookAndFeel -cp $CLASSPATH org.pushingpixels.lightbeam.DynamicPerformanceSuite 10
2 changes: 1 addition & 1 deletion scripts/lightbeam/auto-dynamic-plasticxp.bat
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
:: OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
:: EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

set RADIANCE_VERSION=4.0-SNAPSHOT
set RADIANCE_VERSION=4.0.0
set CLASSPATH=../../drop/%RADIANCE_VERSION%/tools/radiance-lightbeam-%RADIANCE_VERSION%.jar;../../build/libs-tools/jgoodies-forms-1.9.0.jar;../../build/libs-tools/jgoodies-common-1.8.1.jar
set PLASTIC_CLASSPATH=../../../thirdparty/jgoodies/jgoodies-looks-2.5.3.jar

Expand Down
2 changes: 1 addition & 1 deletion scripts/lightbeam/auto-dynamic-plasticxp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
export JAVA_HOME=`/usr/libexec/java_home -v 9`
alias JAVA="java"

RADIANCE_VERSION=4.0-SNAPSHOT
RADIANCE_VERSION=4.0.0
CLASSPATH=../../drop/$RADIANCE_VERSION/tools/radiance-lightbeam-$RADIANCE_VERSION.jar:../../build/libs-tools/jgoodies-forms-1.9.0.jar:../../build/libs-tools/jgoodies-common-1.8.1.jar
PLASTIC_CLASSPATH=../../../thirdparty/jgoodies/jgoodies-looks-2.5.3.jar

Expand Down
2 changes: 1 addition & 1 deletion scripts/lightbeam/auto-dynamic-substance.bat
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
:: OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
:: EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

set RADIANCE_VERSION=4.0-SNAPSHOT
set RADIANCE_VERSION=4.0.0
set CLASSPATH=../../drop/%RADIANCE_VERSION%/tools/radiance-lightbeam-%RADIANCE_VERSION%.jar;../../build/libs-tools/jgoodies-forms-1.9.0.jar;../../build/libs-tools/jgoodies-common-1.8.1.jar
set SUBSTANCE_CLASSPATH=../../drop/%RADIANCE_VERSION%/core/radiance-substance-%RADIANCE_VERSION%.jar;../../drop/%RADIANCE_VERSION%/core/radiance-trident-%RADIANCE_VERSION%.jar;../../drop/%RADIANCE_VERSION%/core/radiance-neon-%RADIANCE_VERSION%.jar

Expand Down
2 changes: 1 addition & 1 deletion scripts/lightbeam/auto-dynamic-substance.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
export JAVA_HOME=`/usr/libexec/java_home -v 9`
alias JAVA="java"

RADIANCE_VERSION=4.0-SNAPSHOT
RADIANCE_VERSION=4.0.0
CLASSPATH=../../drop/$RADIANCE_VERSION/tools/radiance-lightbeam-$RADIANCE_VERSION.jar:../../build/libs-tools/jgoodies-forms-1.9.0.jar:../../build/libs-tools/jgoodies-common-1.8.1.jar
SUBSTANCE_CLASSPATH=../../drop/$RADIANCE_VERSION/core/radiance-substance-$RADIANCE_VERSION.jar:../../drop/$RADIANCE_VERSION/core/radiance-trident-$RADIANCE_VERSION.jar:../../drop/$RADIANCE_VERSION/core/radiance-neon-$RADIANCE_VERSION.jar

Expand Down
2 changes: 1 addition & 1 deletion scripts/lightbeam/auto-dynamic-synthetica.bat
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
:: OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
:: EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

set RADIANCE_VERSION=4.0-SNAPSHOT
set RADIANCE_VERSION=4.0.0
set CLASSPATH=../../drop/%RADIANCE_VERSION%/tools/radiance-lightbeam-%RADIANCE_VERSION%.jar;../../build/libs-tools/jgoodies-forms-1.9.0.jar;../../build/libs-tools/jgoodies-common-1.8.1.jar
set SYNTHETICA_CLASSPATH=../../../thirdparty/synthetica/synthetica.jar;../../../thirdparty/synthetica/syntheticaStandard.jar

Expand Down
2 changes: 1 addition & 1 deletion scripts/lightbeam/auto-dynamic-synthetica.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
export JAVA_HOME=`/usr/libexec/java_home -v 9`
alias JAVA="java"

RADIANCE_VERSION=4.0-SNAPSHOT
RADIANCE_VERSION=4.0.0
CLASSPATH=../../drop/$RADIANCE_VERSION/tools/radiance-lightbeam-$RADIANCE_VERSION.jar:../../build/libs-tools/jgoodies-forms-1.9.0.jar:../../build/libs-tools/jgoodies-common-1.8.1.jar
SYNTHETICA_CLASSPATH=../../../thirdparty/synthetica/synthetica.jar:../../../thirdparty/synthetica/syntheticaStandard.jar

Expand Down
2 changes: 1 addition & 1 deletion scripts/lightbeam/auto-dynamic-system.bat
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
:: OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
:: EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

set RADIANCE_VERSION=4.0-SNAPSHOT
set RADIANCE_VERSION=4.0.0
set CLASSPATH=../../drop/%RADIANCE_VERSION%/tools/radiance-lightbeam-%RADIANCE_VERSION%.jar;../../build/libs-tools/jgoodies-forms-1.9.0.jar;../../build/libs-tools/jgoodies-common-1.8.1.jar

"%JAVA_HOME%"\bin\java -Dswing.defaultlaf=com.sun.java.swing.plaf.windows.WindowsLookAndFeel -cp %CLASSPATH% org.pushingpixels.lightbeam.DynamicPerformanceSuite 10
2 changes: 1 addition & 1 deletion scripts/lightbeam/auto-dynamic-system.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
export JAVA_HOME=`/usr/libexec/java_home -v 9`
alias JAVA="java"

RADIANCE_VERSION=4.0-SNAPSHOT
RADIANCE_VERSION=4.0.0
CLASSPATH=../../drop/$RADIANCE_VERSION/tools/radiance-lightbeam-$RADIANCE_VERSION.jar:../../build/libs-tools/jgoodies-forms-1.9.0.jar:../../build/libs-tools/jgoodies-common-1.8.1.jar

java -cp $CLASSPATH org.pushingpixels.lightbeam.DynamicPerformanceSuite 10
2 changes: 1 addition & 1 deletion scripts/lightbeam/auto-dynamic-weblaf.bat
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
:: OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
:: EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

set RADIANCE_VERSION=4.0-SNAPSHOT
set RADIANCE_VERSION=4.0.0
set WEBLAF_VERSION=1.3.0-SNAPSHOT
set CLASSPATH=../../drop/%RADIANCE_VERSION%/tools/radiance-lightbeam-%RADIANCE_VERSION%.jar;../../build/libs-tools/jgoodies-forms-1.9.0.jar;../../build/libs-tools/jgoodies-common-1.8.1.jar
set WEBLAF_CLASSPATH=../../../thirdparty/weblaf-core-%WEBLAF_VERSION%.jar;../../../thirdparty/weblaf-plugin-%WEBLAF_VERSION%.jar;../../../thirdparty/weblaf-ui-%WEBLAF_VERSION%.jar;../../../thirdparty/weblaf-deps/*
Expand Down
2 changes: 1 addition & 1 deletion scripts/lightbeam/auto-dynamic-weblaf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
export JAVA_HOME=`/usr/libexec/java_home -v 9`
alias JAVA="java"

RADIANCE_VERSION=4.0-SNAPSHOT
RADIANCE_VERSION=4.0.0
WEBLAF_VERSION=1.3.0-SNAPSHOT
CLASSPATH=../../drop/$RADIANCE_VERSION/tools/radiance-lightbeam-$RADIANCE_VERSION.jar:../../build/libs-tools/jgoodies-forms-1.9.0.jar:../../build/libs-tools/jgoodies-common-1.8.1.jar
WEBLAF_CLASSPATH=../../../thirdparty/weblaf-core-$WEBLAF_VERSION.jar:../../../thirdparty/weblaf-plugin-$WEBLAF_VERSION.jar:../../../thirdparty/weblaf-ui-$WEBLAF_VERSION.jar:../../../thirdparty/weblaf-deps/*
Expand Down
2 changes: 1 addition & 1 deletion scripts/zodiac/doc-robot-extras-schemes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
export JAVA_HOME=`/usr/libexec/java_home -v 9`
alias JAVA="java"

RADIANCE_VERSION=4.0-SNAPSHOT
RADIANCE_VERSION=4.0.0
KOTLIN_VERSION=1.4.30
KOTLIN_COROUTINES_VERSION=1.4.2
CLASSPATH=../../drop/$RADIANCE_VERSION/tools/radiance-zodiac-$RADIANCE_VERSION.jar:../../drop/$RADIANCE_VERSION/tools/radiance-tools-common-$RADIANCE_VERSION.jar:../../drop/$RADIANCE_VERSION/core/radiance-substance-$RADIANCE_VERSION.jar:../../drop/$RADIANCE_VERSION/core/radiance-substance-extras-$RADIANCE_VERSION.jar:../../drop/$RADIANCE_VERSION/core/radiance-neon-$RADIANCE_VERSION.jar:../../drop/$RADIANCE_VERSION/core/radiance-trident-$RADIANCE_VERSION.jar:../../drop/$RADIANCE_VERSION/demo/radiance-substance-demo-$RADIANCE_VERSION.jar:../../drop/$RADIANCE_VERSION/core/radiance-substance-extras-$RADIANCE_VERSION.jar:../../build/libs-tools/jgoodies-forms-1.9.0.jar:../../build/libs-tools/jgoodies-common-1.8.1.jar:../../build/libs-tools/kotlin-stdlib-$KOTLIN_VERSION.jar:../../build/libs-tools/kotlin-stdlib-common-$KOTLIN_VERSION.jar:../../build/libs-tools/kotlinx-coroutines-core-jvm-$KOTLIN_COROUTINES_VERSION.jar:../../build/libs-tools/kotlinx-coroutines-swing-$KOTLIN_COROUTINES_VERSION.jar
Expand Down
2 changes: 1 addition & 1 deletion scripts/zodiac/doc-robot-extras-skins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
export JAVA_HOME=`/usr/libexec/java_home -v 9`
alias JAVA="java"

RADIANCE_VERSION=4.0-SNAPSHOT
RADIANCE_VERSION=4.0.0
KOTLIN_VERSION=1.4.30
KOTLIN_COROUTINES_VERSION=1.4.2
CLASSPATH=../../drop/$RADIANCE_VERSION/tools/radiance-zodiac-$RADIANCE_VERSION.jar:../../drop/$RADIANCE_VERSION/tools/radiance-tools-common-$RADIANCE_VERSION.jar:../../drop/$RADIANCE_VERSION/core/radiance-substance-$RADIANCE_VERSION.jar:../../drop/$RADIANCE_VERSION/core/radiance-substance-extras-$RADIANCE_VERSION.jar:../../drop/$RADIANCE_VERSION/core/radiance-neon-$RADIANCE_VERSION.jar:../../drop/$RADIANCE_VERSION/core/radiance-trident-$RADIANCE_VERSION.jar:../../drop/$RADIANCE_VERSION/demo/radiance-substance-demo-$RADIANCE_VERSION.jar:../../drop/$RADIANCE_VERSION/core/radiance-substance-extras-$RADIANCE_VERSION.jar:../../build/libs-tools/jgoodies-forms-1.9.0.jar:../../build/libs-tools/jgoodies-common-1.8.1.jar:../../build/libs-tools/kotlin-stdlib-$KOTLIN_VERSION.jar:../../build/libs-tools/kotlin-stdlib-common-$KOTLIN_VERSION.jar:../../build/libs-tools/kotlinx-coroutines-core-jvm-$KOTLIN_COROUTINES_VERSION.jar:../../build/libs-tools/kotlinx-coroutines-swing-$KOTLIN_COROUTINES_VERSION.jar
Expand Down
Loading

0 comments on commit 32b2fae

Please sign in to comment.