Browse Source

Unify and fix the game template strings

Toni Helenius 2 years ago
parent
commit
c89cfc33a4

+ 2 - 1
jme3-templates/src/com/jme3/gde/templates/Bundle.properties

@@ -4,4 +4,5 @@ OpenIDE-Module-Long-Description=\
     This plugin contains the basic project templates
     This plugin contains the basic project templates
 OpenIDE-Module-Name=Project Templates
 OpenIDE-Module-Name=Project Templates
 OpenIDE-Module-Short-Description=Provides Project Templates
 OpenIDE-Module-Short-Description=Provides Project Templates
-Templates/Project/JME3/BasicGameProject.zip=BasicGame
+Templates/Project/JME3/BasicGameProject.zip=Basic Game (with Ant)
+Templates/Project/JME3/GradleDesktopGameProject.zip=Basic Game (with Gradle)

+ 1 - 1
jme3-templates/src/com/jme3/gde/templates/basic/BasicGameDescription.html

@@ -4,6 +4,6 @@
         <title></title>
         <title></title>
     </head>
     </head>
     <body>
     <body>
-        This is the basic jme3 application template for any kind of jME3 project.
+        This is the basic jME3 application template for any kind of jME3 project. Uses Ant build system.
     </body>
     </body>
 </html>
 </html>

+ 2 - 1
jme3-templates/src/com/jme3/gde/templates/gradledesktop/GradleDesktopGameDescription.html

@@ -4,6 +4,7 @@
         <title></title>
         <title></title>
     </head>
     </head>
     <body>
     <body>
-        This is the basic jme3 gradle application template for any kind of jME3 project.
+        This is the basic jME3 application template for any kind of jME3 project. Uses Gradle build system.
+		Gradle is a modern build system with dependency management. Recommended over the Ant build system.
     </body>
     </body>
 </html>
 </html>