- 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
This commit is contained in:
nor..67 2013-07-14 10:38:39 +00:00
parent e36241e74b
commit 59857d7bc3
3 changed files with 5 additions and 0 deletions

View File

@ -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.

View File

@ -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"/>

View File

@ -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);