Răsfoiți Sursa

SDK:
- 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

nor..67 12 ani în urmă
părinte
comite
59857d7bc3

+ 1 - 0
sdk/jme3-desktop-executables/src/com/jme3/gde/desktop/executables/Bundle.properties

@@ -9,3 +9,4 @@ DesktopExeCustomizerPanel.jCheckBox1.text=Create Windows .exe file
 DesktopExeCustomizerPanel.jCheckBox2.text=Create Mac app bundle
 DesktopExeCustomizerPanel.jCheckBox3.text=Create Linux launcher
 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.

+ 3 - 0
sdk/jme3-desktop-executables/src/com/jme3/gde/desktop/executables/DesktopExeCustomizerPanel.form

@@ -90,6 +90,9 @@
             <Property name="columns" type="int" value="20"/>
             <Property name="lineWrap" type="boolean" value="true"/>
             <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="disabledTextColor" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
               <Color blue="0" green="0" red="0" type="rgb"/>

+ 1 - 0
sdk/jme3-desktop-executables/src/com/jme3/gde/desktop/executables/DesktopExeCustomizerPanel.java

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