Skip to content

Commit

Permalink
Beryl 2.0.0
Browse files Browse the repository at this point in the history
* Add proper package for Ion files
* Move Rainbow files to org.pushingpixels.demo.rainbow folder / package
* Update screenshots
* Small comment tweaks for Flamingo
  • Loading branch information
kirill-grouchnikov committed Mar 11, 2019
1 parent 89ccdd6 commit 8e019b1
Show file tree
Hide file tree
Showing 130 changed files with 84 additions and 45 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 2.0-SNAPSHOT)
### Version of Radiance (current development is 2.0.0)

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

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

version = '2.0-SNAPSHOT'
version = '2.0.0'
ext.codename = 'Beryl'
ext.isRelease = false
ext.isRelease = true

buildscript {
ext {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.pushingpixels.demo.ion

import kotlinx.coroutines.*
import kotlinx.coroutines.swing.Swing
import org.pushingpixels.trident.Timeline
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.pushingpixels.demo.ion

import kotlinx.coroutines.*
import kotlinx.coroutines.channels.Channel
import kotlinx.coroutines.swing.Swing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.pushingpixels.demo.ion

import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.GlobalScope
import kotlinx.coroutines.channels.Channel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.pushingpixels.demo.ion

import kotlinx.coroutines.*
import kotlinx.coroutines.channels.Channel
import kotlinx.coroutines.channels.ReceiveChannel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.pushingpixels.demo.ion

import kotlinx.coroutines.*
import kotlinx.coroutines.swing.Swing
import java.awt.Dimension
Expand Down
2 changes: 2 additions & 0 deletions demos/ion/src/main/kotlin/org/pushingpixels/demo/ion/Start.kt
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.pushingpixels.demo.ion

import java.awt.Dimension
import java.awt.FlowLayout
import javax.swing.*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.pushingpixels.demo.ion

import java.awt.Dimension
import java.awt.FlowLayout
import javax.swing.*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.pushingpixels.rainbow
package org.pushingpixels.demo.rainbow

import org.pushingpixels.neon.NeonCortex
import org.pushingpixels.neon.icon.ResizableIcon
import org.pushingpixels.rainbow.svg.radiance_menu
import org.pushingpixels.demo.rainbow.svg.radiance_menu
import org.pushingpixels.substance.api.SubstanceCortex
import org.pushingpixels.substance.api.SubstanceSlices
import org.pushingpixels.substance.api.colorscheme.SubstanceColorScheme
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.pushingpixels.rainbow
package org.pushingpixels.demo.rainbow

import org.pushingpixels.flamingo.api.bcb.JBreadcrumbBar
import org.pushingpixels.flamingo.api.common.*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.pushingpixels.rainbow
package org.pushingpixels.demo.rainbow

import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.GlobalScope
Expand All @@ -48,14 +48,15 @@ import javax.swing.JFrame
* @author Kirill Grouchnikov
* @author Alexander Potochkin
*/
fun main(args: Array<String>) {
fun main() {
GlobalScope.launch(Dispatchers.Swing) {
JFrame.setDefaultLookAndFeelDecorated(true)
SubstanceCortex.GlobalScope.setTimelineDuration(1000)
SubstanceCortex.GlobalScope.allowAnimations(AnimationFacet.GHOSTING_ICON_ROLLOVER)
SubstanceCortex.GlobalScope.setSkin(BusinessSkin())

val frame = RainbowViewer<File>("Local SVG File Viewer", BreadcrumbFileSelector())
val frame =
RainbowViewer<File>("Local SVG File Viewer", BreadcrumbFileSelector())
frame.setSize(700, 400)
frame.setLocationRelativeTo(null)
frame.defaultCloseOperation = JFrame.EXIT_ON_CLOSE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.pushingpixels.rainbow
package org.pushingpixels.demo.rainbow

import org.fife.ui.rsyntaxtextarea.RSyntaxTextArea
import org.fife.ui.rsyntaxtextarea.SyntaxConstants
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.pushingpixels.rainbow
package org.pushingpixels.demo.rainbow

import com.jgoodies.forms.builder.FormBuilder
import kotlinx.coroutines.Dispatchers
Expand All @@ -46,9 +46,9 @@ import org.pushingpixels.flamingo.api.common.ProgressEvent
import org.pushingpixels.flamingo.api.layout.TransitionLayout
import org.pushingpixels.flamingo.api.layout.TransitionLayoutEvent
import org.pushingpixels.meteor.addDelayedChangeListener
import org.pushingpixels.rainbow.svg.ic_search_black_24px
import org.pushingpixels.rainbow.svg.ic_zoom_in_black_24px
import org.pushingpixels.rainbow.svg.ic_zoom_out_black_24px
import org.pushingpixels.demo.rainbow.svg.ic_search_black_24px
import org.pushingpixels.demo.rainbow.svg.ic_zoom_in_black_24px
import org.pushingpixels.demo.rainbow.svg.ic_zoom_out_black_24px
import org.pushingpixels.substance.api.SubstanceSlices.DecorationAreaType
import java.awt.BorderLayout
import java.awt.geom.RoundRectangle2D
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.pushingpixels.rainbow.svg
package org.pushingpixels.demo.rainbow.svg

import java.awt.*
import java.awt.geom.*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.pushingpixels.rainbow.svg
package org.pushingpixels.demo.rainbow.svg

import java.awt.*
import java.awt.geom.*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.pushingpixels.rainbow.svg
package org.pushingpixels.demo.rainbow.svg

import java.awt.*
import java.awt.geom.*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.pushingpixels.rainbow.svg
package org.pushingpixels.demo.rainbow.svg

import java.awt.*
import java.awt.geom.*
Expand Down
Binary file modified docs/images/substance-extras/colorschemes/belize.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/substance-extras/colorschemes/bloody-moon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/substance-extras/colorschemes/blue-yonder.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/substance-extras/colorschemes/brick-wall.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/substance-extras/colorschemes/brown-velvet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/substance-extras/colorschemes/cobalt-steel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/substance-extras/colorschemes/desert-mars.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/substance-extras/colorschemes/earth-fresco.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/substance-extras/colorschemes/emerald-grass.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/substance-extras/colorschemes/fauve-mauve.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/substance-extras/colorschemes/gooseberry-jungle.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/substance-extras/colorschemes/green-pearl.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/substance-extras/colorschemes/mahogany.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/substance-extras/colorschemes/orchid-alloy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/substance-extras/colorschemes/peach.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/substance-extras/colorschemes/placid-pink.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/substance-extras/colorschemes/sky-high.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/substance-extras/colorschemes/spring-leaf.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/substance-extras/colorschemes/turquoise-lake.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/substance-extras/colorschemes/wild-pine.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/substance-extras/colorschemes/yellow-marine.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/substance-extras/skins/fieldofwheat1.png
Binary file modified docs/images/substance-extras/skins/fieldofwheat2.png
Binary file modified docs/images/substance-extras/skins/findingnemo1.png
Binary file modified docs/images/substance-extras/skins/findingnemo2.png
Binary file modified docs/images/substance-extras/skins/greenmagic1.png
Binary file modified docs/images/substance-extras/skins/greenmagic2.png
Binary file modified docs/images/substance-extras/skins/magma1.png
Binary file modified docs/images/substance-extras/skins/magma2.png
Binary file modified docs/images/substance-extras/skins/mango1.png
Binary file modified docs/images/substance-extras/skins/mango2.png
Binary file modified docs/images/substance-extras/skins/officeblack20071.png
Binary file modified docs/images/substance-extras/skins/officeblack20072.png
Binary file modified docs/images/substance-extras/skins/officeblue20071.png
Binary file modified docs/images/substance-extras/skins/officeblue20072.png
Binary file modified docs/images/substance-extras/skins/officesilver20071.png
Binary file modified docs/images/substance-extras/skins/officesilver20072.png
Binary file modified docs/images/substance-extras/skins/streetlights1.png
Binary file modified docs/images/substance-extras/skins/streetlights2.png
Binary file modified docs/images/substance-extras/watermarks/binary.png
Binary file modified docs/images/substance-extras/watermarks/brushed-metal.png
Binary file modified docs/images/substance-extras/watermarks/bubbles.png
Binary file modified docs/images/substance-extras/watermarks/crosshatch.png
Binary file modified docs/images/substance-extras/watermarks/exceed.png
Binary file modified docs/images/substance-extras/watermarks/flame-fractal-vortex.png
Binary file modified docs/images/substance-extras/watermarks/katakana.png
Binary file modified docs/images/substance-extras/watermarks/latch.png
Binary file modified docs/images/substance-extras/watermarks/metal-wall.png
Binary file modified docs/images/substance-extras/watermarks/mosaic.png
Binary file modified docs/images/substance-extras/watermarks/noise-fabric.png
Binary file modified docs/images/substance-extras/watermarks/noise-magnetic-field.png
Binary file modified docs/images/substance-extras/watermarks/noise-marble-vein.png
Binary file modified docs/images/substance-extras/watermarks/noise-maze.png
Binary file modified docs/images/substance-extras/watermarks/noise-plankton.png
Binary file modified docs/images/substance-extras/watermarks/noise-wood.png
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=2.0-SNAPSHOT`
`RADIANCE_VERSION=2.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`

To measure the performance of a specific core look-and-feel - in this case Nimbus - run the following command:
Expand Down Expand Up @@ -48,7 +48,7 @@ Here is the script used for tracking performance numbers for [Substance](../subs

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

`RADIANCE_VERSION=2.0-SNAPSHOT`
`RADIANCE_VERSION=2.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
Binary file removed drop/2.0-SNAPSHOT/demo/radiance-ion-2.0-SNAPSHOT.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 added drop/2.0.0/demo/radiance-ion-2.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.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@
import java.util.EventListener;

public interface CommandAction extends EventListener {
/** Invoked when a command is activated. */
/**
* Invoked when a command is activated.
*
* @param e Command action event. Use {@link CommandActionEvent#getCommand()} to
* work with the original command, and {@link CommandActionEvent#getButtonSource()}
* to get the specific projected button.
*/
void commandActivated(CommandActionEvent e);
}
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ class CommandButtonLayoutInfo {
* The popup area. A mouse click in this area will show the popup content
* associated with the command button.
*
* @see {@link JCommandButton#setPopupCallback(PopupPanelCallback)}
* @see {@link Command.Builder#setSecondaryContentModel(CommandMenuContentModel)}
* @see {@link CommandButtonPresentationModel.Builder#setPopupMenuPresentationModel(AbstractPopupMenuPresentationModel)}
* @see JCommandButton#setPopupCallback(PopupPanelCallback)
* @see Command.Builder#setSecondaryContentModel(CommandMenuContentModel)
* @see CommandButtonPresentationModel.Builder#setPopupMenuPresentationModel(AbstractPopupMenuPresentationModel)
*/
public Rectangle popupClickArea;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

import org.pushingpixels.flamingo.api.common.*;
import org.pushingpixels.flamingo.api.common.projection.CommandButtonProjection;
import org.pushingpixels.neon.icon.*;
import org.pushingpixels.neon.icon.ResizableIcon;

import javax.swing.event.*;
import java.beans.*;
Expand Down Expand Up @@ -75,10 +75,18 @@ public class Command implements ContentModel {
private final PropertyChangeSupport pcs = new PropertyChangeSupport(this);

public interface CommandActionPreview extends EventListener {
/** Invoked when a command preview has been activated. */
/**
* Invoked when a command preview has been activated.
*
* @param command Command for which the preview has been activated.
*/
void onCommandPreviewActivated(Command command);

/** Invoked when a command preview has been canceled. */
/**
* Invoked when a command preview has been canceled.
*
* @param command Command for which the preview has been canceled.
*/
void onCommandPreviewCanceled(Command command);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ public interface ColorPreviewListener extends EventListener {
/**
* Invoked when the preview of a color in any of the color sections of this model is
* activated.
*
* @param color Color for which the preview has been activated.
*/
void onColorPreviewActivated(Color color);

Expand All @@ -71,6 +73,8 @@ public interface ColorPreviewListener extends EventListener {
public interface ColorActivationListener extends EventListener {
/**
* Invoked when a color in any of the color sections of this model is activated.
*
* @param color Activated color.
*/
void onColorActivated(Color color);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
* <li>Calling {@link #setMinimized(boolean)} with <code>true</code>.</li>
* <li>User double-clicking on a task button.</li>
* <li>User pressing <code>Meta+Alt+R</code> key combination on a Mac machine or
* </code><code>Ctrl+F1</code> key combination on a non-Mac machine.</li>
* <code>Ctrl+F1</code> key combination on a non-Mac machine.</li>
* </ul>
*
* <p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@
* {@link Command.Builder#setSecondaryContentModel(CommandMenuContentModel)}
* API. When this entry is armed (with mouse rollover or via keyboard navigation), the secondary
* area shows menu buttons for the registered secondary menu entries. The <code>Save As</code> menu
* item is an example of such a primary menu item, showing a list of default save formats.</li>
* </ul>
* item is an example of such a primary menu item, showing a list of default save formats.
* </p>
*
* <p>
* At runtime, the application menu entries are implemented as {@link JCommandMenuButton}, but the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,15 @@ public class RibbonGalleryContentModel implements ContentModel {
public interface GalleryCommandActionPreview extends EventListener {
/**
* Invoked when the preview of a command in this gallery model is activated.
*
* @param command Command for which the preview has been activated.
*/
void onCommandPreviewActivated(Command command);

/**
* Invoked when the command preview has been canceled.
*
* @param command Command for which the preview has been canceled.
*/
void onCommandPreviewCanceled(Command command);
}
Expand All @@ -67,6 +71,8 @@ public interface GalleryCommandActionPreview extends EventListener {
public interface GalleryCommandAction extends EventListener {
/**
* Invoked when a command in this gallery model is activated.
*
* @param command Command that has been activated.
*/
void onCommandActivated(Command command);
}
Expand Down
4 changes: 2 additions & 2 deletions scripts/convert-svg.sh
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.

RADIANCE_VERSION=2.0-SNAPSHOT
RADIANCE_VERSION=2.0.0
CLASSPATH=../drop/$RADIANCE_VERSION/core/radiance-photon-$RADIANCE_VERSION.jar:../build/libs-core/batik-all-1.11.jar:../build/libs-core/xml-apis-1.3.04.jar:../build/libs-core/xml-apis-ext-1.3.04.jar:../build/libs-core/xmlgraphics-commons-2.3.jar

java -cp $CLASSPATH org.pushingpixels.photon.transcoder.SvgBatchConverter sourceFolder=../demos/plasma-demo/src/main/kotlin/org/pushingpixels/demo/plasma/svg outputPackageName=org.pushingpixels.demo.plasma.svg templateFile=/org/pushingpixels/photon/transcoder/kotlin/SvgTranscoderTemplateResizable.templ outputLanguage=kotlin
Expand All @@ -54,7 +54,7 @@ java -cp $CLASSPATH org.pushingpixels.photon.transcoder.SvgBatchConverter source

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

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

java -cp $CLASSPATH org.pushingpixels.photon.transcoder.SvgBatchConverter sourceFolder=../tools/tools-common/src/main/kotlin/org/pushingpixels/tools/common/ outputPackageName=org.pushingpixels.tools.common templateFile=/org/pushingpixels/photon/transcoder/kotlin/SvgTranscoderTemplateResizable.templ outputLanguage=kotlin

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=2.0-SNAPSHOT
RADIANCE_VERSION=2.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-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=2.0-SNAPSHOT
RADIANCE_VERSION=2.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.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=2.0-SNAPSHOT
RADIANCE_VERSION=2.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.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=2.0-SNAPSHOT
RADIANCE_VERSION=2.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.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=2.0-SNAPSHOT
RADIANCE_VERSION=2.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.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=2.0-SNAPSHOT
RADIANCE_VERSION=2.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/synthetica3.0/synthetica.jar:../../../thirdparty/synthetica3.0/syntheticaStandard.jar

Expand Down
Loading

0 comments on commit 8e019b1

Please sign in to comment.