forked from Fvegini/Shuffle-Move
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShuffleVersion.java_template
39 lines (36 loc) · 1.82 KB
/
ShuffleVersion.java_template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/* ShuffleMove - A program for identifying and simulating ideal moves in the game
* called Pokemon Shuffle.
*
* Copyright (C) 2015 Andrew Meyers
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package shuffle.fwk;
/**
* The current build version, used for config synchronizations.
*
* @author Andrew Meyers
*/
public interface ShuffleVersion {
public static final long BUILD_DATE = BUILD_DATE_REPLACEl;
/** The Major version number. 0 = unfinished, 1 = first release, etc. */
public static final int VERSION_MAJOR = VERSION_MAJOR_REPLACE;
/** The Minor version number. Each increment is a new significant overhaul. */
public static final int VERSION_MINOR = VERSION_MINOR_REPLACE;
/** The SubMinor version number. Each increment is a minor batch of tweaks and fixes. */
public static final int VERSION_SUBMINOR = VERSION_SUBMINOR_REPLACE;
/** The full version String which identifies the program's actual version. */
public static final String VERSION_FULL = String.format("v%d.%d.%d", VERSION_MAJOR, VERSION_MINOR, VERSION_SUBMINOR);
/** Convenience array of version numbers for comparisons. */
public static final int[] VERSION_ARRAY = new int[]{VERSION_MAJOR, VERSION_MINOR, VERSION_SUBMINOR};
}