Skip to content
This repository was archived by the owner on Jun 12, 2025. It is now read-only.

Commit 52c002a

Browse files
author
Patrick Rye
committed
Update to v5.0.1
## [5.0.1] - 2017-02-21 ### Updated * Changed default away from human build
1 parent 87a7257 commit 52c002a

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

Documentation/ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented here.
44
This project adheres to [Semantic Versioning](http://semver.org/)
55

6+
## [5.0.1] - 2017-02-21
7+
### Updated
8+
* Changed default away from human build
9+
610
## [5.0.0] - 2017-02-21
711
### Added
812
* Expanded config file. You can now modifiy max number of steps, number of players each generation and number of best players taken each generation.

Project/doxygen/Doxyfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ PROJECT_NAME = "Experimental Platformer AI"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41+
PROJECT_NUMBER = v5.0.1
4142

4243
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4344
# for a project that appears at the top of each page and should give viewer a

Source/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/// @brief Holds all the main functions.
55
/// @author GamerMan7799
66
/// @author xPUREx
7-
/// @version 5.0.0-beta.1
7+
/// @version 5.0.1
88
/// @date 2017
99
/// @copyright Public Domain Unlicense.
1010
/////////////////////////////////////////////////

Source/main.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ namespace defined {
4545
}
4646
/** Setting this to 1 will switch the program from being AI based to being Human based.
4747
It is useful to debugging. */
48-
#define DEFINED_BUILD_HUMAN 1
48+
#define DEFINED_BUILD_HUMAN 0
4949
/// @}
5050
/*****************************************************************************/
5151
typedef std::vector<char> VectorSteps;

Source/version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@
3333
#define DEFINED_VER_MINOR 0
3434

3535
/** The Patch number of the version number */
36-
#define DEFINED_VER_PATCH 0
36+
#define DEFINED_VER_PATCH 1
3737
/*****************************************************************************/
3838
/** The version number in a format used by Boilerplate.rc, It is in the following format
3939
[MAJOR].[MINOR].[PATCH].[BUILDNUMBER] */
40-
#define DEFINED_VER_RC_FILEVERSION 5,0,0,10
40+
#define DEFINED_VER_RC_FILEVERSION 5,0,1,0
4141

4242
/** Is the same as DEFINED_VER_RC_FILEVERSION but is a null terminated string */
43-
#define DEFINED_VER_RC_FILEVERSION_STRING "5, 0, 0, 10\0"
43+
#define DEFINED_VER_RC_FILEVERSION_STRING "5, 0, 0, 0\0"
4444

4545
/** A more specific string of the file version */
4646
#define DEFINED_VER_FULLVERSION_STRING "5.0.0-r\0"

0 commit comments

Comments
 (0)