Skip to content
This repository has been archived by the owner on May 25, 2020. It is now read-only.

Commit

Permalink
Passage a la Alpha 0.06
Browse files Browse the repository at this point in the history
  • Loading branch information
Jlppc committed Nov 9, 2016
1 parent cabd3f8 commit 62806e4
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
Binary file modified bin/jlppc/regimys/launch/Start.class
Binary file not shown.
2 changes: 2 additions & 0 deletions jar/PkmnCreator.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
java -jar Regimys.jar --creator pokemon
pause
2 changes: 2 additions & 0 deletions jar/PkmnCreatorLinux.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
java -jar Regimys.jar --creator pokemon
pause
Binary file modified jar/Regimys.jar
Binary file not shown.
8 changes: 4 additions & 4 deletions src/jlppc/regimys/launch/Start.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class Start {
Initializer.init();
}

public static float version = 0.05f;
public static float version = 0.06f;

public static char commits = ' ';

Expand All @@ -39,11 +39,11 @@ public class Start {

public static boolean pre = (preNbre != 0);

public static int sousVers = 2;
public static int sousVers = 0;

public static boolean sousVersIs = sousVers == 0;
public static boolean sousVersIs = (sousVers != 0);

public static String versionS = "" + version + (sousVersIs ? "." + sousVers : "") + (pre ? (" pre " + preNbre) : "") + commits;//Actuel : 0.04
public static String versionS = "Alpha " + version + (sousVersIs ? "." + sousVers : "") + (pre ? (" pre " + preNbre) : "") + commits;//Actuel : 0.04

//Utilitaires pratiques
/**
Expand Down

0 comments on commit 62806e4

Please sign in to comment.