- add information text on how to configure desktop executables further

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10721 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
3.0
nor..67 12 years ago
parent e36241e74b
commit 59857d7bc3
  1. 1
      sdk/jme3-desktop-executables/src/com/jme3/gde/desktop/executables/Bundle.properties
  2. 3
      sdk/jme3-desktop-executables/src/com/jme3/gde/desktop/executables/DesktopExeCustomizerPanel.form
  3. 1
      sdk/jme3-desktop-executables/src/com/jme3/gde/desktop/executables/DesktopExeCustomizerPanel.java

@ -9,3 +9,4 @@ DesktopExeCustomizerPanel.jCheckBox1.text=Create Windows .exe file
DesktopExeCustomizerPanel.jCheckBox2.text=Create Mac app bundle DesktopExeCustomizerPanel.jCheckBox2.text=Create Mac app bundle
DesktopExeCustomizerPanel.jCheckBox3.text=Create Linux launcher DesktopExeCustomizerPanel.jCheckBox3.text=Create Linux launcher
DesktopExeCustomizerPanel.jLabel1.text=Select platforms to create launchers for DesktopExeCustomizerPanel.jLabel1.text=Select platforms to create launchers for
DesktopExeCustomizerPanel.jTextArea1.text=You can further configure the application launchers (icons etc.) by modifying the templates in the resources folder.\n\nThe command line options entered in the "Run" tab (e.g. to set the memory limits for the application) will automatically be added to the launchers.

@ -90,6 +90,9 @@
<Property name="columns" type="int" value="20"/> <Property name="columns" type="int" value="20"/>
<Property name="lineWrap" type="boolean" value="true"/> <Property name="lineWrap" type="boolean" value="true"/>
<Property name="rows" type="int" value="5"/> <Property name="rows" type="int" value="5"/>
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.i18n.form.FormI18nStringEditor">
<ResourceString bundle="com/jme3/gde/desktop/executables/Bundle.properties" key="DesktopExeCustomizerPanel.jTextArea1.text" replaceFormat="org.openide.util.NbBundle.getMessage({sourceFileName}.class, &quot;{key}&quot;)"/>
</Property>
<Property name="wrapStyleWord" type="boolean" value="true"/> <Property name="wrapStyleWord" type="boolean" value="true"/>
<Property name="disabledTextColor" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor"> <Property name="disabledTextColor" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
<Color blue="0" green="0" red="0" type="rgb"/> <Color blue="0" green="0" red="0" type="rgb"/>

@ -102,6 +102,7 @@ public class DesktopExeCustomizerPanel extends javax.swing.JPanel implements Act
jTextArea1.setColumns(20); jTextArea1.setColumns(20);
jTextArea1.setLineWrap(true); jTextArea1.setLineWrap(true);
jTextArea1.setRows(5); jTextArea1.setRows(5);
jTextArea1.setText(org.openide.util.NbBundle.getMessage(DesktopExeCustomizerPanel.class, "DesktopExeCustomizerPanel.jTextArea1.text")); // NOI18N
jTextArea1.setWrapStyleWord(true); jTextArea1.setWrapStyleWord(true);
jTextArea1.setDisabledTextColor(new java.awt.Color(0, 0, 0)); jTextArea1.setDisabledTextColor(new java.awt.Color(0, 0, 0));
jScrollPane1.setViewportView(jTextArea1); jScrollPane1.setViewportView(jTextArea1);

Loading…
Cancel
Save