We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df6623e commit b3b8cf6Copy full SHA for b3b8cf6
1 file changed
src/main/java/io/github/turtleisaac/pokeditor/Main.java
@@ -14,8 +14,6 @@
14
*/
15
public class Main
16
{
17
- public static final String versionNumber = "v3snapshot";
18
- public static final boolean programFilesModifiedThisVersion = true;
19
private static ConsoleWindow console;
20
private static final String jokesPath = "/pokeditor/jokes.txt";
21
@@ -27,7 +25,7 @@ public static void main(String[] args) throws IOException
27
25
Tool tool = Tool.create();
28
26
tool.setType(ProgramType.PROJECT)
29
.setName("PokEditor")
30
- .setVersion("3.0.0-SNAPSHOT")
+ .setVersion("3.0.0")
31
// .setFlavorText("Did you know that Jay likes Moemon?")
32
.setFlavorText(mainMenuJokes[(int) (Math.random()*(mainMenuJokes.length))])
33
.setAuthor("Developed by Turtleisaac")
0 commit comments